diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 1cc8279..7ada5a2 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -24,7 +24,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn cache
- uses: actions/cache@v2
+ uses: actions/cache@v3
id: cache-yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -33,8 +33,8 @@ jobs:
${{ runner.os }}-yarn-
- name: Cache node_modules
+ uses: actions/cache@v3
id: cache-node-modules
- uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}
@@ -73,4 +73,4 @@ jobs:
uses: magefile/mage-action@v1
with:
version: latest
- args: buildAll
+ args: buildAll
\ No newline at end of file
diff --git a/src/README.md b/src/README.md
index 901e112..af86201 100644
--- a/src/README.md
+++ b/src/README.md
@@ -1,10 +1,10 @@
# Parseable Datasource for Grafana
-This data source plugin allows you to query and visualize log data stored in Parseable server.
+This data source plugin allows you to query, search and visualize telemetry data stored in Parseable server.
## Pre-requisites
-[Parseable server](https://github.com/parseablehq/parseable) setup and receiving logs from your application. Read more on [Parseable documentation](https://www.parseable.io/docs/quick-start).
+[Parseable server](https://github.com/parseablehq/parseable) setup and receiving telemetry data from your application. Read more on [Parseable documentation](https://www.parseable.io/docs/quick-start).
## Installation
@@ -20,13 +20,13 @@ This data source plugin allows you to query and visualize log data stored in Par
## Usage
-Once the plugin is configured with correct Parseable server instance. You can start using it to query logs and visualize them. You can use the query editor to write your own queries.
+Once the plugin is configured with correct Parseable server instance. You can start using it to query, search and visualize telemetry data stored in Parseable server. You can use the query editor to write your own queries.
### Importing Dashboards
This plugin has a a pre-made dashboard called "Parseable Demo Data". You can find it by navigating to the data sources configuration page, selecting the Parseable data source and clicking on the Dashboards tab.
-This dashboard is aimed at visualizing the logs stored in the Parseable demo server. You can use it as a starting point for your own dashboards. To use this dashboard, you will need to configure the data source with the Parseable demo server URL [https://demo.parseable.com](https://demo.parseable.com:443) and credentials `parseable`, `parseable`.
+This dashboard is aimed at visualizing the telemetry data stored in the Parseable demo server. You can use it as a starting point for your own dashboards. To use this dashboard, you will need to configure the data source with the Parseable demo server URL [https://demo.parseable.com](https://demo.parseable.com:443) and credentials `admin`, `admin`.
## Screenshots
diff --git a/src/img/logo.svg b/src/img/logo.svg
index 3629770..65eb52d 100644
--- a/src/img/logo.svg
+++ b/src/img/logo.svg
@@ -1 +1,7 @@
-
\ No newline at end of file
+
diff --git a/src/plugin.json b/src/plugin.json
index 5549eb6..6edee32 100644
--- a/src/plugin.json
+++ b/src/plugin.json
@@ -17,8 +17,8 @@
},
"keywords": ["datasource", "logging", "log observability", "log analytics", "parseable"],
"logos": {
- "small": "img/logo.svg",
- "large": "img/logo.svg"
+ "small": "https://github.com/parseablehq/.github/blob/main/images/logo.svg",
+ "large": "https://github.com/parseablehq/.github/blob/main/images/logo.svg"
},
"links": [
{"name": "GitHub", "url": "https://github.com/parseablehq/parseable-datasource"},