Observability
Running queries are not displayed in SolarWinds Observability SaaS
You are not seeing queries that you know are executing.
First published date
Last published date
Overview
- On-host monitoring: Captures queries sent over unencrypted TCP/IP connections.
- Off-host monitoring: Missing queries usually indicate issues with performance_schema or pg_stat_statements not capturing the query.
Product section
Cause
- Queries sent over Unix sockets or encrypted connections are not captured.
- Queries executed from stored routines, replication, or those that were killed or did not finish are not captured.
- Missing queries in off-host monitoring may be due to performance_schema or pg_stat_statements not capturing the query.
Resolution
- Performance Schema Digest Lost:
- Issue: MySQL did not record some query digests due to the maximum size limit of
events_statements_summary_by_digest. - Fix:
- Run
TRUNCATE TABLE performance_schema.events_statements_summary_by_digestor restart the server. - Configure the agent to automatically truncate the table when the percentage of digests lost exceeds a threshold:
- Grant
DROPprivilege onperformance_schema.events_statements_summary_by_digestto the database user. - Add
"ps-truncate-events-summary":"true"and"ps-others-tolerance":"X"in the dbo-global.conffile. - Restart the DBO Plugins.
- Grant
- Run
- Issue: MySQL did not record some query digests due to the maximum size limit of