I am trying to configure the Rest and RestPerf collectors to poll less frequently than the default. I am trying to accomplish this by creating the custom.yaml files in these paths conf/rest/custom.yaml conf/restperf/custom.yaml so that they merge with the default.yamls.
here's what my custom.yamls look like:
Rest:
custom.yaml: |-
schedule:
- counter: 24h
- data: 5m
RestPerf:
custom.yaml: |-
schedule:
- counter: 24h
- instance: 720h
- data: 3m
When I tried it, I was able to get the RestPerf collector successfully polling less frequently (changed from 1 min default to 3 minutes) but the Rest collector just stopped polling at all. Is there something wrong with my Rest custom.yaml?