Browse Source

Minor typo in metrics help field

Mordy Ovits 10 years ago
parent
commit
0d01035693
1 changed files with 2 additions and 2 deletions
  1. 2 2
      storage/metrics.go

+ 2 - 2
storage/metrics.go

@@ -104,7 +104,7 @@ var (
 			Namespace: "etcd",
 			Namespace: "etcd",
 			Subsystem: "storage",
 			Subsystem: "storage",
 			Name:      "index_compaction_pause_duration_milliseconds",
 			Name:      "index_compaction_pause_duration_milliseconds",
-			Help:      "Bucketed histogram of index compaction puase duration.",
+			Help:      "Bucketed histogram of index compaction pause duration.",
 			// 0.5ms -> 1second
 			// 0.5ms -> 1second
 			Buckets: prometheus.ExponentialBuckets(0.5, 2, 12),
 			Buckets: prometheus.ExponentialBuckets(0.5, 2, 12),
 		})
 		})
@@ -114,7 +114,7 @@ var (
 			Namespace: "etcd",
 			Namespace: "etcd",
 			Subsystem: "storage",
 			Subsystem: "storage",
 			Name:      "db_compaction_pause_duration_milliseconds",
 			Name:      "db_compaction_pause_duration_milliseconds",
-			Help:      "Bucketed histogram of db compaction puase duration.",
+			Help:      "Bucketed histogram of db compaction pause duration.",
 			// 1ms -> 4second
 			// 1ms -> 4second
 			Buckets: prometheus.ExponentialBuckets(1, 2, 13),
 			Buckets: prometheus.ExponentialBuckets(1, 2, 13),
 		})
 		})