Disable graphite tags and better storage schema (#3229)
This commit is contained in:
parent
f80176fa0d
commit
a3d70ff039
|
|
@ -122,6 +122,9 @@ PICKLE_RECEIVER_PORT = 2004
|
|||
# thousands of TCP connections reduce the throughput of the service.
|
||||
#MAX_RECEIVER_CONNECTIONS = inf
|
||||
|
||||
# Tag support, when enabled carbon will make HTTP calls to graphite-web to update the tag index
|
||||
ENABLE_TAGS = False
|
||||
|
||||
# Per security concerns outlined in Bug #817247 the pickle receiver
|
||||
# will use a more secure and slightly less efficient unpickler.
|
||||
# Set this to True to revert to the old-fashioned insecure unpickler.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Schema definitions for Whisper files. Entries are scanned in order,
|
||||
6# Schema definitions for Whisper files. Entries are scanned in order,
|
||||
# and first match wins. This file is scanned for changes every 60 seconds.
|
||||
#
|
||||
# [name]
|
||||
|
|
@ -11,9 +11,13 @@
|
|||
pattern = ^carbon\.
|
||||
retentions = 60:1d
|
||||
|
||||
[sitespeed_crux]
|
||||
pattern = ^sitespeed_io\.crux\.
|
||||
retentions = 60m:40d
|
||||
|
||||
[sitespeed]
|
||||
pattern = ^sitespeed_io\.
|
||||
retentions = 10m:60d,30m:90d
|
||||
retentions = 10m:40d
|
||||
|
||||
[catch_them_all]
|
||||
pattern = .*
|
||||
|
|
|
|||
Loading…
Reference in New Issue