Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Unified Diff: compute_engine_scripts/monitoring/storage-schemas.conf

Issue 310253003: Add setup scripts for a Graphite server. (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compute_engine_scripts/monitoring/storage-schemas.conf
diff --git a/compute_engine_scripts/monitoring/storage-schemas.conf b/compute_engine_scripts/monitoring/storage-schemas.conf
new file mode 100644
index 0000000000000000000000000000000000000000..e9115e565d462ec21fa9284a8ed66a734d123285
--- /dev/null
+++ b/compute_engine_scripts/monitoring/storage-schemas.conf
@@ -0,0 +1,18 @@
+# Schema definitions for Whisper files. Entries are scanned in order,
+# and first match wins. This file is scanned for changes every 60 seconds.
+#
+# [name]
+# pattern = regex
+# retentions = timePerPoint:timeToStore, timePerPoint:timeToStore, ...
+
+# Carbon's internal metrics. This entry should match what is specified in
+# CARBON_METRIC_PREFIX and CARBON_METRIC_INTERVAL settings
+[carbon]
+pattern = ^carbon\.
+retentions = 60:90d
+
+# By default everything else gets stored at 1 min intervals for 90 days.
+[default_1min_for_90day]
+pattern = .*
+retentions = 60s:90d
+

Powered by Google App Engine
This is Rietveld 408576698