Skip to content

grafana/sentry-datasource

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

349 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Sentry data source plugin for Grafana

The Sentry data source plugin lets you query and visualize Sentry data within Grafana.

For user-facing documentation on configuration, query types, template variables, and troubleshooting, refer to the Sentry data source documentation.

Requirements

  • Grafana 10.4.0 or later
  • An active Sentry account

Install the plugin

To install the Sentry data source plugin in your Grafana instance, refer to Installation.

Development

Frontend

  1. Install dependencies:

    npm install
  2. Build the plugin in development mode:

    npm run dev
  3. Build the plugin in production mode:

    npm run build

Backend

  1. Build the backend plugin binaries:

    mage -v build:linux
  2. List all available Mage targets:

    mage -l

Run Grafana with the plugin

Use Docker Compose to start a Grafana instance with the plugin installed:

docker compose up

Run tests

npm run test

Learn more