We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please note I'm synthesizing this as my code uses YAML data and the splat operator to create resources
collectd::plugin::postgresql::database{'metrics': name => 'metrics', port => '5432', host => 'metricshost', user => 'metrics', password => 'collectd', writer => 'sqlstore', interval => 10, } collectd::plugin::postgresql::writer{'sqlstore': statement => 'SELECT collectd_insert($1, $2, $3, $4, $5, $6, $7, $8, $9);', storerates => 'true', }
The manifest using collectd::plugin::postgresql::database runs successfully, but the created file contains
collectd::plugin::postgresql::database
Interval 10
and metrics are only committed once on program startup.
The template should emit
CommitInterval 10
for the plugin to regularly commit collected values.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
Please note I'm synthesizing this as my code uses YAML data and the splat operator to create resources
What are you seeing
The manifest using
collectd::plugin::postgresql::databaseruns successfully, but the created file containsand metrics are only committed once on program startup.
What behaviour did you expect instead
The template should emit
for the plugin to regularly commit collected values.
The text was updated successfully, but these errors were encountered: