summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/portcheck/metadata.yaml
blob: c0ccfde1d87e7dd8d8d11e86bc51bc4f4abcf47c (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
plugin_name: go.d.plugin
modules:
  - meta:
      id: collector-go.d.plugin-portcheck
      plugin_name: go.d.plugin
      module_name: portcheck
      monitored_instance:
        name: TCP Endpoints
        link: ""
        icon_filename: globe.svg
        categories:
          - data-collection.synthetic-checks
      keywords: []
      related_resources:
        integrations:
          list: []
      info_provided_to_referring_integrations:
        description: ""
      most_popular: false
    overview:
      data_collection:
        metrics_description: |
          This collector monitors TCP services availability and response time.
        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/portcheck.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: host
              description: Remote host address in IPv4, IPv6 format, or DNS name.
              default_value: ""
              required: true
            - name: ports
              description: Remote host ports. Must be specified in numeric format.
              default_value: ""
              required: true
            - name: timeout
              description: HTTP request timeout.
              default_value: 2
              required: false
        examples:
          folding:
            title: Config
            enabled: true
          list:
            - name: Check SSH and telnet
              description: An example configuration.
              config: |
                jobs:
                  - name: server1
                    host: 127.0.0.1
                    ports:
                      - 22
                      - 23
            - name: Check webserver with IPv6 address
              description: An example configuration.
              config: |
                jobs:
                  - name: server2
                    host: "[2001:DB8::1]"
                    ports:
                      - 80
                      - 8080
            - name: Multi-instance
              description: |
                > **Note**: When you define multiple jobs, their names must be unique.
                
                Multiple instances.
              config: |
                jobs:
                  - name: server1
                    host: 127.0.0.1
                    ports:
                      - 22
                      - 23
                
                  - name: server2
                    host: 203.0.113.10
                    ports:
                      - 22
                      - 23
    troubleshooting:
      problems:
        list: []
    alerts:
      - name: portcheck_service_reachable
        metric: portcheck.status
        info: "TCP host ${label:host} port ${label:port} liveness status"
        link: https://github.com/netdata/netdata/blob/master/src/health/health.d/portcheck.conf
      - name: portcheck_connection_timeouts
        metric: portcheck.status
        info: "percentage of timed-out TCP connections to host ${label:host} port ${label:port} in the last 5 minutes"
        link: https://github.com/netdata/netdata/blob/master/src/health/health.d/portcheck.conf
      - name: portcheck_connection_fails
        metric: portcheck.status
        info: "percentage of failed TCP connections to host ${label:host} port ${label:port} in the last 5 minutes"
        link: https://github.com/netdata/netdata/blob/master/src/health/health.d/portcheck.conf
    metrics:
      folding:
        title: Metrics
        enabled: false
      description: ""
      availability: []
      scopes:
        - name: tcp endpoint
          description: These metrics refer to the TCP endpoint.
          labels:
            - name: host
              description: host
            - name: port
              description: port
          metrics:
            - name: portcheck.status
              description: TCP Check Status
              unit: boolean
              chart_type: line
              dimensions:
                - name: success
                - name: failed
                - name: timeout
            - name: portcheck.state_duration
              description: Current State Duration
              unit: seconds
              chart_type: line
              dimensions:
                - name: time
            - name: portcheck.latency
              description: TCP Connection Latency
              unit: ms
              chart_type: line
              dimensions:
                - name: time