We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7561457 commit 49ee215Copy full SHA for 49ee215
collector/mysql_innodb_index_stats.go
@@ -42,7 +42,7 @@ var (
42
var (
43
indexStatsValueDesc = prometheus.NewDesc(
44
prometheus.BuildFQName(namespace, mysql, "innodb_index_stats_stat_value"),
45
- "Stores data related to particular InnoDB Persistent Statistics.",
+ "Size of the InnoDB index in bytes.",
46
indexStatLabelNames, nil)
47
)
48
collector/mysql_innodb_table_stats.go
@@ -42,15 +42,15 @@ var (
nRowsDesc = prometheus.NewDesc(
prometheus.BuildFQName(namespace, mysql, "innodb_table_stats_n_rows"),
+ "Number of rows in the table.",
tableStatLabelNames, nil)
clusteredIndexSizeDesc = prometheus.NewDesc(
prometheus.BuildFQName(namespace, mysql, "innodb_table_stats_clustered_index_size"),
49
+ "The size of the primary index, in pages.",
50
51
sumOfOtherIndexSizesDesc = prometheus.NewDesc(
52
prometheus.BuildFQName(namespace, mysql, "innodb_table_stats_sum_of_other_index_sizes"),
53
+ "The total size of other (non-primary) indexes, in pages.",
54
55
56
0 commit comments