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

Release: 0.2.0 #8

Merged
merged 9 commits into from
Feb 4, 2024
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.2.0

Provided new `groupBy` functionality in `metric` query mode in order to perform data grouping for plain `metric` values as well as `rate` based functions.
Updated plugin documentation and screenshots.

## 0.1.2

Enabled Grafana policy token for signing the data source plugin in order to be published in the Grafana plugin catalog.
Expand Down
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ grafana.surrealdb is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the Apache License 2.0 for more details.

You should have received a copy of the Apache License 2.0 along with grafana.surrealdb. If not, see <https://www.apache.org/licenses/LICENSE-2.0>
You should have received a copy of the Apache License 2.0 along with grafana.surrealdb.
If not, see <https://www.apache.org/licenses/LICENSE-2.0>

---:Apache-2.0

Expand Down
19 changes: 15 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ check:
npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data,@grafana/ui,@grafana/runtime

clean:
rm -f ${ASSETS}
rm -rf ./dist

clean-all: clean
Expand All @@ -51,6 +52,8 @@ ASSETS += src/img/screenshot-config-editor.png
ASSETS += src/img/screenshot-query-editor-raw.png
ASSETS += src/img/screenshot-query-editor-log.png
ASSETS += src/img/screenshot-query-editor-metric.png
ASSETS += src/img/screenshot-query-editor-metric-rate.png
ASSETS += src/img/screenshot-query-editor-metric-group.png

assets: ${ASSETS}

Expand All @@ -64,16 +67,24 @@ src/img/logo-large.png:

src/img/screenshot-config-editor.png:
curl -s -J -L -o $@ \
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/01590b63-c23e-4915-b690-093fb796e8dd
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/8f4b0e53-e5b9-4abb-80a4-612c1291c3c5

src/img/screenshot-query-editor-raw.png:
curl -s -J -L -o $@ \
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/2ee98536-636a-4690-8856-65ea0d60b96c
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/23e374ed-f94e-413e-9d6b-5ff600fb11e3

src/img/screenshot-query-editor-log.png:
curl -s -J -L -o $@ \
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/e32f9ff9-bfac-4ae6-b037-fbf44c6ae9ec
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/d3f90a5a-b905-46f6-b52c-5ab1bdca360b

src/img/screenshot-query-editor-metric.png:
curl -s -J -L -o $@ \
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/4d12d31c-4033-4c6d-b6d1-0096a7cabc37
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/ff435b1f-4e58-43bb-acd2-b7bd9ea3a392

src/img/screenshot-query-editor-metric-rate.png:
curl -s -J -L -o $@ \
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/bbb8def8-be10-42c2-9779-9cd747ff5620

src/img/screenshot-query-editor-metric-group.png:
curl -s -J -L -o $@ \
https://github.com/fiskaly/grafana.surrealdb/assets/6830431/9e819cec-cd70-4530-b3ef-f7bca156c3c1
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
context: ./.config
args:
grafana_image: ${GRAFANA_IMAGE:-grafana-oss} # https://hub.docker.com/r/grafana/grafana-oss/tags
grafana_version: ${GRAFANA_VERSION:-10.2.0}
grafana_version: ${GRAFANA_VERSION:-10.0.3}
ports:
- 3000:3000/tcp
volumes:
Expand Down
Loading
Loading