Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/weaveworks/grafanalib
Python library for building Grafana dashboards
https://github.com/weaveworks/grafanalib
dashboards edsl grafana monitoring
Last synced: 2 days ago
JSON representation
Python library for building Grafana dashboards
- Host: GitHub
- URL: https://github.com/weaveworks/grafanalib
- Owner: weaveworks
- License: apache-2.0
- Created: 2016-12-02T14:11:13.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T12:10:57.000Z (about 1 month ago)
- Last Synced: 2024-10-29T14:51:50.366Z (about 1 month ago)
- Topics: dashboards, edsl, grafana, monitoring
- Language: Python
- Homepage:
- Size: 811 KB
- Stars: 1,878
- Watchers: 60
- Forks: 315
- Open Issues: 76
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: docs/CONTRIBUTING.rst
- License: LICENSE
- Code of conduct: docs/CODE_OF_CONDUCT.rst
Awesome Lists containing this project
- awesome-repositories - weaveworks/grafanalib - Python library for building Grafana dashboards (Python)
README
===============================
Getting Started with grafanalib
===============================.. image:: https://readthedocs.org/projects/grafanalib/badge/?version=main
:alt: Documentation Status
:scale: 100%
:target: https://grafanalib.readthedocs.io/en/mainDo you like `Grafana `_ but wish you could version your
dashboard configuration? Do you find yourself repeating common patterns? If
so, grafanalib is for you.grafanalib lets you generate Grafana dashboards from simple Python scripts.
How it works
============Take a look at `the examples directory
`_,
e.g. `this dashboard
`_
will configure a dashboard with a single row, with one QPS graph broken down
by status code and another latency graph showing median and 99th percentile
latency.In the code is a fair bit of repetition here, but once you figure out what
works for your needs, you can factor that out.
See `our Weave-specific customizations
`_
for inspiration.You can read the entire grafanlib documentation on `readthedocs.io
`_.Getting started
===============grafanalib is just a Python package, so:
.. code-block:: console
$ pip install grafanalib
Generate the JSON dashboard like so:
.. code-block:: console
$ curl -o example.dashboard.py https://raw.githubusercontent.com/weaveworks/grafanalib/main/grafanalib/tests/examples/example.dashboard.py
$ generate-dashboard -o frontend.json example.dashboard.pySupport
=======This library is in its very early stages. We'll probably make changes that
break backwards compatibility, although we'll try hard not to.grafanalib works with Python 3.6 through 3.11.
Developing
==========
If you're working on the project, and need to build from source, it's done as follows:.. code-block:: console
$ virtualenv .env
$ . ./.env/bin/activate
$ pip install -e .Configuring Grafana Datasources
===============================This repo used to contain a program ``gfdatasource`` for configuring
Grafana data sources, but it has been retired since Grafana now has a
built-in way to do it. See https://grafana.com/docs/administration/provisioning/#datasourcesCommunity
=========We currently don't follow a roadmap for ``grafanalib`` and both `maintainers
` have recently
become somewhat occupied otherwise.We'd like you to join the ``grafanalib`` community! If you would like to
help out maintaining ``grafanalib`` that would be great. It's a fairly laid-back
and straight-forward project. Please talk to us on Slack (see the links below).We follow the `CNCF Code of Conduct `_.
Getting Help
------------If you have any questions about, feedback for or problems with ``grafanalib``:
- Read the documentation at https://grafanalib.readthedocs.io
- Invite yourself to the `Weave Users Slack `_.
- Ask a question on the `#grafanalib `_ slack channel.
- `File an issue `_.Your feedback is always welcome!