Skip to content

Commit fea7ad6

Browse files
committed
sorts postgres metrics by category
1 parent e667f69 commit fea7ad6

File tree

1 file changed

+35
-18
lines changed

1 file changed

+35
-18
lines changed

articles/postgresql/single-server/concepts-monitoring.md

Lines changed: 35 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,41 @@ Azure Database for PostgreSQL provides various metrics that give insight into th
2323

2424
These metrics are available for Azure Database for PostgreSQL:
2525

26-
|Metric|Metric Display Name|Unit|Description|
27-
|---|---|---|---|
28-
|cpu_percent|CPU percent|Percent|The percentage of CPU in use.|
29-
|memory_percent|Memory percent|Percent|The percentage of memory in use.|
30-
|io_consumption_percent|IO percent|Percent|The percentage of IO in use. (Not applicable for Basic tier servers.)|
31-
|storage_percent|Storage percentage|Percent|The percentage of storage used out of the server's maximum.|
32-
|storage_used|Storage used|Bytes|The amount of storage in use. The storage used by the service may include the database files, transaction logs, and the server logs.|
33-
|storage_limit|Storage limit|Bytes|The maximum storage for this server.|
34-
|serverlog_storage_percent|Server Log storage percent|Percent|The percentage of server log storage used out of the server's maximum server log storage.|
35-
|serverlog_storage_usage|Server Log storage used|Bytes|The amount of server log storage in use.|
36-
|serverlog_storage_limit|Server Log storage limit|Bytes|The maximum server log storage for this server.|
37-
|active_connections|Active Connections|Count|The number of active connections to the server.|
38-
|connections_failed|Failed Connections|Count|The number of established connections that failed.|
39-
|network_bytes_egress|Network Out|Bytes|Network Out across active connections.|
40-
|network_bytes_ingress|Network In|Bytes|Network In across active connections.|
41-
|backup_storage_used|Backup Storage Used|Bytes|The amount of backup storage used. This metric represents the sum of storage consumed by all the full database backups, differential backups, and log backups retained based on the backup retention period set for the server. The frequency of the backups is service managed and explained in the [concepts article](concepts-backup.md). For geo-redundant storage, backup storage usage is twice that of the locally redundant storage.|
42-
|pg_replica_log_delay_in_bytes|Max Lag Across Replicas|Bytes|The lag in bytes between the primary and the most-lagging replica. This metric is available on the primary server only.|
43-
|pg_replica_log_delay_in_seconds|Replica Lag|Seconds|The time since the last replayed transaction. This metric is available for replica servers only.|
26+
##### `Error`
27+
28+
|Display Name|Metric ID |Unit |Description|
29+
|------------|--------------------------|-------------------------------|-----------|
30+
|**Failed Connections**|connections_failed |Count |The number of established connections that failed.|
31+
32+
##### `Latency`
33+
34+
|Display Name|Metric ID |Unit |Description|
35+
|------------|--------------------------|-------------------------------|-----------|
36+
|**Max Lag Across Replicas**|pg_replica_log_delay_in_bytes|Bytes |The lag in bytes between the primary and the most-lagging replica. This metric is available on the primary server only.|
37+
|**Replica Lag** |pg_replica_log_delay_in_seconds|Seconds |The time since the last replayed transaction. This metric is available for replica servers only.|
38+
39+
##### `Saturation`
40+
41+
|Display Name|Metric ID |Unit |Description|
42+
|------------|--------------------------|-------------------------------|-----------|
43+
|**Backup Storage Used**|backup_storage_used |Bytes |The amount of backup storage used. This metric represents the sum of storage consumed by all the full database backups, differential backups, and log backups retained based on the backup retention period set for the server. The frequency of the backups is service managed and explained in the [concepts article](concepts-backup.md). For geo-redundant storage, backup storage usage is twice that of the locally redundant storage.|
44+
|**CPU percent** |cpu_percent |Percent |The percentage of CPU in use.|
45+
|**IO percent** |io_consumption_percent |Percent |The percentage of IO in use. (Not applicable for Basic tier servers.)|
46+
|**Memory percent** |memory_percent |Percent |The percentage of memory in use.|
47+
|**Server Log storage limit** |serverlog_storage_limit |Bytes |The maximum server log storage for this server.|
48+
|**Server Log storage percent** |serverlog_storage_percent |Percent |The percentage of server log storage used out of the server's maximum server log storage.|
49+
|**Server Log storage used** |serverlog_storage_usage |Bytes |The amount of server log storage in use.|
50+
|**Storage limit** |storage_limit |Bytes |The maximum storage for this server.|
51+
|**Storage percentage** |storage_percent |Percent |The percentage of storage used out of the server's maximum.|
52+
|**Storage used** |storage_used |Bytes |The amount of storage in use. The storage used by the service may include the database files, transaction logs, and the server logs.|
53+
54+
##### `Traffic`
55+
56+
|Display Name|Metric ID |Unit |Description|
57+
|------------|--------------------------|-------------------------------|-----------|
58+
|**Active Connections**|active_connections |Count |The number of active connections to the server.|
59+
|**Network Out** |network_bytes_egress |Bytes |Network Out across active connections.|
60+
|**Network In** |network_bytes_ingress |Bytes |Network In across active connections.|
4461

4562
## Server logs
4663

0 commit comments

Comments
 (0)