Questions tagged [apache-superset]

Superset is an open source business intelligence web application that allows data exploration

Superset is an open-source business intelligence web application that allows data exploration, as well as the creation and sharing of data visualizations and dashboards.

For non-code questions, ask on the Apache Superset Slack community. The link changes often due to Slack's usage limits so can't be included here but is updated on the main README page on Github.

Resources:

  1. Official site
  2. Github
1173 questions
3
votes
0 answers

Embedding Apache Superset react components in an angular 6 application

I'm trying to integrate Superset react components in my angular 6 application. I've seen examples of simple react components being integrated successfully but I wanted to know if it would work with more complex components or if such a thing is…
Erick Ye
  • 75
  • 1
  • 10
3
votes
1 answer

Personalization of superset mapbox tooltips

According to superset pull request it's possible to personalize the tooltip for geographic data using some JavaScript. I've tried many things to get my point data to the tooltip, yet none of them work. Where does Superset store the extra JS…
airliquide
  • 520
  • 7
  • 16
3
votes
1 answer

Superset display dynamic content from query (markdown)

I would like to display a chart in a dashboard displaying text. The text value is retrieved from a query. e.g. I have the following query: SELECT MAX(update_date) FROM my_data_tbl I would like to create a box (inside the dashboard) like this…
Matz MaT
  • 71
  • 1
  • 5
3
votes
1 answer

Unable to get Boxplot displayed in Apache Superset

I'm using Apache Superset0.35 for visualisation.While trying to implement boxplot chart,it displays only horizontal line instead of boxplot & all the values are same [Min,Max,Median..]. Is it necessary to have time-series column in the data file?
3
votes
2 answers

How can I modify the url of the Superset welcome page?

I would like to know how I can modify the URL to the welcome page. Currently it is /superset/welcome. It is run into superset/views/core.py in a @expose('/welcome'). I know I can modify the code inside this @expose, but I want to redirect to another…
Arthur Millet
  • 91
  • 2
  • 4
3
votes
2 answers

Apache Superset Connection to Mariadb via Spark

I would like to view data from Mariadb in Superset. I think getting the data from Mariadb --> Spark --> Superset might be the best solution because I will also use Spark with H2o Sparkling Water. 1. I have tried pip3 install mysqlclient but got this…
Code_Help
  • 303
  • 3
  • 13
3
votes
2 answers

How to write a valid custom SQL metric in Apache Superset? I need to write a metric like: SUM(col_name)/2700000.0 but I am getting error

I want to use custom sql metric in Apache Superset Big Number visualization type. I want to use metric like: SUM(col_name)/2700000.0, but it doesn't work. I tried SUM(col_name) and it works. I have tried also SUM(col_name)/COUNT(col_name) and this…
apabian
  • 56
  • 1
  • 5
3
votes
1 answer

Error while rendering react components in angular app

I am trying to render react components inside the angular 7 app. I am able to render simple react components but I am getting the below error (in browser console) when I try to render Superset react plugins inside the angular app.…
3
votes
0 answers

Connecting Superset to SQL Server using kerberos and sqlalchemy uri

How can I connect with SQL server using Kerberos with SQLAlchemy URI within Superset. I am not able to find how to create kerberoised SQLAlchemy URI, which I will feed to Superset to connect with SQL Server. No Luck so far. Anyone have any idea?
arjunagarwal
  • 361
  • 1
  • 4
  • 17
3
votes
1 answer

Configure Apache Webserver to run Apache Superset

By default apache superset uses internal webserver . Although the installation manual says we can configure apache or nginx , I could not figure out how to do so. Can somebody tell me how to configure apache webserver to run superset ?
sashank
  • 1,531
  • 2
  • 13
  • 26
3
votes
2 answers

Apache Superset [Errno 13] Permission denied: '/usr/local/lib/python3.5/site-packages/superset/app'

I use Apache Superset for data exploration. I followed the installation instructions and had no problems using the app. However, after I installed the community maintained docker image I tried to upload a CSV file for visualization and got the…
Sam
  • 11,799
  • 9
  • 49
  • 68
3
votes
1 answer

Decorator for SecurityManager in flask appbuilder for superest

I'm trying to add a custom user information retrieval from OAuth in superset, which is build on top of flask-appbuilder. Official doc provides following information: Decorate your method with the SecurityManager oauth_user_info_getter decorator.…
Sayat Satybald
  • 6,300
  • 5
  • 35
  • 52
3
votes
3 answers

How to edit a query in Apache Superset?

I'd like to change the query so that the metrics / labels are different. So instead of the chart saying "sum_sum_girls", it would say something like "Total Girls" instead. Current query is as follows: SELECT state AS state, SUM(sum_girls)…
David Shinabarger
  • 143
  • 1
  • 3
  • 12
3
votes
3 answers

Add a new map to Apache superset

I am trying to add a new country map to Apache Superset. I followed the instructions on "You need to add a new Country ?". However, step 7 is not working for me. Even if I add the country in the "select country" component, it still does not appear…
Jean Valet
  • 131
  • 1
  • 2
  • 7
3
votes
4 answers

How to MTD, YTD in Apache Superset?

I would like to create a dashboard with month to date (MTD) and year to date (YTD) charts. However, I do not want to update my date range each month. A fixed date range would do this. Choosing 1 months ago give the last 30days. Using last month…
Climbs_lika_Spyder
  • 6,004
  • 3
  • 39
  • 53