@@ -16,7 +16,7 @@ func (g *Gauges) TableDeadRows() *prometheus.GaugeVec {
16
16
var gauge = prometheus .NewGaugeVec (
17
17
prometheus.GaugeOpts {
18
18
Name : "postgresql_table_dead_rows" ,
19
- Help : "Estimated number of dead rows in table" ,
19
+ Help : "Estimated number of dead rows in a table" ,
20
20
ConstLabels : g .labels ,
21
21
},
22
22
[]string {"table" },
@@ -47,7 +47,7 @@ func (g *Gauges) DatabaseDeadRows() prometheus.Gauge {
47
47
return g .new (
48
48
prometheus.GaugeOpts {
49
49
Name : "postgresql_database_dead_rows" ,
50
- Help : "Estimated number of dead rows in database" ,
50
+ Help : "Estimated number of dead rows in a database" ,
51
51
ConstLabels : g .labels ,
52
52
},
53
53
"SELECT sum(coalesce(n_dead_tup, 0)) as n_dead_tup FROM pg_stat_user_tables" ,
@@ -64,7 +64,7 @@ func (g *Gauges) TableLiveRows() *prometheus.GaugeVec {
64
64
var gauge = prometheus .NewGaugeVec (
65
65
prometheus.GaugeOpts {
66
66
Name : "postgresql_table_live_rows" ,
67
- Help : "Estimated number of live rows in table" ,
67
+ Help : "Estimated number of live rows in a table" ,
68
68
ConstLabels : g .labels ,
69
69
},
70
70
[]string {"table" },
@@ -95,7 +95,7 @@ func (g *Gauges) DatabaseLiveRows() prometheus.Gauge {
95
95
return g .new (
96
96
prometheus.GaugeOpts {
97
97
Name : "postgresql_database_live_rows" ,
98
- Help : "Estimated number of live rows in database" ,
98
+ Help : "Estimated number of live rows in a database" ,
99
99
ConstLabels : g .labels ,
100
100
},
101
101
"SELECT sum(coalesce(n_live_tup, 0)) as n_live_tup FROM pg_stat_user_tables" ,
0 commit comments