Skip to content
Open
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
118 changes: 59 additions & 59 deletions .source/index.ts

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions content/docs/features/alerts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,14 @@ After creating alerts, you can manage them from the Alerts page. Each alert has
- **Delete Alert**: Permanently remove an alert from the system

These management options give you full control over your alert lifecycle, allowing you to adapt to changing monitoring needs without recreating alerts from scratch.

## Investigation flows

When an alert is triggered, you may want to quickly understand the context and root cause. Our investigation flows make it easy to dive deeper directly from the alert. You can drill down into the underlying data from the Triggered Alert page.

From a triggered Alert:

- Select the "Investigate" option from the Triggered Alert page.
- You'll be redirected to the Explore Page of the dataset with the same filters and group by options as the chart along with the timeline of the alert.

![Investigate from Alert](./static/investigate-alert-page.png)
38 changes: 37 additions & 1 deletion content/docs/features/dashboards.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,19 @@ The configuration options vary based on your selected chart type:
**Quick Table View:**
Want to see raw data? Click the **Table** button in the top right corner to skip chart setup and view your query results in a tabular format.

## SQL Based Chart Builder

You can now build Dashboard charts using SQL queries. Follow the steps below to create a chart using SQL queries:

- Select the "Create with SQL" option under the "+Add Tile" button.
- Select the dataset.
- Write your SQL query to fetch the data.
- Select the chart type.
- Configure the chart options.
- Click on "Create" to create the chart.

![Dashboard SQL Chart Builder](./static/chart-builder-new.png)

## How it works

Dashboards in Parseable are a collection of tiles, each representing a visualization of a query result. You can create multiple tiles on a dashboard, each with its own query and chart type. Further, a tile's chart can be configured for different colors, units and formatting. Each tile can be based on a query targeting different dataset. The tiles can be resized, repositioned, and exported in various formats for easy sharing and collaboration.
Expand Down Expand Up @@ -142,4 +155,27 @@ Each visualization includes customizable styling options for colors, labels, and

## Time Range

Set a fixed time range for your dashboard to ensure all tiles load data consistently. You can save this time range with the dashboard, allowing for synchronized data views across all visualizations.
Set a fixed time range for your dashboard to ensure all tiles load data consistently. You can save this time range with the dashboard, allowing for synchronized data views across all visualizations.

## Proactive Dashboards

<iframe width="560" height="315" src="https://www.youtube.com/embed/Xmon42Ha3Bg?si=Raw2GJPU5a9i-Ig1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

### Create alerts from Dashboard

Visualization gives you a good idea of patterns forming, and many times you want to be alerted when these patterns cross a certain threshold. You can now create alerts directly from the dashboard.

Click on the "three dots" button in a dashboard tile and select "Create Alert" from the dropdown menu. You will be redirected to the Alert Builder page, where your current filters and group-by options are automatically applied. Once satisfied with the configuration, click "Create" to activate your alert.

![Create Alert from Dashboard](./static/create-alert-dashbaord.png)

### Investigation flows

As you analyze the data in your dashboard, you may identify specific trends or anomalies that require further exploration. Our new investigation flows make it easy to dive deeper into the data. You can now drill down into the data from the Dashboard.

In a dashboard tile:

- Select the "Investigate" option under the "three dots" button in chart.
- You'll be redirected to the Explore Page of the dataset with the same filters and group by options as the chart.

![Investigate from Dashboard](./static/investigate-from-dashboard.png)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions content/docs/key-concepts/query.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,43 @@ For example, for a query like `select count(*) as count from app1`, with the que
}
```

## SQL Editor

Prism UI in Parseable provides a feature to export query results and create charts from the query results and can be accessed from the SQL editor.
For ease of writing queries, the SQL editor provides the list of fields along with their datatypes for any selected dataset.

<iframe width="560" height="315" src="https://www.youtube.com/embed/VjwFONGGqaE?si=hMkSWfwGWmfb4HfY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

### 1. Exporting Query Results

You can export query results to a CSV/JSON file by clicking on the "Export" button in the SQL editor. The export feature is available in the Prism UI and can be accessed from the SQL editor.

![](./static/export-query-result.png)

### 2. Creating a Chart

You can create a chart under the "Chart View" tab in the SQL editor. Parseable provides a chart builder to help you create charts from the query results.

![](./static/chart-view.png)

### 3. Add Chart to Dashboard

After the query is run and results are available, you can now use the chart view customization options and add these charts to dashboards directly.

<iframe width="560" height="315" src="https://www.youtube.com/embed/O_lyg-0wBFY?si=FdfyUFnVs1zkHiql" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

How it works:

- Under the SQL editor, once the Query is executed, click on the "Add to Dashboard" button.
- Select the dashboard. You can only see the list of Dashboards that you have edit permissions.
- Select the chart type.
- Configure the chart options.
- Click on "Create" to create the chart.

![Dashboard SQL Editor](./static/sql-add-to-dashboard.png)

![Dashboard SQL Editor](./static/chart-builder-new.png)

## LLM Based Query Builder

<Callout type="info">
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/docs/key-concepts/static/chart-view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.