# opengauss-grafana-datasource **Repository Path**: tzthomas/opengauss-grafana-datasource ## Basic Information - **Project Name**: opengauss-grafana-datasource - **Description**: opengauss grafana datasource plugin - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-09-15 - **Last Updated**: 2023-09-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Grafana Data Source Plugin Template [![Build](https://github.com/grafana/grafana-starter-datasource/workflows/CI/badge.svg)](https://github.com/grafana/grafana-starter-datasource/actions?query=workflow%3A%22CI%22) This template is a starting point for building Grafana Data Source Plugins ## What is Grafana Data Source Plugin? Grafana supports a wide range of data sources, including Prometheus, MySQL, and even Datadog. There’s a good chance you can already visualize metrics from the systems you have set up. In some cases, though, you already have an in-house metrics solution that you’d like to add to your Grafana dashboards. Grafana Data Source Plugins enables integrating such solutions with Grafana. ## Getting started A data source backend plugin consists of both frontend and backend components. ### Frontend 1. Install dependencies ```bash yarn install ``` 2. Build plugin in development mode or run in watch mode ```bash yarn dev ``` or ```bash yarn watch ``` 3. Build plugin in production mode ```bash yarn build ``` ### Backend 1. Update [Grafana plugin SDK for Go](https://grafana.com/docs/grafana/latest/developers/plugins/backend/grafana-plugin-sdk-for-go/) dependency to the latest minor version: ```bash go get -u github.com/grafana/grafana-plugin-sdk-go go mod tidy ``` 2. Build backend plugin binaries for Linux, Windows and Darwin: ```bash mage -v ``` 3. List all available Mage targets for additional commands: ```bash mage -l ``` ## Learn more - [Build a data source plugin tutorial](https://grafana.com/tutorials/build-a-data-source-plugin) - [Grafana documentation](https://grafana.com/docs/) - [Grafana Tutorials](https://grafana.com/tutorials/) - Grafana Tutorials are step-by-step guides that help you make the most of Grafana - [Grafana UI Library](https://developers.grafana.com/ui) - UI components to help you build interfaces using Grafana Design System