@@ -69,11 +69,11 @@ export const METRIC_CATALOGUE = {
6969 perQueryStatsPipe : 'size' ,
7070 } ,
7171 } ,
72- blk_read_time : {
73- humanizeName : 'Reading Blocks Time' ,
72+ local_blk_read_time : {
73+ humanizeName : 'Reading Local Blocks Time' ,
7474 tooltipText :
75- 'Total time the statement spent reading blocks (if track_io_timing is enabled, otherwise zero)' ,
76- simpleName : 'blk_read_time ' ,
75+ 'Total time the statement spent reading local blocks (if track_io_timing is enabled, otherwise zero)' ,
76+ simpleName : 'local_blk_read_time ' ,
7777 serviceTypes : [ Databases . postgresql ] ,
7878 metricRelation : ( ) => '' ,
7979 units : Units . PER_SEC ,
@@ -85,11 +85,11 @@ export const METRIC_CATALOGUE = {
8585 perQueryStatsPipe : 'time' ,
8686 } ,
8787 } ,
88- blk_write_time : {
89- humanizeName : 'Writing Blocks Time' ,
88+ local_blk_write_time : {
89+ humanizeName : 'Writing Local Blocks Time' ,
9090 tooltipText :
91- 'Total time the statement spent writing blocks (if track_io_timing is enabled, otherwise zero)' ,
92- simpleName : 'blk_write_time ' ,
91+ 'Total time the statement spent writing local blocks (if track_io_timing is enabled, otherwise zero)' ,
92+ simpleName : 'local_blk_write_time ' ,
9393 serviceTypes : [ Databases . postgresql ] ,
9494 metricRelation : ( ) => '' ,
9595 units : Units . PER_SEC ,
@@ -176,6 +176,38 @@ export const METRIC_CATALOGUE = {
176176 perQueryStatsPipe : 'number' ,
177177 } ,
178178 } ,
179+ shared_blk_read_time : {
180+ humanizeName : 'Reading Shared Blocks Time' ,
181+ tooltipText :
182+ 'Total time the statement spent reading shared blocks (if track_io_timing is enabled, otherwise zero)' ,
183+ simpleName : 'shared_blk_read_time' ,
184+ serviceTypes : [ Databases . postgresql ] ,
185+ metricRelation : ( ) => '' ,
186+ units : Units . PER_SEC ,
187+ pipeTypes : {
188+ ratePipe : 'number' ,
189+ sumPipe : 'time' ,
190+ subSumPipe : 'percent' ,
191+ sparklineType : 'number' ,
192+ perQueryStatsPipe : 'time' ,
193+ } ,
194+ } ,
195+ shared_blk_write_time : {
196+ humanizeName : 'Writing Shared Blocks Time' ,
197+ tooltipText :
198+ 'Total time the statement spent writing shared blocks (if track_io_timing is enabled, otherwise zero)' ,
199+ simpleName : 'shared_blk_write_time' ,
200+ serviceTypes : [ Databases . postgresql ] ,
201+ metricRelation : ( ) => '' ,
202+ units : Units . PER_SEC ,
203+ pipeTypes : {
204+ ratePipe : 'number' ,
205+ sumPipe : 'time' ,
206+ subSumPipe : 'percent' ,
207+ sparklineType : 'number' ,
208+ perQueryStatsPipe : 'time' ,
209+ } ,
210+ } ,
179211 shared_blks_hit : {
180212 humanizeName : 'Shared Block Cache Hits' ,
181213 tooltipText : 'Total number of shared block cache hits by the statement' ,
0 commit comments