Superset¶
Apache Superset is an easy-to-use data exploration and data visualization platform.
You can install it on your local and also you can use it as a service.
This doc demonstrates how you can use SuperSet to visualize the Mihari data.
World Map¶
SELECT artifacts.data, artifacts.data_type, geolocations.country_code, artifacts.created_at FROM artifacts
LEFT OUTER JOIN geolocations ON geolocations.artifact_id = artifacts.id
ORDER BY artifacts.created_at DESC
This query generates a result like the following:
You can visualize the data with the following configuration:
- Visualization type: World Map
- Country column:
country_code
- Metric:
count(data)