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
Copy file name to clipboardExpand all lines: Documentation/op-guide/maintenance.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -149,7 +149,9 @@ $ ETCDCTL_API=3 etcdctl put newkey 123
149
149
OK
150
150
```
151
151
152
-
The metric `etcd_debugging_mvcc_db_total_size_in_use_in_bytes` indicates the actual database usage after a history compaction, while `etcd_debugging_mvcc_db_total_size_in_bytes` shows the database size including free space waiting for defragmentation. The latter increases only when the former is close to it, meaning when both of these metrics are close to the quota, a history compaction is required to avoid triggering the space quota.
152
+
The metric `etcd_mvcc_db_total_size_in_use_in_bytes` indicates the actual database usage after a history compaction, while `etcd_debugging_mvcc_db_total_size_in_bytes` shows the database size including free space waiting for defragmentation. The latter increases only when the former is close to it, meaning when both of these metrics are close to the quota, a history compaction is required to avoid triggering the space quota.
153
+
154
+
`etcd_debugging_mvcc_db_total_size_in_bytes` is renamed to `etcd_mvcc_db_total_size_in_bytes` from v3.4.
v3.4 promotes `etcd_debugging_mvcc_db_total_size_in_bytes` Prometheus metrics to `etcd_mvcc_db_total_size_in_bytes`, in order to encourage etcd storage monitoring.
53
+
54
+
`etcd_debugging_mvcc_db_total_size_in_bytes` is still served in v3.4 for backward compatibilities. It will be completely deprecated in v3.5.
55
+
56
+
```diff
57
+
-etcd_debugging_mvcc_db_total_size_in_bytes
58
+
+etcd_mvcc_db_total_size_in_bytes
59
+
```
60
+
61
+
Note that `etcd_debugging_*` namespace metrics have been marked as experimental. As we improve monitoring guide, we will promote more metrics.
62
+
50
63
#### Deprecating `etcd --log-output` flag (now `--log-outputs`)
51
64
52
65
Rename [`etcd --log-output` to `--log-outputs`](https://github.com/coreos/etcd/pull/9624) to support multiple log outputs. **`etcd --logger=capnslog` does not support multiple log outputs.**
v3.4 promoted `etcd_debugging_mvcc_db_total_size_in_bytes` Prometheus metrics to `etcd_mvcc_db_total_size_in_bytes`, in order to encourage etcd storage monitoring. And v3.5 completely deprcates `etcd_debugging_mvcc_db_total_size_in_bytes`.
20
+
21
+
```diff
22
+
-etcd_debugging_mvcc_db_total_size_in_bytes
23
+
+etcd_mvcc_db_total_size_in_bytes
24
+
```
25
+
26
+
Note that `etcd_debugging_*` namespace metrics have been marked as experimental. As we improve monitoring guide, we will promote more metrics.
27
+
17
28
#### Deprecated in `etcd --logger capnslog`
18
29
19
30
v3.4 defaults to `--logger=zap` in order to support multiple log outputs and structured logging.
0 commit comments