Skip to content
Snippets Groups Projects
Unverified Commit 46833dce authored by Oliver's avatar Oliver Committed by GitHub
Browse files

Merge pull request #113 from acondrat/master

adding a few more client and network metrics
parents db5643d3 fb9aae11
No related branches found
No related tags found
No related merge requests found
Loading
@@ -56,8 +56,9 @@ var (
Loading
@@ -56,8 +56,9 @@ var (
   
// # Clients // # Clients
"connected_clients": "connected_clients", "connected_clients": "connected_clients",
"blocked_clients": "blocked_clients",
"client_longest_output_list": "client_longest_output_list", "client_longest_output_list": "client_longest_output_list",
"client_biggest_input_buf": "client_biggest_input_buf",
"blocked_clients": "blocked_clients",
   
// # Memory // # Memory
"used_memory": "memory_used_bytes", "used_memory": "memory_used_bytes",
Loading
@@ -80,8 +81,11 @@ var (
Loading
@@ -80,8 +81,11 @@ var (
// # Stats // # Stats
"total_connections_received": "connections_received_total", "total_connections_received": "connections_received_total",
"total_commands_processed": "commands_processed_total", "total_commands_processed": "commands_processed_total",
"instantaneous_ops_per_sec": "instantaneous_ops_per_sec",
"total_net_input_bytes": "net_input_bytes_total", "total_net_input_bytes": "net_input_bytes_total",
"total_net_output_bytes": "net_output_bytes_total", "total_net_output_bytes": "net_output_bytes_total",
"instantaneous_input_kbps": "instantaneous_input_kbps",
"instantaneous_output_kbps": "instantaneous_output_kbps",
"rejected_connections": "rejected_connections_total", "rejected_connections": "rejected_connections_total",
"expired_keys": "expired_keys_total", "expired_keys": "expired_keys_total",
"evicted_keys": "evicted_keys_total", "evicted_keys": "evicted_keys_total",
Loading
@@ -89,7 +93,6 @@ var (
Loading
@@ -89,7 +93,6 @@ var (
"keyspace_misses": "keyspace_misses_total", "keyspace_misses": "keyspace_misses_total",
"pubsub_channels": "pubsub_channels", "pubsub_channels": "pubsub_channels",
"pubsub_patterns": "pubsub_patterns", "pubsub_patterns": "pubsub_patterns",
"instantaneous_ops_per_sec": "instantaneous_ops_per_sec",
"latest_fork_usec": "latest_fork_usec", "latest_fork_usec": "latest_fork_usec",
   
// # Replication // # Replication
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment