If you want to change each column by hands, follow this,
In your Slices,
1. select slice
2. click editing data resource button
3. click List Metrics
4. change Verbose name
Else if you want to change all column name, use sqlite,
superset uses sqlite to save their meta information and that file is located in ~/.superset/superset.db
open this file using sqlite GUI tool, and use replace function. replcae(field, 'origin', 'replacement')
example) update sql_metrics set verbose_name = replace(verbose_name, 'sum__', '') where table_id = 4
'서버 교양' 카테고리의 다른 글
filebeat -> logstash -> elasticsearch(AWS), filebeat timeout connection error (0) | 2017.12.19 |
---|---|
Creating python superset daemon using systemctl in centos (0) | 2017.11.06 |
How to make game server log system (0) | 2017.11.03 |
Mysql visualization tool(그래프 툴) Super set! (0) | 2017.11.03 |
filebeat traceabck multiline config (0) | 2017.10.16 |