Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix type-o #73

Merged
merged 1 commit into from
Nov 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion collector/nginx_plus.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func NewNginxPlusCollector(nginxClient *plusclient.NginxClient, namespace string
"bytes_out": newStreamZoneSyncMetric(namespace, "bytes_out", "Bytes sent by this node"),
"msgs_in": newStreamZoneSyncMetric(namespace, "msgs_in", "Total messages received by this node"),
"msgs_out": newStreamZoneSyncMetric(namespace, "msgs_out", "Total messages sent by this node"),
"nodes_online": newStreamZoneSyncMetric(namespace, "nodes_online", "Number of peers this node is conected to"),
"nodes_online": newStreamZoneSyncMetric(namespace, "nodes_online", "Number of peers this node is connected to"),
"records_pending": newStreamZoneSyncZoneMetric(namespace, "records_pending", "The number of records that need to be sent to the cluster"),
"records_total": newStreamZoneSyncZoneMetric(namespace, "records_total", "The total number of records stored in the shared memory zone"),
},
Expand Down