Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fqqb committed Jan 12, 2025
1 parent 2429a17 commit 37b71d6
Show file tree
Hide file tree
Showing 6 changed files with 637 additions and 2,043 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x

- name: Install dependencies
run: yarn install
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 2.4.0

- Update to Grafana 11.x
- Handle variables

## 2.3.0

- Fix API issue

## 2.2.2

- Fix URL issue on parameter calls. #11
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ The following explains how to get a development setup running.

## Incremental Builds

yarn watch
yarn dev


## Runtime

Use the Docker Compose configuration to launch both Yamcs and Grafana:

docker-compose up
yarn server

Navigate to the Grafana UI at http://localhost:3000. Select `Configuration > Data Sources` from the sidebar.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ This Grafana plugin allows to use Yamcs as a datasource.
## Installation

```bash
grafana-cli --pluginUrl https://github.com/yamcs/grafana-yamcs/releases/download/v2.2.2/yamcs-yamcs-datasource-2.2.2.zip plugins install yamcs-yamcs-datasource
grafana-cli --pluginUrl https://github.com/yamcs/grafana-yamcs/releases/download/v2.4.0/yamcs-yamcs-datasource-2.4.0.zip plugins install yamcs-yamcs-datasource
systemctl restart grafana-server
```

**Note:**

* This plugin is not yet available from the central Grafana.com plugin directory, that is why for now the use of the `--pluginUrl` argument is required.
* This plugin is not available from the central Grafana.com plugin directory, that is why the use of the `--pluginUrl` argument is required.

* This plugin is unsigned for now. As of Grafana 8 you can only use unsigned plugins by adding the following to your `grafana.ini`:
* This plugin is unsigned. As of Grafana 8 you can only use unsigned plugins by adding the following to your `grafana.ini`:

allow_loading_unsigned_plugins = yamcs-yamcs-datasource

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yamcs/grafana-datasource",
"version": "2.3.0",
"version": "2.4.0",
"description": "Yamcs datasource for Grafana",
"private": true,
"scripts": {
Expand Down
Loading

0 comments on commit 37b71d6

Please sign in to comment.