changefinder.conf 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # netdata python.d.plugin configuration for example
  2. #
  3. # This file is in YaML format. Generally the format is:
  4. #
  5. # name: value
  6. #
  7. # There are 2 sections:
  8. # - global variables
  9. # - one or more JOBS
  10. #
  11. # JOBS allow you to collect values from multiple sources.
  12. # Each source will have its own set of charts.
  13. #
  14. # JOB parameters have to be indented (using spaces only, example below).
  15. # ----------------------------------------------------------------------
  16. # Global Variables
  17. # These variables set the defaults for all JOBs, however each JOB
  18. # may define its own, overriding the defaults.
  19. # update_every sets the default data collection frequency.
  20. # If unset, the python.d.plugin default is used.
  21. # update_every: 5
  22. # priority controls the order of charts at the netdata dashboard.
  23. # Lower numbers move the charts towards the top of the page.
  24. # If unset, the default for python.d.plugin is used.
  25. # priority: 60000
  26. # penalty indicates whether to apply penalty to update_every in case of failures.
  27. # Penalty will increase every 5 failed updates in a row. Maximum penalty is 10 minutes.
  28. # penalty: yes
  29. # autodetection_retry sets the job re-check interval in seconds.
  30. # The job is not deleted if check fails.
  31. # Attempts to start the job are made once every autodetection_retry.
  32. # This feature is disabled by default.
  33. # autodetection_retry: 0
  34. # ----------------------------------------------------------------------
  35. # JOBS (data collection sources)
  36. local:
  37. # A friendly name for this job.
  38. name: 'local'
  39. # What host to pull data from.
  40. host: '127.0.0.1:19999'
  41. # What charts to pull data for - A regex like 'system\..*|' or 'system\..*|apps.cpu|apps.mem' etc.
  42. charts_regex: 'system\..*'
  43. # Charts to exclude, useful if you would like to exclude some specific charts.
  44. # Note: should be a ',' separated string like 'chart.name,chart.name'.
  45. charts_to_exclude: ''
  46. # Get ChangeFinder scores 'per_dim' or 'per_chart'.
  47. mode: 'per_chart'
  48. # Default parameters that can be passed to the changefinder library.
  49. cf_r: 0.5
  50. cf_order: 1
  51. cf_smooth: 15
  52. # The percentile above which scores will be flagged.
  53. cf_threshold: 99
  54. # The number of recent scores to use when calculating the percentile of the changefinder score.
  55. n_score_samples: 14400
  56. # Set to true if you also want to chart the percentile scores in addition to the flags.
  57. # Mainly useful for debugging or if you want to dive deeper on how the scores are evolving over time.
  58. show_scores: false