Skip to content

newrelic-experimental/nr1-viz-workload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SLI Workload vizualization

This vizualisation displays SLI data for the last X days for a given entity. (with multiple entities support)

Image

Configuration

The configuration options are:

  • NRQL query, please use the following query for SLI visualisation:
    FROM Metric
    SELECT
      (sum(newrelic.sli.valid) - sum(newrelic.sli.bad)) / sum(newrelic.sli.valid) * 100
    FACET dateOf(timestamp) SINCE 30 DAYS AGO LIMIT MAX
    • you can change the since clause to any time range you want to visualise SLI data for
    • for example for the last week you can use SINCE 7 DAYS AGO.
  • Entity GUID, please use the entity GUID of the entity you want to visualise SLI data for.
  • Entity Name - (optional) name for the column header you want to assign to the entity with a given GUID.

Thresholds:

  • Warning threshold - the value at which the SLI is considered to be in a warning state.
  • Critical threshold - the value at which the SLI is considered to be in a critical state.

You can use decimal values for the thresholds, for example, 99.95 for 99.95% uptime.

Thresholds highlight the SLI values when they are below the warning threshold or critical threshold.

Development

Running the nerdlet locally

Run the following scripts:

npm install
npm start

Visit https://one.newrelic.com/?nerdpacks=local and ✨

Building and publishing the visualisation

Visit: Publish your Nerdpack

About

No description, website, or topics provided.

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published