summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/openvpn_status_log/metadata.yaml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/openvpn_status_log/metadata.yaml144
1 files changed, 144 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/openvpn_status_log/metadata.yaml b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/metadata.yaml
new file mode 100644
index 000000000..fbe3ff610
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/openvpn_status_log/metadata.yaml
@@ -0,0 +1,144 @@
+plugin_name: go.d.plugin
+modules:
+ - meta:
+ id: collector-go.d.plugin-openvpn_status_log
+ plugin_name: go.d.plugin
+ module_name: openvpn_status_log
+ monitored_instance:
+ name: OpenVPN status log
+ link: https://openvpn.net/
+ icon_filename: openvpn.svg
+ categories:
+ - data-collection.vpns
+ keywords:
+ - openvpn
+ - vpn
+ related_resources:
+ integrations:
+ list: []
+ info_provided_to_referring_integrations:
+ description: ""
+ most_popular: false
+ overview:
+ data_collection:
+ metrics_description: |
+ This collector monitors OpenVPN server.
+
+ It parses server log files and provides summary and per user metrics.
+ 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/openvpn_status_log.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: 1
+ required: false
+ - name: autodetection_retry
+ description: Recheck interval in seconds. Zero means no recheck will be scheduled.
+ default_value: 0
+ required: false
+ - name: log_path
+ description: Path to status log.
+ default_value: /var/log/openvpn/status.log
+ required: true
+ - name: per_user_stats
+ description: User selector. Determines which user metrics will be collected.
+ default_value: ""
+ required: false
+ details: |
+ Metrics of users matching the selector will be collected.
+ - Logic: (pattern1 OR pattern2) AND !(pattern3 or pattern4)
+ - Pattern syntax: [matcher](https://github.com/netdata/netdata/tree/master/src/go/collectors/go.d.plugin/pkg/matcher#supported-format).
+ - Syntax:
+ ```yaml
+ per_user_stats:
+ includes:
+ - pattern1
+ - pattern2
+ excludes:
+ - pattern3
+ - pattern4
+ ```
+ examples:
+ folding:
+ title: Config
+ enabled: true
+ list:
+ - name: With user metrics
+ description: Collect metrics of all users.
+ config: |
+ jobs:
+ - name: local
+ per_user_stats:
+ includes:
+ - "* *"
+ troubleshooting:
+ problems:
+ list: []
+ alerts: []
+ metrics:
+ folding:
+ title: Metrics
+ enabled: false
+ description: ""
+ availability: []
+ scopes:
+ - name: global
+ description: These metrics refer to the entire monitored application.
+ labels: []
+ metrics:
+ - name: openvpn.active_clients
+ description: Total Number Of Active Clients
+ unit: clients
+ chart_type: line
+ dimensions:
+ - name: clients
+ - name: openvpn.total_traffic
+ description: Total Traffic
+ unit: kilobits/s
+ chart_type: area
+ dimensions:
+ - name: in
+ - name: out
+ - name: user
+ description: These metrics refer to the VPN user.
+ labels:
+ - name: username
+ description: VPN username
+ metrics:
+ - name: openvpn.user_traffic
+ description: User Traffic
+ unit: kilobits/s
+ chart_type: area
+ dimensions:
+ - name: in
+ - name: out
+ - name: openvpn.user_connection_time
+ description: User Connection Time
+ unit: seconds
+ chart_type: line
+ dimensions:
+ - name: time