Skip to content
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
4 changes: 4 additions & 0 deletions docs/enterprise_edition/insights/.pages
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
title: Query insights
nav:
- index.md
- ...
4 changes: 2 additions & 2 deletions docs/enterprise_edition/insights/active_queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ icon: material/play-circle

# Active queries

PgDog Enterprise provides a real-time view into queries currently executing on its PostgreSQL connections. This is accessible in two places:
PgDog provides a real-time view into queries currently executing on its PostgreSQL connections. This is accessible in two places:

1. [`SHOW ACTIVE_QUERIES`](#admin-database) admin command
2. [Activity](#web-ui) view in the dashboard
Expand Down Expand Up @@ -54,6 +54,6 @@ If you're running multiple instances of PgDog, active queries from all instances

### Parameters

If your application is using prepared statements (or just placeholders in queries), the parameters for these queries are not shown and will not be sent to the control plane.
If your application is using prepared statements (or just placeholders in queries), the parameters for these queries are not shown and will not be sent to the control plane.

If your application is using simple statements (parameters in query text), PgDog will normalize the queries, removing values and replacing them with parameter symbols (e.g., `$1`). This is to make sure no sensitive data leaves the database network.
2 changes: 1 addition & 1 deletion docs/enterprise_edition/insights/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ icon: material/alert-circle

# Errors

PgDog Enterprise tracks query errors returned by PostgreSQL, providing a real-time view into recently encountered issues like syntax errors, missing columns, or lock timeouts.
PgDog tracks query errors returned by PostgreSQL, providing a real-time view into recently encountered issues like syntax errors, missing columns, or lock timeouts.

## Admin database

Expand Down
4 changes: 2 additions & 2 deletions docs/enterprise_edition/insights/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ icon: material/lightbulb-on

# Query insights

PgDog Enterprise provides visibility into all queries that it serves, which allows it to analyze and report how those queries perform, in real-time.
PgDog provides visibility into all queries that it serves, which allows it to analyze and report how those queries perform, in real-time.

## Telemetry

PgDog Enterprise collects the following telemetry:
PgDog collects and displays the following telemetry:

| Telemetry | Frequency | Description |
|-|-|-|
Expand Down
2 changes: 1 addition & 1 deletion docs/enterprise_edition/insights/statistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ icon: material/chart-bar

# Query statistics

PgDog Enterprise collects detailed per-query statistics, similar to PostgreSQL's `pg_stat_statements`, with extra information useful for debugging application performance.
PgDog collects detailed per-query statistics, similar to PostgreSQL's `pg_stat_statements`, with extra information useful for debugging application performance. These are viewable and searchable in the [control plane UI](../control_plane/index.md) and in the [admin database](#admin-database).

## How it works

Expand Down
Loading