Plugins 〉ACE.SVG


Developer
Andrew Rodgers


Sign up to receive occasional product news and updates:



Panel
community

ACE.SVG

  • Overview
  • Installation
  • Change log
  • Related content

ACE.SVG LOGO

React powered SVG Panel Plugin for Grafana

Latest version Downloads CI

Screenshot of plugin

This is an SVG panel plugin for Grafana 10.x+

Why yet another SVG panel plugin?

Yes, I definitely considered naming it YASPP... The existing SVG panel plugins all use the pre-7.0, angular panel API. I wanted to be able to use all of the features included in the new data API, as well as potential performance improvements from migrating to React. I have also taken a slightly different direction/philosophy from some of the other SVG plugins.

How does it work?

  • Users of this plugin are expected to have ready to animate SVG graphics created in an vector design package (See inkscape, Adobe Illustrator, or a web tool like draw.io).
  • Users upload their existing SVG layouts into the plugin, then enable the "Click to Map" functionality, allowing you to easily map arbitrary group, path or text span IDs to named tokens.
  • Users then perform additional setup tasks in an init function that gets called each time the SVG panel is loaded.
  • Finally, users can access the elements of the SVG using the named tokens from within the render function, called whenever the panel receieves new data.
  • User code in either the render or init functions have access to all of the mapped elements, the root SVG document, a ephemeral state store and the DataFrames for the panel.

What are the goals for this project?

  1. Be the most performant way to visualize arbitrary SVG graphics and animations within Grafana
  2. Stay out of the way - This plugin will focus on providing simple, obvious tools to reduce the friction of converting your static SVG graphics into data driven visualizations, without limiting your options.
  3. Stay focused - This plugin will not attempt to be an online graphics editor.

Getting started

  1. Create a new panel and select ACE.SVG as the visualization
  2. Paste your SVG source file into the SVG Document tab editor.
  3. Use the 'Click to Map' functionality in the SVG Mapping tab to map SVG Elements to variables.
  4. Write code that you want to run once on dashboard load in the User JS Init tab editor.
  5. Write code that you want to run on when data is received in the User JS Render tab editor.
  6. Make generous use of the browser JS console and console.log() to explore the features of the plugin and SVG.js

Execution Environment Interfaces

The plugin makes available several interfaces to the SVG document and Grafana in the execution context of the Init and Render functions. Below are details for each one, remember you can always use the browser JS console and console.log() for more detail.

  • svgmap svgmap is a JS object where each mapped SVG.js Element is available as a property. Example: If you have an svgid 'rect4524' and you've provided the mapped name bigSquare, you would access the SVG.js methods on that element under svgmap.bigSquare The svgmap is also included as options.svgMappings
  • data data is the raw object passed in to the panel for rendering by Grafana, it contains the DataFrames with all timeseries data selected by the active queries and time range. This interface is a bit complex and verbose, so we'll be adding helper methods to make common use cases simpler. Grafana DataFrame Docs
  • options options is the raw panel options object manaeged by the dashboard to store panel state. It includes the source code for the svg and functions as well as any mappings or other config data. While you can manually access everything about the panel with this interface, the most common use case is to add properties to it from the Init function for the render function to use later. For instance, if you have a common animation in a panel, you might create a function for setting it up in Init, and attach it to the options object as a property, so that you can use it in the Render function and keep the logic flow clear.
  • svgnode is a reference to the SVG.js object
  • context is an initially empty object passed into the init function. The init function may store any context or state that you to preserve between init and renderings. This is not required, but for some advanced use cases - for example, svg generators in the init function - being able to pass data from init to render (and between render invocations) can be useful.

The 'data' object contains both the query definition and the results of the query. In the case of the user initialization function there likely won't be any results (yet), but the query definition should be present. This may be useful for some initial rendering purposes, but caution is advised as the query may be updated (for example while the user is updating the query) so anything done here should likely be done in the update function as well.

Getting started (development)

  1. Install dependencies
npm i
  1. Build plugin in development mode or run in watch mode
npm run dev
  1. Build plugin in production mode
npm run build

Learn more

Installing ACE.SVG on Grafana Cloud:

For more information, visit the docs on plugin installation.

Change Log

All notable changes to this project will be documented in this file.

0.1.2

  • Fix the builtin example
  • Update dependency versions
  • Update commands in reamde from yarn to npm
  • Remove provisioning folder
  • Remove devDependency on emotion

0.1.1

  • Fix bad link in readme
  • Update dependency versions
  • Clean out some old config files

0.1.0

  • Update framework for Grafana v10 compatibility