v0.7.0
Changelog
Deprecation notice
-health-minions
, health-functions-filter
and health-states-filter
flags are deprecated.
They should be replaced by configuring metrics in the config.yml
file.
The equivalent of ./salt-exporter -health-minions -health-functions-filter "func1,func2" -health-states-filter "state1,state2"
is:
metrics:
salt_responses_total:
enabled: true
salt_function_status:
enabled: true
filters:
functions:
- "func1"
- "func2"
states:
- "state1"
- "state2"
Fixes
- fix(config): health-minions not working
- fix: remove config print
Internal
- Merge pull request #34 from kpetremann/refacto_configuration
- Merge pull request #35 from kpetremann/configurable_metrics
- Merge pull request #36 from kpetremann/test_and_fix_config
- refactor: configuration filename configurable for tests
- style: remove useless empty line
- tests(config): test all configuration scenarios