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
BREAKING CHANGES:
The exporter no longer supports the monolithic `DATA_SOURCE_NAME` environment variable.
To configure connections to MySQL you can either use a `my.cnf` style config file or command line arguments.
For example:
export MYSQLD_EXPORTER_PASSWORD=secret
mysqld_exporter --mysqld.address=localhost:3306 --mysqld.username=exporter
We have also dropped some internal scrape metrics:
- `mysql_exporter_scrapes_total`
- `mysql_exporter_scrape_errors_total`
- `mysql_last_scrape_failed`
The default client configuration file is now `.my.cnf` in the process working directory. Use `--config.my-cnf="$HOME/.my.cnf"` to retain the previous default.
Changes:
* [CHANGE] Allow `tlsCfg.InsecureSkipVerify` outside of mTLS #631
* [CHANGE] Update to exporter-toolkit v0.8.1 #677
* [CHANGE] Fix shared metrics between requests #722
* [CHANGE] Allow empty passwords #742
* [CHANGE] Don't use HOME env in the my-cnf config path. #745
* [FEATURE] Add support for collecting metrics from `sys.user_summary` #628
* [FEATURE] Support for multi-target mysqld probes #651
* [FEATURE] Add MySQL TLS configurations #718
* [FEATURE] Add config reload via /-/reload #734
* [ENHANCEMENT] Add UNIX domain socket support for multi-target scraping #707
* [ENHANCEMENT] Use `STRAIGHT_JOIN` in infoSchemaAutoIncrementQuery #726
* [BUGFIX] Fix `infoSchemaInnodbMetricsEnabledColumnQuery` #687
* [BUGFIX] Allow empty passwords #742
Signed-off-by: SuperQ <superq@gmail.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,14 @@
2
2
3
3
BREAKING CHANGES:
4
4
5
-
The default client configuration file is now `.my.cnf` in the process working directory. Use `--config.my-cnf="$HOME/.my.cnf"` to retain the previous default.
6
-
7
5
Changes:
8
6
9
-
*[CHANGE] Don't use HOME env in the my-cnf config path. #745
We have also dropped some internal scrape metrics:
29
-
*`mysql_exporter_scrapes_total`
30
-
*`mysql_exporter_scrape_errors_total`
31
-
*`mysql_last_scrape_failed`
25
+
-`mysql_exporter_scrapes_total`
26
+
-`mysql_exporter_scrape_errors_total`
27
+
-`mysql_last_scrape_failed`
28
+
29
+
The default client configuration file is now `.my.cnf` in the process working directory. Use `--config.my-cnf="$HOME/.my.cnf"` to retain the previous default.
32
30
33
31
Changes:
34
32
35
33
*[CHANGE] Allow `tlsCfg.InsecureSkipVerify` outside of mTLS #631
36
34
*[CHANGE] Update to exporter-toolkit v0.8.1 #677
37
35
*[CHANGE] Fix shared metrics between requests #722
36
+
*[CHANGE] Allow empty passwords #742
37
+
*[CHANGE] Don't use HOME env in the my-cnf config path. #745
38
38
*[FEATURE] Add support for collecting metrics from `sys.user_summary`#628
39
39
*[FEATURE] Support for multi-target mysqld probes #651
40
40
*[FEATURE] Add MySQL TLS configurations #718
41
+
*[FEATURE] Add config reload via /-/reload #734
41
42
*[ENHANCEMENT] Add UNIX domain socket support for multi-target scraping #707
43
+
*[ENHANCEMENT] Use `STRAIGHT_JOIN` in infoSchemaAutoIncrementQuery #726
0 commit comments