Browse Source

CHANGELOG: add latest metrics change

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
Gyuho Lee 6 years ago
parent
commit
6804bd8af4
2 changed files with 9 additions and 2 deletions
  1. 4 2
      CHANGELOG-3.4.md
  2. 5 0
      CHANGELOG-3.5.md

+ 4 - 2
CHANGELOG-3.4.md

@@ -244,8 +244,10 @@ Note that any `etcd_debugging_*` metrics are experimental and subject to change.
 - Change [gRPC proxy to expose etcd server endpoint /metrics](https://github.com/etcd-io/etcd/pull/10618).
   - The metrics that were exposed via the proxy were not etcd server members but instead the proxy itself.
 - Fix bug where [db_compaction_total_duration_milliseconds metric incorrectly measured duration as 0](https://github.com/etcd-io/etcd/pull/10646).
-- Promote [`etcd_debugging_mvcc_put_total`](https://github.com/etcd-io/etcd/pull/10962) Prometheus metric to etcd_mvcc_put_total.
-- Promote [`etcd_debugging_mvcc_delete_total`](https://github.com/etcd-io/etcd/pull/10962) Prometheus metric to etcd_mvcc_delete_total.
+- Promote [`etcd_debugging_mvcc_put_total`](https://github.com/etcd-io/etcd/pull/10962) Prometheus metric to `etcd_mvcc_put_total`.
+- Promote [`etcd_debugging_mvcc_delete_total`](https://github.com/etcd-io/etcd/pull/10962) Prometheus metric to `etcd_mvcc_delete_total`.
+- Promote `etcd_debugging_mvcc_get_total` Prometheus metric to `etcd_mvcc_get_total`.
+- Promote `etcd_debugging_mvcc_txn_total` Prometheus metric to `etcd_mvcc_txn_total`.
 
 ### Security, Authentication
 

+ 5 - 0
CHANGELOG-3.5.md

@@ -34,12 +34,17 @@ See [code changes](https://github.com/etcd-io/etcd/compare/v3.4.0...v3.5.0) and
   - `curl http://127.0.0.1:2379/config/local/log -XPUT -d '{"Level":"DEBUG"}'` won't work.
   - Please use `etcd --logger=zap --log-outputs=stderr` instead.
 - Deprecated `etcd_debugging_mvcc_db_total_size_in_bytes` Prometheus metric. Instead, use `etcd_mvcc_db_total_size_in_bytes`.
+- Master branch `/version` outputs `3.5.0-pre`, instead of `3.4.0+git`.
 
 ### Metrics, Monitoring
 
 Note that any `etcd_debugging_*` metrics are experimental and subject to change.
 
 - Deprecated `etcd_debugging_mvcc_db_total_size_in_bytes` Prometheus metric. Instead, use `etcd_mvcc_db_total_size_in_bytes`.
+- Deprecated `etcd_debugging_mvcc_put_total` Prometheus metric. Instead, use `etcd_mvcc_put_total`.
+- Deprecated `etcd_debugging_mvcc_delete_total` Prometheus metric. Instead, use `etcd_mvcc_delete_total`.
+- Deprecated `etcd_debugging_mvcc_txn_total` Prometheus metric. Instead, use `etcd_mvcc_txn_total`.
+- Deprecated `etcd_debugging_mvcc_get_total` Prometheus metric. Instead, use `etcd_mvcc_get_total`.
 
 ### etcd server