Skip to content

Commit 0dde132

Browse files
authored
Release 0.13.0-rc.0 (#546)
BREAKING CHANGES: Changes related to `replication_group_member_stats` collector: * metric "transaction_in_queue" was Counter instead of Gauge * renamed 3 metrics starting with `mysql_perf_schema_transaction_` to start with `mysql_perf_schema_transactions_` to be consistent with column names * exposing only server's own stats by matching MEMBER_ID with @@server_uuid resulting "member_id" label to be dropped. Changes: * [CHANGE] Switch to go-kit for logs. #433 * [FEATURE] Add `tls.insecure-skip-verify` flag to ignore tls verification errors #417 * [FEATURE] Add collector for AWS Aurora information_schema.replica_host_status #435 * [FEATURE] Add collector for `replication_group_members` #459 * [FEATURE] Add new metrics to `replication_group_member_stats` collector to support MySQL 8.x. #462 * [FEATURE] Add collector for `performance_schema.memory_summary_global_by_event_name` #515 * [FEATURE] Support authenticating using mTLS client cert and no password #539 * [ENHANCEMENT] Support heartbeats in UTC #471 * [BUGFIX] Fix binlog metrics on mysql 8.x #419 * [BUGFIX] Fix output value of wsrep_cluster_status #473 * [BUGFIX] Fix collect.info_schema.innodb_metrics for new field names (mariadb 10.5+) #494 * [BUGFIX] Fix log output of collect[] params #505 * [BUGFIX] Fix collect.info_schema.innodb_tablespaces for new table names #516 * [BUGFIX] Fix innodb_metrics for mariadb 10.5+ #523 * [BUGFIX] Allow perf_schema.memory summary current_bytes to be negative #517 Signed-off-by: Ben Kochie <superq@gmail.com>
1 parent 8e0d856 commit 0dde132

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

CHANGELOG.md

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,38 @@
55
### Changes:
66

77
* [CHANGE]
8-
* [BUGFIX]
9-
* [ENHANCEMENT]
108
* [FEATURE]
9+
* [ENHANCEMENT]
10+
* [BUGFIX]
1111

12-
* [FEATURE] Add `tls.insecure-skip-verify` flag to ignore tls verification errors (PR #417) #348
13-
* [FEATURE] Add new metrics to `replication_group_member_stats` collector to support MySQL 8.x.
14-
* [FEATURE] Add collector for `replication_group_members` (PR #459) #362
15-
* [FEATURE] Add collector for `performance_schema.memory_summary_global_by_event_name` (PR #515) #75
16-
* [BUGFIX] Fixed output value of wsrep_cluster_status #473
17-
* [BUGFIX] Fix collect.info_schema.innodb_tablespaces for new table names #516
18-
* [BUGFIX] Fix collect.info_schema.innodb_metrics for new field names (mariadb 10.5+) #494
12+
## 0.13.0-rc.0 / 2021-04-26
1913

20-
### BREAKING CHANGES:
14+
BREAKING CHANGES:
2115

2216
Changes related to `replication_group_member_stats` collector:
2317
* metric "transaction_in_queue" was Counter instead of Gauge
2418
* renamed 3 metrics starting with `mysql_perf_schema_transaction_` to start with `mysql_perf_schema_transactions_` to be consistent with column names
2519
* exposing only server's own stats by matching MEMBER_ID with @@server_uuid resulting "member_id" label to be dropped.
2620

21+
Changes:
22+
23+
* [CHANGE] Switch to go-kit for logs. #433
24+
* [FEATURE] Add `tls.insecure-skip-verify` flag to ignore tls verification errors #417
25+
* [FEATURE] Add collector for AWS Aurora information_schema.replica_host_status #435
26+
* [FEATURE] Add collector for `replication_group_members` #459
27+
* [FEATURE] Add new metrics to `replication_group_member_stats` collector to support MySQL 8.x. #462
28+
* [FEATURE] Add collector for `performance_schema.memory_summary_global_by_event_name` #515
29+
* [FEATURE] Support authenticating using mTLS client cert and no password #539
30+
* [ENHANCEMENT] Support heartbeats in UTC #471
31+
* [BUGFIX] Fix binlog metrics on mysql 8.x #419
32+
* [BUGFIX] Fix output value of wsrep_cluster_status #473
33+
* [BUGFIX] Fix collect.info_schema.innodb_metrics for new field names (mariadb 10.5+) #494
34+
* [BUGFIX] Fix log output of collect[] params #505
35+
* [BUGFIX] Fix collect.info_schema.innodb_tablespaces for new table names #516
36+
* [BUGFIX] Fix innodb_metrics for mariadb 10.5+ #523
37+
* [BUGFIX] Allow perf_schema.memory summary current_bytes to be negative #517
38+
39+
2740
## 0.12.1 / 2019-07-10
2841

2942
### Changes:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.1
1+
0.13.0-rc.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/go-sql-driver/mysql v1.6.0
77
github.com/prometheus/client_golang v1.10.0
88
github.com/prometheus/client_model v0.2.0
9-
github.com/prometheus/common v0.20.0
9+
github.com/prometheus/common v0.21.0
1010
github.com/satori/go.uuid v1.2.0
1111
github.com/smartystreets/goconvey v1.6.4
1212
gopkg.in/alecthomas/kingpin.v2 v2.2.6

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y8
236236
github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA=
237237
github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo=
238238
github.com/prometheus/common v0.18.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
239-
github.com/prometheus/common v0.20.0 h1:pfeDeUdQcIxOMutNjCejsEFp7qeP+/iltHSSmLpE+hU=
240-
github.com/prometheus/common v0.20.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
239+
github.com/prometheus/common v0.21.0 h1:SMvI2JVldvfUvRVlP64jkIJEC6WiGHJcN2e5tB+ztF8=
240+
github.com/prometheus/common v0.21.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s=
241241
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
242242
github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
243243
github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=

0 commit comments

Comments
 (0)