Skip to content
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

Add Postgres metrics to cross-org telemetry whitelist #29776

Merged
merged 5 commits into from
Oct 3, 2024
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
11 changes: 11 additions & 0 deletions comp/core/agenttelemetry/impl/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,17 @@ var defaultProfiles = `
- name: oracle.activity_latency
- name: oracle.statement_metrics
- name: oracle.statement_plan_errors
- name: postgres.schema_tables_elapsed_ms
- name: postgres.schema_tables_count
- name: postgres.collect_relations_autodiscovery_ms
- name: postgres.collect_stat_autodiscovery_ms
- name: postgres.get_new_pg_stat_activity_ms
- name: postgres.get_new_pg_stat_activity_count
- name: postgres.get_active_connections_ms
- name: postgres.get_active_connections_count
- name: postgres.collect_activity_snapshot_ms
- name: postgres.collect_statement_samples_ms
- name: postgres.collect_statement_samples_count
- name: transactions.input_count
- name: transactions.requeued
- name: transactions.retries
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Each section from every release note are combined when the
# CHANGELOG.rst is rendered. So the text needs to be worded so that
# it does not depend on any information only available in another
# section. This may mean repeating some details, but each section
# must be readable independently of the other.
#
# Each section note must be formatted as reStructuredText.
---
other:
- |
Adds Postgres integration metrics to cross-org telemetry whitelist.
Loading