We currently use ZAPI and ZAPIPERF for harvest and want to move to using REST.
Under zapi, if I wanted to add another label, I duplicate the yml of the one I want to modify(making a yml_custom.yml) and only have the list of changes I want to add and then it 'did the right thing' and appended it to the default file when harvest started up.
When I attempt this with REST yml files, this seems to not work anymore (at least from what I am seeing).
Is there some sort of config I am missing in the migration to REST that will allow this behavior? I also tried to modify the existing files but all that did is leave the original label BLANK and populated my new one.
Example:
conf/rest/9.12.0/aggr.yml:
counters:
- ^name => aggr
- ^name => aggregate
export_options:
instance_keys:
- aggr
- aggregate
This shows the addition I made and the result was:
aggr="",aggregate="<insert actual aggr here>"
Clearly I am missing something.