Ruby Grafana Reporter

Reporting Service for Grafana

Table of Contents

About the project

Grafana is a great tool for monitoring and visualizing data from different sources. Anyway the free version is lacking a professional reporting functionality. And this is, where the ruby grafana reporter steps in.

The key functionality of the reporter is to capture data and images from grafana dashboards and to use it in your custom templates to finally create reports in PDF (default), HTML, or any other format.

By default (an extended version of) Asciidoctor is enabled as template language.

Features

Supported datasources

Functionalities are provided as shown here:

Database | Image rendering | Raw queries | Composed queries ————————- | :————-: | :———–: | :————: all SQL based datasources | supported | supported | supported Graphite | supported | supported | supported InfluxDB | supported | supported | not (yet) supported Prometheus | supported | supported | n/a in grafana other datasources | supported | not supported | not supported

The characteristics of a raw query are, that the query is either specified manually in the panel specification or in the calling template.

Composed queries are all kinds of query, where the grafana UI feature (aka visual editor mode) for query specifications are used. In this case grafana is translating the UI query specification to a raw query, which then in fact is sent to the database.

Quick Start

Setup

You don't have a grafana setup runnning already? No worries, just configure https://play.grafana.org in the configuration wizard and see the magic happen!

If your grafana setup requires a login, you'll have to setup an api key for the reporter. Please follow the steps described here first.

Windows:

Raspberry Pi:

Ruby environment:

Docker environment (advanced users):

cd /documents
ruby bin/ruby-grafana-reporter
asciidoctor:
  image: asciidoctor/docker-asciidoctor
  container_name: asciidoctor
  hostname: asciidoctor
  volumes:
    - /<<path-to-single-rb-file-folder>>:/documents
  command:
    sh /documents/startup.sh
  restart: unless-stopped

Grafana integration

For using the reporter directly from grafana, you need to simply add a link to your grafana dashboard:

Now go back to your dashboard and click the newly generated Demo Report link on it. Now the renderer should start it's task and show you the expected results.

Please note, that the reporter won't automatically refresh your screen to update the progress. Simply hit F5 to refresh your browser. After the report has been successfully built, it will show the PDF after the next refresh automatically.

You want to select a template in grafana, which shall then be rendered? Piece of cake: Just add a dashboard variable to your grafana dashboard named template and let the user select or enter a template name. To make use of it, you should change the link of the Demo Report link to http://<<your-server-url>>:<<your-webservice-port>>/render?. On hitting the new link in the dashboard, grafana will add the selected template as a variable and forward it to the reporter.

Advanced information

Webservice

Running the reporter as a webservice provides the following URLs

/overview - for all running or retained renderings
/render - for rendering a template, 'var-template' is the only mandatory GET parameter, all parameters will be passed to the report templates as attributes
/view_report - for viewing the status or receving the result of a specific rendering, is automatically called after a successfull /render call
/cancel_report - for cancelling the rendering of a specific report, normally not called manually, but on user interaction in the /view_report or /overview URL

The main endpoint to call for report generation is configured in the previous chapter Grafana integration.

However, if you would like to see, currently running report generations and previously generated reports, you may want to call the endpoint /overview.

Using ERB templates

By default the configuration wizard will setup the reporter with the asciidoctor template language enabled. For several reasons, you may want to take advantage of the ruby included ERB template language.

Anyway you should consider, that ERB templates can include harmful code. So make sure, that you will only use ERB templates in a safe environment.

To enable the ERB template language, you need to modify your configuration file in the section grafana-reporter:

grafana-reporter: report-class: GrafanaReporter::ERB::Report

Restart the grafana reporter instance, if running as webservice. That's all.

In ERB templates, you have access to the variables report, which is a reference to the currently executed ERB Report object and attributes, which contains a hash of variables, which have been handed over to the report generations, e.g. from a webservice call.

To test the configuration, you may want to run the configuration wizard again, which will create an ERB template for you.

Using webhooks

Webhooks provide an easy way to get automatically informed about the progress of a report. The nice thing is, that this is completely independent from running the reporter as webservice, i.e. these callbacks are also called if you run the reporter standalone.

To use webhooks, you have to specify, in which progress states of a report you are interested. Therefore you have to configure it in the grafana-reporter section of your configuration file, e.g.

grafana-reporter: callbacks: all: - http://<<your_callback_url>>

Remember to restart the reporter, if it is running as a webservice.

After having done so, your callback url will be called for each event with a JSON body including all necessary information of the report. For details see callback.

Developing your own plugin

The reporter is designed to allow easy integration of your own plugins, without having to modify the reporter base source on github (or anywhere else). This section shows how to implement and load a custom datasource.

Implementing a custom datasource is needed, if you use a custom datasource grafana plugin, which is not yet supported by the reporter. In that case you can build your own custom datasource for the reporter and load it on demand with a command line parameter, without having to build your own fork of this project.

This documentation will provide a simple, but mocked implementation of an imagined grafana datasource.

First of all, let's create a new text file, e.g. my_datasource.rb with the following content:

““ class MyDatasource < ::Grafana::AbstractDatasource def self.handles?(model) tmp = new(model) tmp.type == 'my_datasource' end

def request(query_description) # see rubydoc.info/gems/ruby-grafana-reporter/Grafana/AbstractDatasource#request-instance_method # for detailed information of given parameters and expected return format

# TODO: call your datasource, e.g. via REST call
# TODO: return the value in the needed format

end

def raw_query_from_panel_model(panel_query_target) # TODO: extract or build the query from the given grafana panel query target hash end

def default_variable_format # TODO, specify the default variable format # see rubydoc.info/gems/ruby-grafana-reporter/Grafana/Variable#value_formatted-instance_method # for detailed information. end end ““

The only thing left to do now, is to make this datasource known to the reporter. This can be done with the -r command line flag, e.g.

ruby-grafana-reporter -r my_datasource.rb

The reporter implemented some magic, to automatically register datasource implementations on load, if they inherit from ::Grafana::AbstractDatasource. This means, that you don't have to do anything else here.

Now the reporter knows about your datasource implementation and will use it, if you request information from a panel, which is linked to the type my_datasource as specified in the handles? method above. If any errors occur during execution, the reporter will catch them and show them in the error log.

Registering a custom ruby file is independent from running the reporter as a webservice or as a standalone executable. In any case the reporter will apply the file.

Technically, loading your own plugin will call require for your ruby file, after all reporter files have been loaded and before the execution of the webservice or a rendering process starts.

Roadmap

This is just a collection of things, I am heading for in future, without a schedule.

Contributing

If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome.

Licensing

The code in this project is licensed under MIT license.

Acknowledgements

Inspired by Izak Marai’s grafana reporter

Donations

If you like this project and you would like to support my work, feel free to donate. :)