Skip to content

Update branding: replace logo and update terminology from logs to telemetry data #49

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

Merged
merged 3 commits into from
Apr 18, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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') }}
Expand Down Expand Up @@ -73,4 +73,4 @@ jobs:
uses: magefile/mage-action@v1
with:
version: latest
args: buildAll
args: buildAll
8 changes: 4 additions & 4 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

Expand Down
8 changes: 7 additions & 1 deletion src/img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
Loading