All Projects → yesoreyeram → yesoreyeram-boomsummary-panel

yesoreyeram / yesoreyeram-boomsummary-panel

Licence: other
Boom Summary Panel for Grafana

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to yesoreyeram-boomsummary-panel

yesoreyeram-boomtheme-panel
Grafana Panel for adding styles
Stars: ✭ 59 (+321.43%)
Mutual labels:  grafana, grafana-panel, grafana-plugin
grafana-infinity-panel
Grafana Infinity Panel plugin. Visualize data in infinite ways using data viz APIs such as Vega
Stars: ✭ 17 (+21.43%)
Mutual labels:  grafana, grafana-panel, grafana-panel-plugin
jira-grafana-json-datasource
Connect Grafana to Jira cloud to retrieve metrics on your Jira issues.
Stars: ✭ 68 (+385.71%)
Mutual labels:  grafana, grafana-panel
grafana-sqlite-datasource
Grafana Plugin to enable SQLite as a Datasource
Stars: ✭ 57 (+307.14%)
Mutual labels:  grafana, grafana-plugin
alexandra-trackmap-panel
Grafana map plugin to visualise coordinates as markers, hexbin, ant path, or heatmap.
Stars: ✭ 58 (+314.29%)
Mutual labels:  grafana, grafana-plugin
macropower-analytics-panel
It's like Google Analytics, but for Grafana dashboards!
Stars: ✭ 16 (+14.29%)
Mutual labels:  grafana, grafana-plugin
grafana-redis-app
Redis Application for @grafana provides Application pages and custom panels for Redis Data Source.
Stars: ✭ 23 (+64.29%)
Mutual labels:  grafana, grafana-plugin
grafana-redis-datasource
Redis Data Source for @grafana allows connecting to any @redis database On-Premises and in the Cloud.
Stars: ✭ 107 (+664.29%)
Mutual labels:  grafana, grafana-plugin
grafana-treemap-panel
A panel plugin for Grafana to visualize treemaps.
Stars: ✭ 18 (+28.57%)
Mutual labels:  grafana, grafana-plugin
grafana-plugin-sdk-go
A Go SDK for building backend plugins for Grafana
Stars: ✭ 151 (+978.57%)
Mutual labels:  grafana, grafana-plugin
grafana-chinamap-panel
China Map Panel Plugin for Grafana.
Stars: ✭ 18 (+28.57%)
Mutual labels:  grafana, grafana-panel-plugin
grafana-pandas-datasource
Grafana Pandas Datasource - using Python for generating timeseries-, table-data and annotations
Stars: ✭ 38 (+171.43%)
Mutual labels:  grafana, grafana-plugin
gapit-htmlgraphics-panel
Grafana panel for displaying metric sensitive HTML or SVG graphics.
Stars: ✭ 41 (+192.86%)
Mutual labels:  grafana, grafana-panel
greenplum exporter
Greenplum(v5,v6) exporter for Prometheus
Stars: ✭ 48 (+242.86%)
Mutual labels:  grafana
grafana-starter-datasource-backend
A starter for Grafana data source plugins with a backend
Stars: ✭ 38 (+171.43%)
Mutual labels:  grafana-plugin
stack
A set of components for makers to ship better products faster 🚀
Stars: ✭ 27 (+92.86%)
Mutual labels:  grafana
trovilo
trovilo collects and prepares files from Kubernetes ConfigMaps for Prometheus & friends
Stars: ✭ 16 (+14.29%)
Mutual labels:  grafana
grafana-monitoring-art
Grafana Monitoring Art datasource
Stars: ✭ 38 (+171.43%)
Mutual labels:  grafana
ruby-grafana-api
A simple Ruby wrapper for the Grafana HTTP API
Stars: ✭ 24 (+71.43%)
Mutual labels:  grafana
graphql-datasource
Grafana datasource plugin to query data from a GraphQL API
Stars: ✭ 55 (+292.86%)
Mutual labels:  grafana

Boom Summary Panel for Grafana

Boom Summary Panel for Grafana. Transform table data into summary.

Screenshots

Output

image

How to

Step 1 : Click "add summary group" button

image

Step 2 : Choose metric / stat

image

Step 3 (Optional): Choose Template format

image

Step 4 (Optional): Apply filter to the data

image

Step 5 (Optional): Apply conditional formats

image

Step 6 (Optional): Add more stats within the same data / same summary group

image

Step 7 (Optional): Add more stats with differnt data set / new summary groups using "Add Summary Group" button

image

Templates

You can use templates with the type of plain text, HTML, HTML with styles tags. Following templates are available

Template Type Detail
Auto Template Automatically generates title and value from stats
Jumbo Stat Title and Value of the first stat in bigger size
Jumbo stat w/o title Value of the first stat in bigger size
Value only Value of the first stat in regular size
Custom template Define your own template

Tokens in templates

You can use tokens to represent computed data, dynamic icons, images etc.

Token value
#{title} Title of the first stat
#{default} Value of the first stat with units and decimals
#{statType,fieldName} Stat of the given field with units. StatType can be sum,min,max,mean,count,uniquecount,random. Example : #{count,VM_Name} will represent count of values for the column VM_Name. Units/decimals will be available only if the stat is defined.
#{statType,fieldName,raw} Same as above but without unit. This can be useful when constructing URLs, Dynamic Icons, Images
#{statType,fieldName,title} Title of the given stat if defined

Filters

Optionally table rows can be filtered using the Filters option. If more than one filter specified, rows will be considered only if all the conditions satisified.

Example:

image

Above settings give count of machines whose powerstat is not "VM Running"

Conditional Formats

Optionally you can format the output using multiple conditions.

image

Above settings shows two different thresholds set. If none of the condition match, default settings (bgcolor, textcolor) will be applied.

Text compare operators

  • equals
  • notequals
  • contains
  • notcontains
  • startswith
  • endswith
  • in

Numeric compare operators

  • ==
  • !=
  • <
  • <=
  • >
  • >=
  • insiderange
  • outsiderange

Display Options

You can set the default Background color, text color, select template, set width of the template etc with these options.

image

Repeater / Group By column

If you need the summary panel to repeat for multiple values, you can use this option to repeat panel. With this approach, you don't need multiple queries. With a single query, you can group rows by specific column. More details available here.

image

image

Custom Stylesheet

TBDimage

Font Awesome Icons

Output templates can have font awesome icons. Refer here

Samples : #{fa-arrow-up} , #{fa-arrow-down,red}, #{fa-circle,yellow,3,plus,2} , #{fa-circle,yellow,${uniquecount_raw},multiply,1.5}, #{fa-circle,yellow,${uniquecount_raw},min,${sum_raw}}

Usage info : #{fa-circle,yellow,5,multiply,1.25} will repeat yellow circle icon 6 times i.e., ( Math.round(5*1.25) )

TOKEN 0 : Icon Name Refer Font Awesome official page

TOKEN 1 : Color of the icon

TOKEN 2 : Repeat count

TOKEN 3 : Repeat count operator. Needs token 2 and 4. Valid operators are plus, minus, multiply, divideby, min, max and mean

TOKEN 4 : Repat count value 2.

Note:

  • Font awesome token needs to surrounded by whitespace.
  • IMPORTANT : Use raw values when repeating icons using calculations.
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].