#plugin #grafana #back-end #sdk

grafana-plugin-sdk

SDK for building Grafana backend plugins

7 unstable releases

0.4.3 Jan 18, 2024
0.4.2 Sep 19, 2022
0.3.0 Apr 14, 2022
0.2.0 Mar 16, 2022
0.1.0 Dec 8, 2021

#198 in HTTP client

Download history 7/week @ 2024-01-12 2/week @ 2024-01-19 9/week @ 2024-02-02 8/week @ 2024-02-09 24/week @ 2024-02-23 89/week @ 2024-03-01 48/week @ 2024-03-08 6/week @ 2024-03-15 44/week @ 2024-03-29 198/week @ 2024-04-05

249 downloads per month

MIT/Apache

310KB
5.5K SLoC

The Grafana Plugin SDK for Rust.

This crate contains a Rust implementation of the Grafana plugin SDK. It is divided into three main modules:

  • backend contains the traits that must be implemented by backend plugins for various pieces of functionality, whether querying data, calling resources, or streaming data between Grafana and the plugin.
  • data contains the fundamental data structures used by backend plugins, such as Frames, Fields, and their associated metadata.
  • live contains functionality used by Grafana Live, the streaming messaging service available from Grafana 8.0.

The prelude contains some useful unambiguous traits which are helpful when creating some structures, particularly Frames and Fields.

Backend plugins communicate with Grafana via gRPC. The low-level protocols are exposed in the pluginv2 module as an escape hatch, if required. Please file an issue if this is needed and we will try to accommodate your needs in the next release of the high-level SDK.

See the docs on backend plugins on grafana.com for an introduction to backend Grafana plugins, or check out the crate examples or sample app repo to get started with writing a backend plugin in Rust.

Feature flags

The following feature flags enable additional functionality for this crate:

The low-level structs generated from protocol definitions.

Dependencies

~18–34MB
~509K SLoC