File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
The minimum supported MySQL version is now 5.5.
6
6
7
+ Collector ` info_schema.tables ` is now disabled by default due to high cardinality danger.
8
+
7
9
### Changes:
8
10
9
11
* [ CHANGE]
@@ -13,6 +15,7 @@ The minimum supported MySQL version is now 5.5.
13
15
14
16
* [ CHANGE] Update innodb buffer pool mappings #369
15
17
* [ CHANGE] Update defaults for MySQL 5.5 #318
18
+ * [ CHANGE] Disable info_schema.tables collector by default #406
16
19
* [ BUGFIX] Sanitize metric names in global variables #307
17
20
* [ BUGFIX] Clear last_scrape_error on every scrape (PR #368 ) #367
18
21
* [ FEATURE] Add by_user and by_host metrics to info_schema.processlist collector (PR #333 ) #334
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ var scrapers = map[collector.Scraper]bool{
63
63
collector.ScrapeSlaveStatus {}: true ,
64
64
collector.ScrapeProcesslist {}: false ,
65
65
collector.ScrapeUser {}: false ,
66
- collector.ScrapeTableSchema {}: true ,
66
+ collector.ScrapeTableSchema {}: false ,
67
67
collector.ScrapeInfoSchemaInnodbTablespaces {}: false ,
68
68
collector.ScrapeInnodbMetrics {}: false ,
69
69
collector.ScrapeAutoIncrementColumns {}: false ,
You can’t perform that action at this time.
0 commit comments