diff options
author | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2021-03-01 18:18:24 +0100 |
---|---|---|
committer | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2021-03-01 18:18:24 +0100 |
commit | 08e40e4a45d715a367dbd60e3fe89553ce479d2c (patch) | |
tree | 6b4e8b57c6b485c83f88e838c71c093a76b7f941 /defaults | |
download | ansible-netdata_straight-08e40e4a45d715a367dbd60e3fe89553ce479d2c.tar.gz ansible-netdata_straight-08e40e4a45d715a367dbd60e3fe89553ce479d2c.tar.zst ansible-netdata_straight-08e40e4a45d715a367dbd60e3fe89553ce479d2c.zip |
initial import from private repo
Diffstat (limited to 'defaults')
-rw-r--r-- | defaults/main.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000..822acf6 --- /dev/null +++ b/defaults/main.yml | |||
@@ -0,0 +1,29 @@ | |||
1 | --- | ||
2 | # Force installation even if netdata is already installed | ||
3 | netdata_force_install: false | ||
4 | netdata_installer: kickstart | ||
5 | netdata_install_options: "--disable-telemetry" | ||
6 | netdata_uninstall_before: no | ||
7 | netdata_prefix: "{{ (netdata_installer == 'kickstart') | ternary('','/opt/netdata') }}" | ||
8 | # A dict whcih reflect the wanted netdata.conf file | ||
9 | netdata_config: | ||
10 | global: | ||
11 | history: 3996 | ||
12 | |||
13 | web: | ||
14 | "listen to": 127.0.0.1 | ||
15 | |||
16 | # Define streaming configuration | ||
17 | #netdata_streaming_configuration: {} | ||
18 | netdata_streaming_configuration: | ||
19 | upstream: | ||
20 | destination: collector.example.com | ||
21 | "api key": XXXXXXX | ||
22 | downstreams: | ||
23 | - name: main | ||
24 | api_key: XXXXXXY | ||
25 | |||
26 | # Define alarm notify configuration | ||
27 | netdata_alarm_notify_configs: {} | ||
28 | # Define a custom_sender function to be used in alarm configuration | ||
29 | netdata_custom_sender_function: "" | ||