summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/ping/metadata.yaml
blob: d70c8a3f4d23ad0f014d7ad05d7e5116ce25e17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
plugin_name: go.d.plugin
modules:
  - meta:
      id: collector-go.d.plugin-ping
      plugin_name: go.d.plugin
      module_name: ping
      monitored_instance:
        name: Ping
        link: ""
        icon_filename: globe.svg
        categories:
          - data-collection.synthetic-checks
      keywords:
        - ping
      related_resources:
        integrations:
          list: []
      info_provided_to_referring_integrations:
        description: ""
      most_popular: false
    overview:
      data_collection:
        metrics_description: |
          This module measures round-trip time and packet loss by sending ping messages to network hosts.
          
          There are two operational modes:
          
          - privileged (send raw ICMP ping, default). Requires
            CAP_NET_RAW [capability](https://man7.org/linux/man-pages/man7/capabilities.7.html) or root privileges:
            > **Note**: set automatically during Netdata installation.
          
            ```bash
            sudo setcap CAP_NET_RAW=eip <INSTALL_PREFIX>/usr/libexec/netdata/plugins.d/go.d.plugin
            ```
          
          - unprivileged (send UDP ping, Linux only).
            Requires configuring [ping_group_range](https://www.man7.org/linux/man-pages/man7/icmp.7.html):
          
            ```bash
            sudo sysctl -w net.ipv4.ping_group_range="0 2147483647"
            ```
            To persist the change add `net.ipv4.ping_group_range="0 2147483647"` to `/etc/sysctl.conf` and
            execute `sudo sysctl -p`.
        method_description: ""
      supported_platforms:
        include: []
        exclude: []
      multi_instance: true
      additional_permissions:
        description: ""
      default_behavior:
        auto_detection:
          description: ""
        limits:
          description: ""
        performance_impact:
          description: ""
    setup:
      prerequisites:
        list: []
      configuration:
        file:
          name: go.d/ping.conf
        options:
          description: |
            The following options can be defined globally: update_every, autodetection_retry.
          folding:
            title: Config options
            enabled: true
          list:
            - name: update_every
              description: Data collection frequency.
              default_value: 5
              required: false
            - name: autodetection_retry
              description: Recheck interval in seconds. Zero means no recheck will be scheduled.
              default_value: 0
              required: false
            - name: hosts
              description: Network hosts.
              default_value: ""
              required: true
            - name: network
              description: "Allows configuration of DNS resolution. Supported options: ip (select IPv4 or IPv6), ip4 (select IPv4), ip6 (select IPv6)."
              default_value: "ip"
              required: false
            - name: privileged
              description: Ping packets type. "no" means send an "unprivileged" UDP ping,  "yes" - raw ICMP ping.
              default_value: true
              required: false
            - name: packets
              description: Number of ping packets to send.
              default_value: 5
              required: false
            - name: interval
              description: Timeout between sending ping packets.
              default_value: 100ms
              required: false
        examples:
          folding:
            title: Config
            enabled: true
          list:
            - name: IPv4 hosts
              description: An example configuration.
              config: |
                jobs:
                  - name: example
                    hosts:
                      - 192.0.2.0
                      - 192.0.2.1
            - name: Unprivileged mode
              description: An example configuration.
              config: |
                jobs:
                  - name: example
                    privileged: no
                    hosts:
                      - 192.0.2.0
                      - 192.0.2.1
            - name: Multi-instance
              description: |
                > **Note**: When you define multiple jobs, their names must be unique.
                
                Multiple instances.
              config: |
                jobs:
                  - name: example1
                    hosts:
                      - 192.0.2.0
                      - 192.0.2.1
                
                  - name: example2
                    packets: 10
                    hosts:
                      - 192.0.2.3
                      - 192.0.2.4
    troubleshooting:
      problems:
        list: []
    alerts:
      - name: ping_host_reachable
        metric: ping.host_packet_loss
        info: "network host ${lab1el:host} reachability status"
        link: https://github.com/netdata/netdata/blob/master/src/health/health.d/ping.conf
      - name: ping_packet_loss
        metric: ping.host_packet_loss
        info: "packet loss percentage to the network host ${label:host} over the last 10 minutes"
        link: https://github.com/netdata/netdata/blob/master/src/health/health.d/ping.conf
      - name: ping_host_latency
        metric: ping.host_rtt
        info: "average latency to the network host ${label:host} over the last 10 seconds"
        link: https://github.com/netdata/netdata/blob/master/src/health/health.d/ping.conf
    metrics:
      folding:
        title: Metrics
        enabled: false
      description: ""
      availability: []
      scopes:
        - name: host
          description: These metrics refer to the remote host.
          labels:
            - name: host
              description: remote host
          metrics:
            - name: ping.host_rtt
              description: Ping round-trip time
              unit: milliseconds
              chart_type: line
              dimensions:
                - name: min
                - name: max
                - name: avg
            - name: ping.host_std_dev_rtt
              description: Ping round-trip time standard deviation
              unit: milliseconds
              chart_type: line
              dimensions:
                - name: std_dev
            - name: ping.host_packet_loss
              description: Ping packet loss
              unit: percentage
              chart_type: line
              dimensions:
                - name: loss
            - name: ping.host_packets
              description: Ping packets transferred
              unit: packets
              chart_type: line
              dimensions:
                - name: received
                - name: sent