You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Improve query text collection to reduce missing query texts
Add a fingerprint cache that retains known query IDs across collection
cycles, increasing memory use by up to about 9 MB per server whilst reducing
CPU overhead
For data from pg_stat_activity (Connections page in pganalyze), this reduces
the occurrence of <truncated query>
For data from pg_stat_statements (Query Performance page in pganalyze), this
reduces the likelihood of "query text unavailable" by re-using previous
query texts already stored on the server side
PlanetScale: Paginate log fetching to ensure freshness
Previously, only a single page of up to 1,000 log entries was fetched,
which proved insufficient for high-traffic servers. The collector now
paginates through all available entries
AlloyDB: Skip collecting replication stats
Helm chart: Allow setting pod labels and pulling images by digest