summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/openvpn/charts.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/openvpn/charts.go62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/openvpn/charts.go b/src/go/collectors/go.d.plugin/modules/openvpn/charts.go
new file mode 100644
index 000000000..435c2151a
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/openvpn/charts.go
@@ -0,0 +1,62 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package openvpn
+
+import "github.com/netdata/netdata/go/go.d.plugin/agent/module"
+
+type (
+ // Charts is an alias for module.Charts
+ Charts = module.Charts
+ // Dims is an alias for module.Dims
+ Dims = module.Dims
+)
+
+var charts = Charts{
+ {
+ ID: "active_clients",
+ Title: "Total Number Of Active Clients",
+ Units: "clients",
+ Fam: "clients",
+ Ctx: "openvpn.active_clients",
+ Dims: Dims{
+ {ID: "clients"},
+ },
+ },
+ {
+ ID: "total_traffic",
+ Title: "Total Traffic",
+ Units: "kilobits/s",
+ Fam: "traffic",
+ Ctx: "openvpn.total_traffic",
+ Type: module.Area,
+ Dims: Dims{
+ {ID: "bytes_in", Name: "in", Algo: module.Incremental, Mul: 8, Div: 1000},
+ {ID: "bytes_out", Name: "out", Algo: module.Incremental, Mul: 8, Div: -1000},
+ },
+ },
+}
+
+var userCharts = Charts{
+ {
+ ID: "%s_user_traffic",
+ Title: "User Traffic",
+ Units: "kilobits/s",
+ Fam: "user %s",
+ Ctx: "openvpn.user_traffic",
+ Type: module.Area,
+ Dims: Dims{
+ {ID: "%s_bytes_received", Name: "received", Algo: module.Incremental, Mul: 8, Div: 1000},
+ {ID: "%s_bytes_sent", Name: "sent", Algo: module.Incremental, Mul: 8, Div: -1000},
+ },
+ },
+ {
+ ID: "%s_user_connection_time",
+ Title: "User Connection Time",
+ Units: "seconds",
+ Fam: "user %s",
+ Ctx: "openvpn.user_connection_time",
+ Dims: Dims{
+ {ID: "%s_connection_time", Name: "time"},
+ },
+ },
+}