Foglight database agents use a metric called Average Active Sessions (AAS) to show how busy a database is. It helps you understand how much work the database is doing at any moment.
AAS measures how many sessions are actively working or waiting for something (like CPU or disk) at a specific time. It does not count sessions that are idle or doing nothing.
The graph shows this using a unit called seconds per second (seconds/s). This means how many seconds of work the database is doing in one second of real time. For example, if multiple sessions are working at the same time, the database might be doing 5 seconds of work in just 1 second, thanks to parallel processing.
The unit seconds per second (seconds/s) may sound unusual, but it’s accurate for what’s being measured. It shows how much time is being used by active sessions in each second of real time. While threads are involved in doing the work, the metric is not counting threads, it’s measuring how much time those threads are consuming. Threads are execution units, but this graph is focused on total workload time, not the number of threads running.
This type of measurement is also used in Oracle and other database systems.
Compare the AAS value to the number of CPU cores on the server.
Identify the type of wait:
Review top SQL statements:
Check system capacity:
Look at trends over time: