You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to this wrong mapping, once the "track_io_timing" feature is enabled at PostgreSQL side then the fields postgresql.database.blocks.time.read.ms and postgresql.database.blocks.time.write.ms are always missing (more than probably due to an error while mapping).
The text was updated successfully, but these errors were encountered:
track_io_timing
viapostgresql.conf
--> uncomment or addtrack_io_timing = on
database
metricsetpostgresql.database.blocks.time.read.ms
andpostgresql.database.blocks.time.write.ms
are missing while expected (due to step n°2).According to beats/metricbeat/module/postgresql/database/data.go, the following fields are mapped as Integer:
But according to the official PostgreSQL documentation, theses columns are double precision - see PostgreSQL: Documentation: 9.2: The Statistics Collector
Due to this wrong mapping, once the "track_io_timing" feature is enabled at PostgreSQL side then the fields
postgresql.database.blocks.time.read.ms
andpostgresql.database.blocks.time.write.ms
are always missing (more than probably due to an error while mapping).The text was updated successfully, but these errors were encountered: