Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Grafana 9.1.4 #10

Merged
merged 3 commits into from
Sep 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.2.0 (IN PROGRESS)

### Features / Enhancements

- Update to Grafana 9.1.4 (#10)

## 2.1.0 (2022-08-15)

### Features / Enhancements
Expand Down
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

![Dashboard](https://raw.githubusercontent.com/VolkovLabs/volkovlabs-env-datasource/main/src/img/dashboard.png)

[![Grafana 9](https://img.shields.io/badge/Grafana-9.0.7-orange)](https://www.grafana.com)
[![Grafana 9](https://img.shields.io/badge/Grafana-9.1.4-orange)](https://www.grafana.com)
![CI](https://github.com/volkovlabs/volkovlabs-env-datasource/workflows/CI/badge.svg)
[![codecov](https://codecov.io/gh/VolkovLabs/volkovlabs-env-datasource/branch/main/graph/badge.svg?token=2W9VR0PG5N)](https://codecov.io/gh/VolkovLabs/volkovlabs-env-datasource)
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/VolkovLabs/volkovlabs-env-datasource.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/VolkovLabs/volkovlabs-env-datasource/context:javascript)

## Introduction

The Environment data source is a plugin for Grafana that returns environment variables to display on your dashboard or use as Variables to retrieve data.
The Environment Data Source is a plugin for Grafana that returns environment variables to display on your dashboard or use as Variables to retrieve data.

[![Environment Data Source for Grafana By Volkov Labs | Displaying Environment Variables](https://raw.githubusercontent.com/volkovlabs/volkovlabs-env-datasource/main/img/video.png)](https://youtu.be/GPzsciOxKdk)

Expand All @@ -20,7 +20,7 @@ The Environment data source is a plugin for Grafana that returns environment var

## Getting Started

Because of the security reasons Environment data source can not be included in the Grafana Marketplace. It can be installed manually from our Private Repository or downloaded directly from the GitHub:
Environment Data Source is not included in the Grafana Marketplace. It can be installed manually from our Private Repository or downloaded directly from the GitHub:

```bash
grafana-cli --repo https://volkovlabs.io/plugins plugins install volkovlabs-env-datasource
Expand All @@ -39,7 +39,7 @@ Grafana supports managing data sources by adding one or more YAML config files i

Example of provisioning the Environment Data Source with a filter `GF_` to return only Grafana related variables.

```
```yaml
datasources:
- name: Environment
type: volkovlabs-env-datasource
Expand All @@ -59,12 +59,6 @@ We love to hear from users, developers, and the whole community interested in th
- Ask a question, request a new feature, and file a bug with [GitHub issues](https://github.com/volkovlabs/volkovlabs-env-datasource/issues/new/choose).
- Star the repository to show your support.

## Contributing

- Fork the repository.
- Find an issue to work on and submit a pull request.
- Could not find an issue? Look for documentation, bugs, typos, and missing features.

## License

- Apache License Version 2.0, see [LICENSE](https://github.com/volkovlabs/volkovlabs-env-datasource/blob/main/LICENSE).
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"author": "Volkov Labs",
"description": "Data Source to return environment variables for Grafana",
"devDependencies": {
"@grafana/data": "9.0.7",
"@grafana/runtime": "9.0.7",
"@grafana/toolkit": "9.0.7",
"@grafana/ui": "9.0.7",
"@grafana/data": "9.1.4",
"@grafana/runtime": "9.1.4",
"@grafana/toolkit": "9.1.4",
"@grafana/ui": "9.1.4",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"enzyme": "^3.11.0",
Expand All @@ -29,5 +29,5 @@
"upgrade": "yarn upgrade --latest",
"watch": "grafana-toolkit plugin:dev --watch"
},
"version": "2.1.0"
"version": "2.2.0"
}
13 changes: 6 additions & 7 deletions provisioning/dashboards/panels.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"editable": true,
"fiscalYearStartMonth": 0,
"graphTooltip": 0,
"iteration": 1655482705159,
"links": [],
"liveNow": false,
"panels": [
Expand Down Expand Up @@ -70,7 +69,7 @@
},
"textMode": "auto"
},
"pluginVersion": "9.0.0",
"pluginVersion": "9.1.1",
"title": "Edition",
"transformations": [
{
Expand Down Expand Up @@ -136,7 +135,7 @@
},
"textMode": "value"
},
"pluginVersion": "9.0.0",
"pluginVersion": "9.1.1",
"title": "Version",
"transformations": [
{
Expand Down Expand Up @@ -213,21 +212,21 @@
}
]
},
"pluginVersion": "9.0.0",
"pluginVersion": "9.1.1",
"title": "Environment Variables",
"type": "table"
}
],
"schemaVersion": 36,
"schemaVersion": 37,
"style": "dark",
"tags": [],
"templating": {
"list": [
{
"current": {
"selected": false,
"text": "9.0.0",
"value": "9.0.0"
"text": "9.1.1",
"value": "9.1.1"
},
"datasource": {
"type": "volkovlabs-env-datasource",
Expand Down
Loading