我的石墨耳语数据库不存储超过7天的数据。使用whisper-fetch.py
工具,我只能看到最多1周的数据(此时应该有至少3周的数据)。我使用grafana,statsd,石墨网,碳和耳语。
其中一个指标被截断的示例:
stats.counters.api.create_order.pc.chrome
这是我的storage-schemas.conf
:
[carbon]
pattern = ^carbon\.
retentions = 10s:6h,1min:90d
[default_1min_for_1day]
pattern = .*
retentions = 10s:6h,1min:6d,10min:5y
这是我的storage-aggregation.conf
:
[min]
pattern = \.lower$
xFilesFactor = 0.1
aggregationMethod = min
[max]
pattern = \.upper(_\d+)?$
xFilesFactor = 0.1
aggregationMethod = max
[sum]
pattern = \.sum$
xFilesFactor = 0
aggregationMethod = sum
[count]
pattern = \.count$
xFilesFactor = 0
aggregationMethod = sum
[count_legacy]
pattern = ^stats_counts.*
xFilesFactor = 0
aggregationMethod = sum
[default_average]
pattern = .*
xFilesFactor = 0.3
aggregationMethod = average
答案 0 :(得分:2)
我发现了这个问题。正如我目睹的那样,使用whisper-info.py
,所有旧指标的保留时间显示为7天。更新的指标保持得很好。当前storage-schemas.conf
在任何地方都没有指定7天...但是之前的storage-schemas.conf
文件可能已经拥有它。
对于storage-schemas.conf
中指定的新保留时间,石墨似乎不会自动更新耳语文件我使用whisper-resize.py
工具手动调整所有旧的度量标准文件,现在whisper-info.py
显示正确的保留期。