All Projects → Jonnymcc → grafana-simplejson-datasource-example

Jonnymcc / grafana-simplejson-datasource-example

Licence: other
A simple Flask server demonstrating the basics of the Grafana simplejson datasource.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to grafana-simplejson-datasource-example

docker-clickhouse-grafana
Baseline Compose for Clickhouse + Grafana
Stars: ✭ 24 (+14.29%)
Mutual labels:  grafana, datasource
Grafanajsondatasource
Grafana datasource to load JSON data over your arbitrary HTTP backend
Stars: ✭ 146 (+595.24%)
Mutual labels:  grafana, datasource
chartjs-plugin-datasource-prometheus
Chart.js plugin for Prometheus data loading
Stars: ✭ 77 (+266.67%)
Mutual labels:  grafana, datasource
Grafana Prometheus Alertmanager Datasource
Stars: ✭ 163 (+676.19%)
Mutual labels:  grafana, datasource
grafana-pnp-datasource
PNP4Nagios/RRD Datasource for Grafana
Stars: ✭ 27 (+28.57%)
Mutual labels:  grafana, datasource
grafana-pandas-datasource
Grafana Pandas Datasource - using Python for generating timeseries-, table-data and annotations
Stars: ✭ 38 (+80.95%)
Mutual labels:  grafana, datasource
grafana-csv-plugin
CSV datasource for Grafana 6.x.x / 7.x.x
Stars: ✭ 33 (+57.14%)
Mutual labels:  grafana, datasource
nfCollector
Collects Netflow version 1, 5, 6, 7, 9 & IPFIX & stores them on InfluxData time-series DB (InfluxDB)
Stars: ✭ 30 (+42.86%)
Mutual labels:  grafana
Kong-API-Manager
Kong API Manager with Prometheus And Graylog
Stars: ✭ 78 (+271.43%)
Mutual labels:  grafana
skalogs-bundle
Open Source data and event driven real time Monitoring and Analytics Platform
Stars: ✭ 16 (-23.81%)
Mutual labels:  grafana
workshop-prometheus
Workshop Prometheus ♥️ Grafana
Stars: ✭ 13 (-38.1%)
Mutual labels:  grafana
grafana on dokku
Dockerfile to run Grafana (monitoring) on Dokku (mini-Heroku)
Stars: ✭ 12 (-42.86%)
Mutual labels:  grafana
tilt-pitch
Simple replacement for the Tilt Hydrometer mobile apps and TiltPi with lots of features
Stars: ✭ 32 (+52.38%)
Mutual labels:  grafana
grafana-git-sync
A docker image that syncs grafana dashboards, datasources and organizations to a git repository
Stars: ✭ 17 (-19.05%)
Mutual labels:  grafana
grafana-redis-app
Redis Application for @grafana provides Application pages and custom panels for Redis Data Source.
Stars: ✭ 23 (+9.52%)
Mutual labels:  grafana
telegraf-influxdb-grafana
TIG Stack
Stars: ✭ 30 (+42.86%)
Mutual labels:  grafana
grafana-redis-datasource
Redis Data Source for @grafana allows connecting to any @redis database On-Premises and in the Cloud.
Stars: ✭ 107 (+409.52%)
Mutual labels:  grafana
grafana-operator
Grafana Operator creates and manages Grafana deployments on Kubernetes.
Stars: ✭ 18 (-14.29%)
Mutual labels:  grafana
docker-graphite
Run Graphite with Docker
Stars: ✭ 15 (-28.57%)
Mutual labels:  grafana
ha-config-ataraxis
My Home Assistant Configs. If you like what you see, please ⭐️my repo. It would encourage me a lot 🤘
Stars: ✭ 146 (+595.24%)
Mutual labels:  grafana

Up and running in a few minutes

You have Docker installed already, right? Good.

docker run -d -p 3000:3000 \
  --name=grafana \
  -e 'GF_INSTALL_PLUGINS=grafana-simple-json-datasource' \
  grafana/grafana
pip install flask
python index.py

Now go to http://localhost:3000 and log into Grafana with admin:admin.

Next create a datasource in Grafana with type="SimpleJson" and URL="http://docker.for.mac.localhost:5000".

The above works with Docker for Mac, if you are using another OS then the hostname will need to be different in order to access the locally running Flask server.

Now you can create a dashboard with a graph panel, use the simplejson datasource you created, and interact with the Flask server you started.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].