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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Schema definitions for Whisper files. Entries are scanned in order,
2 # and first match wins. This file is scanned for changes every 60 seconds.
3 #
4 # [name]
5 # pattern = regex
6 # retentions = timePerPoint:timeToStore, timePerPoint:timeToStore, ...
7
8 # Carbon's internal metrics. This entry should match what is specified in
9 # CARBON_METRIC_PREFIX and CARBON_METRIC_INTERVAL settings
10 [carbon]
11 pattern = ^carbon\.
12 retentions = 60:90d
13
14 # By default everything else gets stored at 1 min intervals for 90 days.
15 [default_1min_for_90day]
16 pattern = .*
17 retentions = 60s:90d
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698