{"id":42359452,"url":"https://github.com/trydma/oracle-grafana","last_synced_at":"2026-01-27T17:05:14.970Z","repository":{"id":331011341,"uuid":"1121088550","full_name":"trydma/oracle-grafana","owner":"trydma","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-26T20:25:49.000Z","size":1038,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-27T07:41:18.923Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trydma.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-22T12:20:15.000Z","updated_at":"2025-12-26T06:07:24.000Z","dependencies_parsed_at":"2026-01-02T08:12:25.988Z","dependency_job_id":null,"html_url":"https://github.com/trydma/oracle-grafana","commit_stats":null,"previous_names":["trydma/oracle-grafana"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/trydma/oracle-grafana","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydma%2Foracle-grafana","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydma%2Foracle-grafana/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydma%2Foracle-grafana/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydma%2Foracle-grafana/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trydma","download_url":"https://codeload.github.com/trydma/oracle-grafana/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trydma%2Foracle-grafana/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28816576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-27T17:05:13.829Z","updated_at":"2026-01-27T17:05:14.957Z","avatar_url":"https://github.com/trydma.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Grafana data source plugin template\n\nThis template is a starting point for building a Data Source Plugin for Grafana.\n\n## What are Grafana data source plugins?\n\nGrafana 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.\n\n## Getting started\n\n### Backend\n\n1. Update [Grafana plugin SDK for Go](https://grafana.com/developers/plugin-tools/key-concepts/backend-plugins/grafana-plugin-sdk-for-go) dependency to the latest minor version:\n\n   ```bash\n   go get -u github.com/grafana/grafana-plugin-sdk-go\n   go mod tidy\n   ```\n\n2. Build plugin backend binaries for Linux, Windows and Darwin:\n\n   ```bash\n   mage -v\n   ```\n\n3. List all available Mage targets for additional commands:\n\n   ```bash\n   mage -l\n   ```\n\n### Frontend\n\n1. Install dependencies\n\n   ```bash\n   npm install\n   ```\n\n2. Build plugin in development mode and run in watch mode\n\n   ```bash\n   npm run dev\n   ```\n\n3. Build plugin in production mode\n\n   ```bash\n   npm run build\n   ```\n\n4. Run the tests (using Jest)\n\n   ```bash\n   # Runs the tests and watches for changes, requires git init first\n   npm run test\n\n   # Exits after running all the tests\n   npm run test:ci\n   ```\n\n5. Spin up a Grafana instance and run the plugin inside it (using Docker)\n\n   ```bash\n   npm run server\n   ```\n\n6. Run the E2E tests (using Playwright)\n\n   ```bash\n   # Spins up a Grafana instance first that we tests against\n   npm run server\n\n   # If you wish to start a certain Grafana version. If not specified will use latest by default\n   GRAFANA_VERSION=11.3.0 npm run server\n\n   # Starts the tests\n   npm run e2e\n   ```\n\n7. Run the linter\n\n   ```bash\n   npm run lint\n\n   # or\n\n   npm run lint:fix\n   ```\n\n# Distributing your plugin\n\nWhen distributing a Grafana plugin either within the community or privately the plugin must be signed so the Grafana application can verify its authenticity. This can be done with the `@grafana/sign-plugin` package.\n\n_Note: It's not necessary to sign a plugin during development. The docker development environment that is scaffolded with `@grafana/create-plugin` caters for running the plugin without a signature._\n\n## Initial steps\n\nBefore signing a plugin please read the Grafana [plugin publishing and signing criteria](https://grafana.com/legal/plugins/#plugin-publishing-and-signing-criteria) documentation carefully.\n\n`@grafana/create-plugin` has added the necessary commands and workflows to make signing and distributing a plugin via the grafana plugins catalog as straightforward as possible.\n\nBefore signing a plugin for the first time please consult the Grafana [plugin signature levels](https://grafana.com/legal/plugins/#what-are-the-different-classifications-of-plugins) documentation to understand the differences between the types of signature level.\n\n1. Create a [Grafana Cloud account](https://grafana.com/signup).\n2. Make sure that the first part of the plugin ID matches the slug of your Grafana Cloud account.\n   - _You can find the plugin ID in the `plugin.json` file inside your plugin directory. For example, if your account slug is `acmecorp`, you need to prefix the plugin ID with `acmecorp-`._\n3. Create a Grafana Cloud API key with the `PluginPublisher` role.\n4. Keep a record of this API key as it will be required for signing a plugin\n\n## Signing a plugin\n\n### Using Github actions release workflow\n\nIf the plugin is using the github actions supplied with `@grafana/create-plugin` signing a plugin is included out of the box. The [release workflow](./.github/workflows/release.yml) can prepare everything to make submitting your plugin to Grafana as easy as possible. Before being able to sign the plugin however a secret needs adding to the Github repository.\n\n1. Please navigate to \"settings \u003e secrets \u003e actions\" within your repo to create secrets.\n2. Click \"New repository secret\"\n3. Name the secret \"GRAFANA_API_KEY\"\n4. Paste your Grafana Cloud API key in the Secret field\n5. Click \"Add secret\"\n\n#### Push a version tag\n\nTo trigger the workflow we need to push a version tag to github. This can be achieved with the following steps:\n\n1. Run `npm version \u003cmajor|minor|patch\u003e`\n2. Run `git push origin main --follow-tags`\n\n## Learn more\n\nBelow you can find source code for existing app plugins and other related documentation.\n\n- [Basic data source plugin example](https://github.com/grafana/grafana-plugin-examples/tree/master/examples/datasource-basic#readme)\n- [`plugin.json` documentation](https://grafana.com/developers/plugin-tools/reference/plugin-json)\n- [How to sign a plugin?](https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrydma%2Foracle-grafana","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrydma%2Foracle-grafana","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrydma%2Foracle-grafana/lists"}