From 8592ed409a248054ea337ad8a20b861d94c1209c Mon Sep 17 00:00:00 2001 From: Debabrata Date: Thu, 17 Apr 2025 16:18:32 +0530 Subject: [PATCH 1/3] Update branding: replace logo and update terminology from logs to telemetry data --- src/README.md | 8 ++++---- src/img/logo.svg | 8 +++++++- 2 files changed, 11 insertions(+), 5 deletions(-) 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 + + + + + + + From 78893c9ffdcc89b5219fde40b0867a222c64f011 Mon Sep 17 00:00:00 2001 From: Debabrata Date: Thu, 17 Apr 2025 16:21:38 +0530 Subject: [PATCH 2/3] Updated the ci yaml --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 From 90c795040ce16116dd7c5ff8b212836b4ef8d478 Mon Sep 17 00:00:00 2001 From: Debabrata Date: Thu, 17 Apr 2025 16:33:45 +0530 Subject: [PATCH 3/3] Update logo reference to use GitHub URL instead of local file --- src/plugin.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"},