Skip to content

Commit

Permalink
Rebuild using Grafana 8.4.3 and update README (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-vl authored Mar 6, 2022
1 parent d162e86 commit 454b388
Show file tree
Hide file tree
Showing 6 changed files with 334 additions and 272 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.2.0 (IN PROGRESS)

### Features / Enhancements

- Rebuild using Grafana 8.4.3 and update README

## 1.1.0 (2022-02-20)

### Features / Enhancements
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,20 @@

## Introduction

The Environment data source is a plugin for Grafana that returns environment variables to display on your dashboard.
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.

### Requirements

Grafana 8.0 is required.

## Getting Started

Environment data source can be installed from the Grafana Marketplace or use the `grafana-cli` tool to install from the command line:
Because of the security reasons Environment data source can not be included in the Grafana Marketplace and can be installed manually from our private repository or downloaded directly from the GitHub repository:

```bash
grafana-cli plugins install volkovlabs-env-datasource
grafana-cli --repo https://volkovlabs.io/plugins plugins install volkovlabs-env-datasource
```

![Grafana Marketplace](https://raw.githubusercontent.com/VolkovLabs/volkovlabs-env-datasource/main/src/img/grafana-marketplace.png)

## Features

- Returns Environment Variables.
Expand Down
16 changes: 15 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@ module github.com/grafana/grafana-starter-datasource-backend
go 1.16

require (
github.com/grafana/grafana-plugin-sdk-go v0.126.0
github.com/fatih/color v1.13.0 // indirect
github.com/google/flatbuffers v2.0.6+incompatible // indirect
github.com/grafana/grafana-plugin-sdk-go v0.127.0
github.com/hashicorp/go-hclog v1.1.0 // indirect
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
github.com/klauspost/compress v1.15.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/pierrec/lz4/v4 v4.1.14 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
Loading

0 comments on commit 454b388

Please sign in to comment.