DataDog/chef-datadog

node attribute for rtcontainer_interval used for process interval value

Closed this issue · 0 comments

process: node['datadog']['process_agent']['rtcontainer_interval'],

I believe this should be:

    intervals: {
      container: node['datadog']['process_agent']['container_interval'],
      container_realtime: node['datadog']['process_agent']['rtcontainer_interval'],
      process: node['datadog']['process_agent']['process_interval'],
      process_realtime: node['datadog']['process_agent']['rtprocess_interval'],
    },

Otherwise, the process_interval node attribute value is not being used anywhere and the rtcontainer_interval is used for the process interval.

If this is true, I'm happy to open a PR to fix it. I just happened to have noticed this, and I don't actually have a need for this feature and so I cannot test a fix for it.