Plugins 〉Mapgl
Mapgl
<!-- This README file is going to be the one displayed on the Grafana.com website for your plugin -->
Map.gl panel plugin
Geospatial map for large datasets using deck.gl
Map.gl panel plugin extends basemap config options of
Orchestra Cities Map
and Grafana Geomap
with different data layer rendering technology.
This plugin uses Deck.gl framework at its core and features:
- Optimized rendering of large datasets using WebGL
- Composite donut-chart cluster icons layer with fallback to icon layer
- Pop up for a specific point or cluster with customizable fields
- Colored thresholds for metrics with pop up labels
- Parent/child connections line layer with path to root on select
- Selectable properties for pop up
- Search for your points by customized fields
Required fields:
- Coordinates for points in any popular format
- Metric field if you wish to set color thresholds
Usage with PostGis
To use the plugin with PostGis, you need either to query longitude and latitude from a stored Point
, e.g.:
ST_X(ST_GeomFromEWKT(location_centroid)) AS \"longitude\"
ST_Y(ST_GeomFromEWKT(location_centroid)) AS \"latitude\"
Or query the GeoJSON shape, e.g.:
ST_AsGeoJSON(ST_GeomFromEWKT(location)) AS \"geojson\"
Usage with CrateDB
To use the plugin with CrateDB, you need either to query longitude and latitude from a stored Point
, e.g.:
longitude(location_centroid) AS \"longitude\"
latitude(location_centroid) AS \"latitude\"
Or query the GeoJSON field, e.g.:
location AS \"geojson\"
Grafana Cloud Pro
- $25 / user / month and includes a free trial for new users
- Available with a Grafana Cloud Pro plan
- Access to 1 Enterprise plugin
- Fully managed service (not available to self-manage)
Grafana Cloud Advanced / Grafana Enterprise
- Available with a Grafana Cloud Advanced plan or Grafana Enterprise license
- Access to all Enterprise plugins
- Run fully managed or self-manage on your own infrastructure
Installing Mapgl on Grafana Cloud:
Installing plugins on a Grafana Cloud instance is a one-click install; same with updates. Cool, right?
Note that it could take up to 1 minute to see the plugin show up in your Grafana.
Installing plugins on a Grafana Cloud instance is a one-click install; same with updates. Cool, right?
Note that it could take up to 1 minute to see the plugin show up in your Grafana.
Installing plugins on a Grafana Cloud instance is a one-click install; same with updates. Cool, right?
Note that it could take up to 1 minute to see the plugin show up in your Grafana.
Installing plugins on a Grafana Cloud instance is a one-click install; same with updates. Cool, right?
Note that it could take up to 1 minute to see the plugin show up in your Grafana.
Installing plugins on a Grafana Cloud instance is a one-click install; same with updates. Cool, right?
Note that it could take up to 1 minute to see the plugin show up in your Grafana.
For more information, visit the docs on plugin installation.
Installing on a local Grafana:
For local instances, plugins are installed and updated via a simple CLI command. Plugins are not updated automatically, however you will be notified when updates are available right within your Grafana.
1. Install the Panel
Use the grafana-cli tool to install Mapgl from the commandline:
grafana-cli plugins install
The plugin will be installed into your grafana plugins directory; the default is /var/lib/grafana/plugins. More information on the cli tool.
Alternatively, you can manually download the .zip file for your architecture below and unpack it into your grafana plugins directory.
Alternatively, you can manually download the .zip file and unpack it into your grafana plugins directory.
2. Add the Panel to a Dashboard
Installed panels are available immediately in the Dashboards section in your Grafana main menu, and can be added like any other core panel in Grafana.
To see a list of installed panels, click the Plugins item in the main menu. Both core panels and installed panels will appear.
Changelog
1.0.1
fix: rerender canvas on resize and on change options
1.0.0
Initial release. Repository has a demo provisioned dashboard with mock datasource