diff options
author | Andres Freund <andres@anarazel.de> | 2023-04-07 16:05:26 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2023-04-07 17:04:56 -0700 |
commit | ac8d53dae5ae2914aeb022dc514826f71c7206e6 (patch) | |
tree | 04720e046622d3676452a9f4d6aa655820fbf8d8 /src/backend/catalog/system_views.sql | |
parent | 1c453cfd8976d9c6451ba45e27bf30375d574312 (diff) | |
download | postgresql-ac8d53dae5ae2914aeb022dc514826f71c7206e6.tar.gz |
Track IO times in pg_stat_io
a9c70b46dbe and 8aaa04b32S added counting of IO operations to a new view,
pg_stat_io. Now, add IO timing for reads, writes, extends, and fsyncs to
pg_stat_io as well.
This combines the tracking for pgBufferUsage with the tracking for pg_stat_io
into a new function pgstat_count_io_op_time(). This should make it a bit
easier to avoid the somewhat costly instr_time conversion done for
pgBufferUsage.
Author: Melanie Plageman <melanieplageman@gmail.com>
Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
Discussion: https://postgr.es/m/flat/CAAKRu_ay5iKmnbXZ3DsauViF3eMxu4m1oNnJXqV_HyqYeg55Ww%40mail.gmail.com
Diffstat (limited to 'src/backend/catalog/system_views.sql')
-rw-r--r-- | src/backend/catalog/system_views.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/catalog/system_views.sql b/src/backend/catalog/system_views.sql index 6b098234f8..41aafe0b87 100644 --- a/src/backend/catalog/system_views.sql +++ b/src/backend/catalog/system_views.sql @@ -1125,13 +1125,17 @@ SELECT b.io_object, b.io_context, b.reads, + b.read_time, b.writes, + b.write_time, b.extends, + b.extend_time, b.op_bytes, b.hits, b.evictions, b.reuses, b.fsyncs, + b.fsync_time, b.stats_reset FROM pg_stat_get_io() b; |