This repository was archived by the owner on Oct 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.go
More file actions
25 lines (17 loc) · 1.28 KB
/
const.go
File metadata and controls
25 lines (17 loc) · 1.28 KB
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
package metricsintegration
// MetricNameConnections is the number of connections since start.
const MetricNameConnections = "containerssh_ssh_connections"
// MetricHelpConnections is the help text for the number of connections since start.
const MetricHelpConnections = "Number of connections since start"
// MetricNameCurrentConnections is the number of currently open SSH connections.
const MetricNameCurrentConnections = "containerssh_ssh_current_connections"
// MetricHelpCurrentConnections is th ehelp text for the number of currently open SSH connections.
const MetricHelpCurrentConnections = "Current open SSH connections"
// MetricNameSuccessfulHandshake is the number of successful SSH handshakes since start.
const MetricNameSuccessfulHandshake = "containerssh_ssh_handshake_successful"
// MetricHelpSuccessfulHandshake is the help text for the number of successful SSH handshakes since start.
const MetricHelpSuccessfulHandshake = "Successful SSH handshakes since start"
// MetricNameFailedHandshake is the number of failed SSH handshakes since start.
const MetricNameFailedHandshake = "containerssh_ssh_handshake_failed"
// MetricHelpFailedHandshake is the help text for the number of failed SSH handshakes since start.
const MetricHelpFailedHandshake = "Failed SSH handshakes since start"