diff --git a/.gitignore b/.gitignore index 83a1dc81..63348bef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ aerospike-prometheus-exporter - diff --git a/internal/pkg/commons/testutils.go b/internal/pkg/commons/testutils.go index dbb2dd9c..9c8a9d39 100644 --- a/internal/pkg/commons/testutils.go +++ b/internal/pkg/commons/testutils.go @@ -14,6 +14,7 @@ Constants, common variables and helper functions const ( TESTS_DEFAULT_CONFIG_FILE = "tests_data/default_ape.toml" TESTS_USERS_CONFIG_FILE = "tests_data/users_ape.toml" + TESTS_USERS_PKI_CONFIG_FILE = "tests_data/users_pki_ape.toml" TESTS_MOCK_CONFIG_FILE = "tests_data/mock_ape.toml" TESTS_DEFAULT_GAUGE_LIST_FILE = "configs/gauge_stats_list.toml" ) diff --git a/internal/pkg/config/config.go b/internal/pkg/config/config.go index eb9e4f54..46c9bafa 100644 --- a/internal/pkg/config/config.go +++ b/internal/pkg/config/config.go @@ -157,6 +157,7 @@ func (c *Config) ValidateAndUpdate(md toml.MetaData) { if c.Aerospike.AuthMode == "" { c.Aerospike.AuthMode = "internal" } + c.Aerospike.AuthMode = strings.ToLower(strings.TrimSpace(c.Aerospike.AuthMode)) if c.Aerospike.Timeout == 0 { c.Aerospike.Timeout = 5 diff --git a/internal/pkg/config/tests/gauge_stats_test.go b/internal/pkg/config/tests/gauge_stats_test.go index 2a75a497..482d67e1 100644 --- a/internal/pkg/config/tests/gauge_stats_test.go +++ b/internal/pkg/config/tests/gauge_stats_test.go @@ -10,7 +10,7 @@ import ( ) const ( - GAUGES_NAMESPACES_COUNT = 99 + GAUGES_NAMESPACES_COUNT = 110 GAUGES_NODE_STATS_COUNT = 69 GAUGES_SETS_COUNT = 9 GAUGES_SINDEX_COUNT = 13 diff --git a/internal/pkg/dataprovider/aero_server.go b/internal/pkg/dataprovider/aero_server.go index f7a23b16..cbc2884a 100644 --- a/internal/pkg/dataprovider/aero_server.go +++ b/internal/pkg/dataprovider/aero_server.go @@ -68,9 +68,7 @@ func initializeAndConnectAerospikeServer() (*aero.Connection, error) { clientPolicy.User = string(username) clientPolicy.Password = string(password) - authMode := strings.ToLower(strings.TrimSpace(config.Cfg.Aerospike.AuthMode)) - - switch authMode { + switch config.Cfg.Aerospike.AuthMode { case "internal", "": clientPolicy.AuthMode = aero.AuthModeInternal case "external": diff --git a/internal/pkg/statprocessors/sp_users.go b/internal/pkg/statprocessors/sp_users.go index dbfd71e4..c64acf99 100644 --- a/internal/pkg/statprocessors/sp_users.go +++ b/internal/pkg/statprocessors/sp_users.go @@ -31,7 +31,8 @@ func (uw *UserStatsProcessor) PassTwoKeys(rawMetrics map[string]string) []string func (uw *UserStatsProcessor) Refresh(infoKeys []string, rawMetrics map[string]string) ([]AerospikeStat, error) { // check if security configurations are enabled - if config.Cfg.Aerospike.User == "" && config.Cfg.Aerospike.Password == "" { + if config.Cfg.Aerospike.AuthMode != "pki" && + (config.Cfg.Aerospike.User == "" && config.Cfg.Aerospike.Password == "") { return nil, nil } diff --git a/internal/pkg/statprocessors/sp_xdr.go b/internal/pkg/statprocessors/sp_xdr.go index c3d074e6..2c6d574d 100644 --- a/internal/pkg/statprocessors/sp_xdr.go +++ b/internal/pkg/statprocessors/sp_xdr.go @@ -120,7 +120,7 @@ func (xw *XdrStatsProcessor) handleRefresh(infoKeyToProcess string, xdrRawMetric dynamicStatname := metricPrefix + stat if !exists { - allowed := isMetricAllowed(commons.CTX_USERS, stat) + allowed := isMetricAllowed(commons.CTX_XDR, stat) asMetric = NewAerospikeStat(commons.CTX_XDR, dynamicStatname, allowed) xw.xdrMetrics[stat] = asMetric } diff --git a/internal/pkg/statprocessors/tests/sp_latency_test.go b/internal/pkg/statprocessors/tests/sp_latency_test.go index 74a95f8d..e9fc8b0f 100644 --- a/internal/pkg/statprocessors/tests/sp_latency_test.go +++ b/internal/pkg/statprocessors/tests/sp_latency_test.go @@ -84,6 +84,10 @@ func latency_runTestcase(t *testing.T) { assert.Nil(t, err, "Error while latencyWatcher.PassTwokeys ") assert.NotEmpty(t, arrRawMetrics, "Error while latencyWatcher.PassTwokeys, RawMetrics is EMPTY ") + statprocessors.ClusterName = arrRawMetrics[statprocessors.Infokey_ClusterName] + statprocessors.Build = arrRawMetrics[statprocessors.Infokey_Build] + statprocessors.Service = arrRawMetrics[statprocessors.Infokey_Service] + // check the output with setsWatcher latencyMetrics, err := latencyWatcher.Refresh(passTwoOutputs, arrRawMetrics) assert.Nil(t, err, "Error while latencyWatcher.Refresh with passTwoOutputs ") diff --git a/internal/pkg/statprocessors/tests/sp_namespaces_test.go b/internal/pkg/statprocessors/tests/sp_namespaces_test.go index 3826e886..15c5d168 100644 --- a/internal/pkg/statprocessors/tests/sp_namespaces_test.go +++ b/internal/pkg/statprocessors/tests/sp_namespaces_test.go @@ -93,6 +93,10 @@ func namespace_runTestcase(t *testing.T) { assert.Nil(t, err, "Error while NamespaceWatcher.PassTwokeys ") assert.NotEmpty(t, arrRawMetrics, "Error while NamespaceWatcher.PassTwokeys, RawMetrics is EMPTY ") + statprocessors.ClusterName = arrRawMetrics[statprocessors.Infokey_ClusterName] + statprocessors.Build = arrRawMetrics[statprocessors.Infokey_Build] + statprocessors.Service = arrRawMetrics[statprocessors.Infokey_Service] + // check the output with NamespaceWatcher nsMetrics, err := nsWatcher.Refresh(passTwokeyOutputs, arrRawMetrics) assert.Nil(t, err, "Error while NamespaceWatcher.Refresh with passTwokeyOutputs ") diff --git a/internal/pkg/statprocessors/tests/sp_node_stats_test.go b/internal/pkg/statprocessors/tests/sp_node_stats_test.go index 0646bd0f..9c76a4a9 100644 --- a/internal/pkg/statprocessors/tests/sp_node_stats_test.go +++ b/internal/pkg/statprocessors/tests/sp_node_stats_test.go @@ -84,6 +84,10 @@ func node_runTestcase(t *testing.T) { assert.Nil(t, err, "Error while NodeStatsWatcher.PassTwokeys ") assert.NotEmpty(t, arrRawMetrics, "Error while NamespaceWatcher.PassTwokeys, RawMetrics is EMPTY ") + statprocessors.ClusterName = arrRawMetrics[statprocessors.Infokey_ClusterName] + statprocessors.Build = arrRawMetrics[statprocessors.Infokey_Build] + statprocessors.Service = arrRawMetrics[statprocessors.Infokey_Service] + // check the output with NodeStatsWatcher nodeMetrics, err := nodeWatcher.Refresh(passTwoOutputs, arrRawMetrics) assert.Nil(t, err, "Error while NodeStatsWatcher.Refresh with passTwoOutputs ") diff --git a/internal/pkg/statprocessors/tests/sp_sets_test.go b/internal/pkg/statprocessors/tests/sp_sets_test.go index d9362f5b..3cae20fe 100644 --- a/internal/pkg/statprocessors/tests/sp_sets_test.go +++ b/internal/pkg/statprocessors/tests/sp_sets_test.go @@ -84,6 +84,10 @@ func sets_runTestcase(t *testing.T) { assert.Nil(t, err, "Error while setsWatcher.PassTwokeys ") assert.NotEmpty(t, arrRawMetrics, "Error while setsWatcher.PassTwokeys, RawMetrics is EMPTY ") + statprocessors.ClusterName = arrRawMetrics[statprocessors.Infokey_ClusterName] + statprocessors.Build = arrRawMetrics[statprocessors.Infokey_Build] + statprocessors.Service = arrRawMetrics[statprocessors.Infokey_Service] + // check the output with setsWatcher setsMetrics, err := setsWatcher.Refresh(passTwoOutputs, arrRawMetrics) assert.Nil(t, err, "Error while setsWatcher.Refresh with passTwoOutputs ") diff --git a/internal/pkg/statprocessors/tests/sp_sindex_test.go b/internal/pkg/statprocessors/tests/sp_sindex_test.go index a82c455a..225ed17b 100644 --- a/internal/pkg/statprocessors/tests/sp_sindex_test.go +++ b/internal/pkg/statprocessors/tests/sp_sindex_test.go @@ -89,6 +89,10 @@ func sindex_runTestcase(t *testing.T) { assert.Nil(t, err, "Error while sindexMetrics.PassTwokeys ") assert.NotEmpty(t, arrRawMetrics, "Error while sindexMetrics.PassTwokeys, RawMetrics is EMPTY ") + statprocessors.ClusterName = arrRawMetrics[statprocessors.Infokey_ClusterName] + statprocessors.Build = arrRawMetrics[statprocessors.Infokey_Build] + statprocessors.Service = arrRawMetrics[statprocessors.Infokey_Service] + // check the output with sindexWatcher sindexMetrics, err := sindexWatcher.Refresh(passTwoOutputs, arrRawMetrics) assert.Nil(t, err, "Error while sindexMetrics.Refresh with passTwoOutputs ") diff --git a/internal/pkg/statprocessors/tests/sp_users_test.go b/internal/pkg/statprocessors/tests/sp_users_test.go index 36ca1589..f1b29f0c 100644 --- a/internal/pkg/statprocessors/tests/sp_users_test.go +++ b/internal/pkg/statprocessors/tests/sp_users_test.go @@ -79,6 +79,10 @@ func users_runTestcase(t *testing.T) { assert.Nil(t, err, "Error while usersWatcher.PassTwokeys ") assert.NotEmpty(t, arrRawMetrics, "Error while usersWatcher.PassTwokeys, RawMetrics is EMPTY ") + statprocessors.ClusterName = arrRawMetrics[statprocessors.Infokey_ClusterName] + statprocessors.Build = arrRawMetrics[statprocessors.Infokey_Build] + statprocessors.Service = arrRawMetrics[statprocessors.Infokey_Service] + // check the output with usersWatcher usersMetrics, err := usersWatcher.Refresh(passTwoOutputs, arrRawMetrics) assert.Nil(t, err, "Error while usersWatcher.Refresh with passTwoOutputs ") @@ -96,3 +100,46 @@ func users_runTestcase(t *testing.T) { } } + +func Test_Users_TestPKI(t *testing.T) { + + fmt.Println("initializing config ... Test_Users_TestPKI") + + // initialize config and gauge-lists + commons.InitConfigurations(commons.GetWatchersConfigFile(commons.TESTS_USERS_PKI_CONFIG_FILE)) + + users_runTestcase(t) +} + +func Test_Users_Not_Configured(t *testing.T) { + + fmt.Println("initializing config ... Test_Users_Not_Configured") + + // initialize config and gauge-lists + commons.InitConfigurations(commons.GetWatchersConfigFile(commons.TESTS_DEFAULT_CONFIG_FILE)) + + // Check passoneKeys + usersWatcher := &statprocessors.UserStatsProcessor{} + nwPassOneKeys := usersWatcher.PassOneKeys() + passOneOutput, _ := dataprovider.GetProvider().RequestInfo(nwPassOneKeys) + fmt.Println("users_runTestcase: passOneOutput: ", passOneOutput) + passTwoOutputs := usersWatcher.PassTwoKeys(passOneOutput) + + // append common keys + infoKeys := []string{statprocessors.Infokey_ClusterName, statprocessors.Infokey_Service, statprocessors.Infokey_Build} + passTwoOutputs = append(passTwoOutputs, infoKeys...) + + arrRawMetrics, err := dataprovider.GetProvider().RequestInfo(passTwoOutputs) + assert.Nil(t, err, "Error while usersWatcher.PassTwokeys ") + assert.NotEmpty(t, arrRawMetrics, "Error while usersWatcher.PassTwokeys, RawMetrics is EMPTY ") + + statprocessors.ClusterName = arrRawMetrics[statprocessors.Infokey_ClusterName] + statprocessors.Build = arrRawMetrics[statprocessors.Infokey_Build] + statprocessors.Service = arrRawMetrics[statprocessors.Infokey_Service] + + // check the output with usersWatcher + usersMetrics, err := usersWatcher.Refresh(passTwoOutputs, arrRawMetrics) + assert.Nil(t, err, "Error while usersWatcher.Refresh with passTwoOutputs ") + assert.Empty(t, usersMetrics, "Error while usersWatcher.Refresh, usersWatcher is EMPTY ") + +} diff --git a/internal/pkg/statprocessors/tests/sp_xdr_test.go b/internal/pkg/statprocessors/tests/sp_xdr_test.go index b3af9ef5..d20d4f47 100644 --- a/internal/pkg/statprocessors/tests/sp_xdr_test.go +++ b/internal/pkg/statprocessors/tests/sp_xdr_test.go @@ -90,6 +90,10 @@ func xdr_runTestcase(t *testing.T) { passTwoOutputs = append(passTwoOutputs, infoKeys...) arrRawMetrics, err := dataprovider.GetProvider().RequestInfo(passTwoOutputs) + statprocessors.ClusterName = passOneOutput[statprocessors.Infokey_ClusterName] + statprocessors.Build = passOneOutput[statprocessors.Infokey_Build] + statprocessors.Service = passOneOutput[statprocessors.Infokey_Service] + assert.Nil(t, err, "Error while XdrWatcher.PassTwokeys ") assert.NotEmpty(t, arrRawMetrics, "Error while XdrWatcher.PassTwokeys, RawMetrics is EMPTY ") diff --git a/internal/pkg/statprocessors/tests/tests_data/users_pki_ape.toml b/internal/pkg/statprocessors/tests/tests_data/users_pki_ape.toml new file mode 100644 index 00000000..4cb50cb0 --- /dev/null +++ b/internal/pkg/statprocessors/tests/tests_data/users_pki_ape.toml @@ -0,0 +1,153 @@ +[Agent] +# Exporter HTTPS (TLS) configuration +# HTTPS between Prometheus and Exporter + +# TLS certificates. +# Supports below formats, +# 1. Certificate file path - "file:" +# 2. Environment variable containing base64 encoded certificate - "env-b64:" +# 3. Base64 encoded certificate - "b64:" +# Applicable to 'root_ca', 'cert_file' and 'key_file' configurations. + +# Server certificate +cert_file = "" + +# Private key associated with server certificate +key_file = "" + +# Root CA to validate client certificates (for mutual TLS) +root_ca = "" + +# Passphrase for encrypted key_file. Supports below formats, +# 1. Passphrase directly - "" +# 2. Passphrase via file - "file:" +# 3. Passphrase via environment variable - "env:" +# 4. Passphrase via environment variable containing base64 encoded passphrase - "env-b64:" +# 5. Passphrase in base64 encoded form - "b64:" +key_file_passphrase = "" + +# labels to add to the prometheus metrics for e.g. labels={zone="asia-south1-a", platform="google compute engine"} +labels = {} + +bind = ":9145" + +# is exporter running in mock test mode +use_mock_datasource = true + +# metrics server timeout in seconds +timeout = 10 + +# Exporter logging configuration +# Log file path (optional, logs to console by default) +# Level can be info|warning,warn|error,err|debug|trace ('info' by default) +log_file = "" +log_level = "" + +# Basic HTTP authentication for '/metrics'. +# Supports below formats, +# 1. Credential directly - "" +# 2. Credential via file - "file:" +# 3. Credential via environment variable - "env:" +# 4. Credential via environment variable containing base64 encoded credential - "env-b64:" +# 5. Credential in base64 encoded form - "b64:" +basic_auth_username = "" +basic_auth_password = "" + +[Aerospike] +db_host = "localhost" +db_port = 4000 + +# TLS certificates. +# Supports below formats, +# 1. Certificate file path - "file:" +# 2. Environment variable containing base64 encoded certificate - "env-b64:" +# 3. Base64 encoded certificate - "b64:" +# Applicable to 'root_ca', 'cert_file' and 'key_file' configurations. + +# root certificate file +root_ca = "/etc/aerospike/certs/pki-ca.crt" + +# certificate file +cert_file = "/etc/aerospike/certs/exporter-client.crt" + +# key file +key_file = "/etc/aerospike/certs/exporter-client.key" + +# Passphrase for encrypted key_file. Supports below formats, +# 1. Passphrase directly - "" +# 2. Passphrase via file - "file:" +# 3. Passphrase via environment variable - "env:" +# 4. Passphrase via environment variable containing base64 encoded passphrase - "env-b64:" +# 5. Passphrase in base64 encoded form - "b64:" +key_file_passphrase = "" + +# node TLS name for authentication +node_tls_name = "exporter" + +# Aerospike cluster security credentials. +# Supports below formats, +# 1. Credential directly - "" +# 2. Credential via file - "file:" +# 3. Credential via environment variable - "env:" +# 4. Credential via environment variable containing base64 encoded credential - "env-b64:" +# 5. Credential in base64 encoded form - "b64:" +# Applicable to 'user' and 'password' configurations. + +# database user +user = "" + +# database password +password = "" + +# authentication mode: internal (server authentication) [default], external (e.g., LDAP), pki. +auth_mode = "pki" + +# timeout for sending commands to the server node in seconds +timeout = 5 + +# Number of histogram buckets to export for latency metrics. Bucket thresholds range from 2^0 to 2^16 (17 buckets). +# e.g. latency_buckets_count=5 will export first five buckets i.e. <=1ms, <=2ms, <=4ms, <=8ms and <=16ms. +# Default: 0 (export all threshold buckets). +latency_buckets_count = 0 + +# Order of context - namespace, set, latencies, node-stats, xdr, user, jobs, sindex + +# Metrics Allowlist - If specified, only these metrics will be scraped. An empty list will exclude all metrics. +# Commenting out the below allowlist configs will disable metrics filtering (i.e. all metrics will be scraped). + +# Metrics Blocklist - If specified, these metrics will be NOT be scraped. An empty list will include all metrics. +# Commenting out the below blocklist configs will disable metrics filtering (i.e. no metrics will be blocked/filtered). + +# globbing pattern (wildcard) are allowd for allowlist and blocklist +# for example "batch_index_*_buffers" + +# Namespace metrics allowlist, to control which Namespace metrics should be collected. +# namespace_metrics_allowlist = [] +# namespace_metrics_blocklist = [] + +# set_metrics_allowlist = [] +# set_metrics_blocklist = [] + +# Latencies histogram allowlist, to control which Histogram-name metrics should be collected. +# Note: globbing patterns (wildcard) are not supported for this latency metric configuration. +# latencies_metrics_allowlist = [] +# latencies_metrics_blocklist = [] + +# node_metrics_allowlist = [] +# node_metrics_blocklist = [] + +# Support only from Aerospike versions 5.0 and above +# xdr_metrics_allowlist = [] +# xdr_metrics_blocklist = [] + +# User statistics are available in Aerospike 5.6+ +# Note globbing patterns (wildcard) are not supported for this User configuration. +# user_metrics_users_allowlist = [] +# user_metrics_users_blocklist = [] + +# job_metrics_allowlist = [] +# job_metrics_blocklist = [] + +# sindex_metrics_allowlist = [] +# sindex_metrics_blocklist = [] + diff --git a/internal/pkg/statprocessors/tests/tests_data/watcher_mock_results.txt b/internal/pkg/statprocessors/tests/tests_data/watcher_mock_results.txt index cdba74e0..f862a0b5 100644 --- a/internal/pkg/statprocessors/tests/tests_data/watcher_mock_results.txt +++ b/internal/pkg/statprocessors/tests/tests_data/watcher_mock_results.txt @@ -21,1923 +21,1922 @@ sindex-passtwokeys:[sindex/test/test_sindex1 sindex/test/7x_sindex_1 sindex/bar/ =============================================================================================================================================== ## Namespace =============================================================================================================================================== -statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, Value:599751, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, Value:600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, Value:30, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, Value:1.15108928e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, Value:3.3045319e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, Value:36114, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.9528384e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, Value:500, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.94858304e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, Value:1.798577e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.9556112e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.95060464e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.data-size", MType:0x47, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, Value:60, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.94993824e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, Value:1.798577e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.94781904e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, Value:1.798577e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, Value:3.3554432e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, Value:36, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, Value:84966, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:1.937893e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.95180192e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, Value:1.9499816e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:1.560717808e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, Value:99, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cold-start-empty", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.serialize-tomb-raider", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.read-page-cache", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.write-block-size", MType:0x47, IsAllowed:true, Value:8.388608e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.sindex-startup-device-scan", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_used_bytes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cache-replica-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_age", MType:0x43, IsAllowed:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_free_wblocks", MType:0x43, IsAllowed:true, Value:511, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"cache_read_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_write_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.post-write-queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_write_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_used_bytes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, Value:99, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_free_wblocks", MType:0x43, IsAllowed:true, Value:511, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, Value:3, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_age", MType:0x43, IsAllowed:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-type.mounts-budget", MType:0x47, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-type.evict-mounts-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index-type_mount_age", MType:0x47, IsAllowed:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "mount_index", "mount", "index"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash_index", "flash"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.read-page-cache", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-type_mount_age", MType:0x47, IsAllowed:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "mount_index", "mount", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash_sindex", "flash"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_writes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_reads", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.sindex-startup-device-scan", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.serialize-tomb-raider", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.post-write-queue", MType:0x47, IsAllowed:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.write-block-size", MType:0x47, IsAllowed:true, Value:1.048576e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_mounts_used_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_used_bytes", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index_flash_alloc_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_write_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index-type.evict-mounts-pct", MType:0x47, IsAllowed:true, Value:30, Labels:[]string{"cluster_name", "service", "ns", "index"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_q", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"cache_read_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_age", MType:0x43, IsAllowed:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cold-start-empty", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_free_wblocks", MType:0x43, IsAllowed:true, Value:4088, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, Value:99, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cache-replica-writes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index_flash_alloc_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index-type.mounts-budget", MType:0x47, IsAllowed:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "index"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"index_mounts_used_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} -statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} - +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.94993824e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:30, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.15108928e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.9556112e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:500, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.94781904e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.9528384e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.94858304e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:1.798577e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:36114, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:599751, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:3.3554432e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:36, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.798577e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.798577e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.560717808e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.9499816e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1", "stripe-1.0xad001001", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.95180192e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, IsConfig:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "5", "stripe-5.0xad001005", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:84966, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:60, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:39, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "6", "stripe-6.0xad001006", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, IsConfig:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2", "stripe-2.0xad001002", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.data-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:23, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "0", "stripe-0.0xad001000", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "3", "stripe-3.0xad001003", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:1.937893e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, IsConfig:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:3.3045319e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:1.95060464e+08, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4", "stripe-4.0xad001004", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_stripe_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "stripe_index", "stripe", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7", "stripe-7.0xad001007", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "memory"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, IsConfig:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cache-replica-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"cache_read_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, IsConfig:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cold-start-empty", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.read-page-cache", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:511, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_age", MType:0x43, IsAllowed:true, IsConfig:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, IsConfig:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, IsConfig:false, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.sindex-startup-device-scan", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.serialize-tomb-raider", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.write-block-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:8.388608e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:99, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.post-write-queue", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_write_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "0", "/opt/aerospike/data/bar.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, IsConfig:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:511, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:99, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_write_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, IsConfig:false, Value:3, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, IsConfig:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, IsConfig:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, IsConfig:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_age", MType:0x43, IsAllowed:true, IsConfig:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "0", "/opt/aerospike/data/bar_pmem.dat", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, IsConfig:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar_pmem", "pmem"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"clock_skew_stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index_mounts_used_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dead_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nodes_quiesced", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_ask", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-hist-buckets", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_bin_cemeteries", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_duration", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"deleted_last_bin", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-write", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index-type_mount_age", MType:0x47, IsAllowed:true, IsConfig:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "mount_index", "mount", "index"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash_index", "flash"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-eligible-age", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_write_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ignore-migrate-fill-delay", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-hist-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:3600, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.commit-to-device", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_avail_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:99, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_generation", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.level-mod", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_ttl", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_imbalance", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cold-start-empty", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"single-query-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.serialize-tomb-raider", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_mounts_used_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-acceleration", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.enable-benchmarks-storage", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"hwm_breached", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"query_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_is_quiesced", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_reqs", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unreplicated_records", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_points", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_total_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"expired_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_retransmits", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_batch_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency-allow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"current_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:4.37564269e+08, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_prefer_uniform_balance", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pending_quiesce", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"strong-consistency", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-bin-tombstone-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-write-dup-res", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-expunge", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-batch-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.min-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"master_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.disable-odsync", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prole_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"unavailable_partitions", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup_cycle_deleted_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index_flash_alloc_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_rx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"inline-short-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.strict", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index-type.mounts-budget", MType:0x47, IsAllowed:true, IsConfig:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "index"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.read-page-cache", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_age", MType:0x43, IsAllowed:true, IsConfig:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_lead_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"replication-factor", MType:0x47, IsAllowed:true, IsConfig:true, Value:2, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-lwm-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:50, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"record_proto_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_delete_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_read_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"rack-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-queue-min", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-type_mount_age", MType:0x47, IsAllowed:true, IsConfig:true, Value:-1, Labels:[]string{"cluster_name", "service", "ns", "mount_index", "mount", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash_sindex", "flash"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"cache_read_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_replica_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-avail-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_transmitted", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_client_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_records_exonerated", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-cells", MType:0x47, IsAllowed:true, IsConfig:true, Value:12, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"effective_replication_factor", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_proxy_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-hist-proxy", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.flush-max-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"non_expirable_objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"allow-ttl-without-nsup", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"transaction-pending-limit", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.max-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:20, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index-type.evict-mounts-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:30, Labels:[]string{"cluster_name", "service", "ns", "index"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr_from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index-stage-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.073741824e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.post-write-queue", MType:0x47, IsAllowed:true, IsConfig:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.tomb-raider-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.direct-files", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex_gc_cleaned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_q", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"conflict-resolve-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_write_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.max-write-cache", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.7108864e+07, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_instances", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evicted_objects", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"index_flash_alloc_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_udf_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_aggr_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.stop-writes-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:70, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_used_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_free_wblocks", MType:0x43, IsAllowed:true, IsConfig:true, Value:4088, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_write_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_key_busy", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-retransmit-ms", MType:0x47, IsAllowed:true, IsConfig:true, Value:5000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"data_compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_record_receives", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-order", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"appeals_tx_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_udf_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disable-cold-start-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.write-block-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1.048576e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"nsup-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"set_index_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"re_repl_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"partition-tree-sprigs", MType:0x47, IsAllowed:true, IsConfig:true, Value:256, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop_writes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_cells", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"smd_evict_void_time", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_defrag_reads", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_tx_partitions_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_udf_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_repl_write", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"background-query-max-rps", MType:0x47, IsAllowed:true, IsConfig:true, Value:10000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.filesize", MType:0x43, IsAllowed:true, IsConfig:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ns_cluster_size", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_lang_read_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_ops_sub_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"stop-writes-sys-memory-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:90, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo2dsphere-within.earth-radius-meters", MType:0x47, IsAllowed:true, IsConfig:true, Value:6.371e+06, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.sindex-startup-device-scan", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_remaining", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-ops-sub", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.compression-level", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_rx_partitions_initial", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_udf_bg_abort", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_xdr_forbidden", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_client_lost_conflict", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"prefer-uniform-balance", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"reject-non-xdr-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_delete_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.cache-replica-writes", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_signals_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_tsvc_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_read_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_long_basic_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_udf_bg_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"fail_record_too_big", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:86400, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xmem_id", MType:0x43, IsAllowed:true, IsConfig:false, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_delete_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_delete_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_used_bytes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"migrate_records_skipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_batch_sub_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_tsvc_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"si_query_ops_bg_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"geo_region_query_falsepos", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-read", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_read_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"dup_res_respond_no_read", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"pi_query_short_basic_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"enable-benchmarks-udf", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"xdr-tomb-raider-period", MType:0x47, IsAllowed:true, IsConfig:true, Value:120, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-type.mounts-budget", MType:0x47, IsAllowed:true, IsConfig:true, Value:4.294967296e+09, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.evict-used-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine_file_writes", MType:0x43, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "file_index", "file", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "0", "/opt/aerospike/data/emp_flash.dat", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_delete_not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"client_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"from_proxy_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"udf_sub_lang_write_success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"retransmit_all_udf_dup_res", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"force-long-queries", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"sindex-type.evict-mounts-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "flash"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-sleep", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"batch_sub_udf_filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"ops_sub_write_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"disallow-null-setname", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"evict-tenths-pct", MType:0x47, IsAllowed:true, IsConfig:true, Value:5, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"max-record-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"truncate-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:4, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} +statprocessors.AerospikeStat{Context:"namespace", Name:"storage-engine.defrag-startup-minimum", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "storage_engine"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "employees_flash", "device"}} =============================================================================================================================================== ## Node Stats =============================================================================================================================================== -statprocessors.AerospikeStat{Context:"node_stats", Name:"batch-index-threads", MType:0x47, IsAllowed:true, Value:10, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"batch-max-unused-buffers", MType:0x47, IsAllowed:true, Value:256, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"enable-health-check", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"enforce-best-practices", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"debug-allocations", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"enable-benchmarks-fabric", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"enable-hist-info", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"advertise-ipv6", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"batch-max-buffers-per-queue", MType:0x47, IsAllowed:true, Value:255, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"disable-udf-execution", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"system_total_cpu_pct", MType:0x47, IsAllowed:true, Value:739, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_joinable", MType:0x47, IsAllowed:true, Value:11, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_mapped_kbytes", MType:0x47, IsAllowed:true, Value:1.473536e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"proxy_in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"fabric_connections_opened", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"long_queries_active", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_clock_skew_stop_writes_sec", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_efficiency_pct", MType:0x47, IsAllowed:true, Value:95, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"rw_in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_connections_opened", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_clock_skew_ms", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"fabric_connections", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"failed_best_practices", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_generation", MType:0x43, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"system_free_mem_pct", MType:0x47, IsAllowed:true, Value:9, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_pool_total", MType:0x47, IsAllowed:true, Value:79, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"client_connections_closed", MType:0x43, IsAllowed:true, Value:7694, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_batch_sub_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"objects", MType:0x47, IsAllowed:true, Value:1.798577e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"fabric_connections_closed", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"info_timeout", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_connections_closed", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_received_foreign", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_client_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_integrity", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"system_kernel_cpu_pct", MType:0x47, IsAllowed:true, Value:272, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_size", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_max_compatibility_id", MType:0x47, IsAllowed:true, Value:11, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_active_kbytes", MType:0x47, IsAllowed:true, Value:1.359456e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"info_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"info_complete", MType:0x43, IsAllowed:true, Value:1198, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_ops_sub_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"batch_index_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_site_count", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_received_self", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_is_member", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"system_user_cpu_pct", MType:0x47, IsAllowed:true, Value:467, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_from_proxy_batch_sub_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_udf_sub_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_pool_active", MType:0x47, IsAllowed:true, Value:79, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_from_proxy_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_min_compatibility_id", MType:0x47, IsAllowed:true, Value:11, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"process_cpu_pct", MType:0x47, IsAllowed:true, Value:322, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_allocated_kbytes", MType:0x47, IsAllowed:true, Value:1.288914e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"client_connections", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_connections", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"uptime", MType:0x43, IsAllowed:true, Value:971, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"system_thp_mem_kbytes", MType:0x43, IsAllowed:true, Value:2.230272e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"reaped_fds", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"system_free_mem_kbytes", MType:0x43, IsAllowed:true, Value:1.166076e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_detached", MType:0x47, IsAllowed:true, Value:105, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"tree_gc_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"client_connections_opened", MType:0x43, IsAllowed:true, Value:7695, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"demarshal_error", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} -statprocessors.AerospikeStat{Context:"node_stats", Name:"batch_index_initiate", MType:0x43, IsAllowed:true, Value:646887, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"enable-hist-info", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"enforce-best-practices", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"batch-max-buffers-per-queue", MType:0x47, IsAllowed:true, IsConfig:true, Value:255, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"batch-max-unused-buffers", MType:0x47, IsAllowed:true, IsConfig:true, Value:256, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"enable-benchmarks-fabric", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"advertise-ipv6", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"batch-index-threads", MType:0x47, IsAllowed:true, IsConfig:true, Value:10, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"debug-allocations", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"disable-udf-execution", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"enable-health-check", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_size", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_efficiency_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:95, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"fabric_connections", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"fabric_connections_closed", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"tree_gc_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"client_connections_closed", MType:0x43, IsAllowed:true, IsConfig:false, Value:7694, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_max_compatibility_id", MType:0x47, IsAllowed:true, IsConfig:false, Value:11, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_clock_skew_ms", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_from_proxy_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_is_member", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"rw_in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"client_connections_opened", MType:0x43, IsAllowed:true, IsConfig:false, Value:7695, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_batch_sub_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"long_queries_active", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_from_proxy_batch_sub_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"demarshal_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"failed_best_practices", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"process_cpu_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:322, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_joinable", MType:0x47, IsAllowed:true, IsConfig:false, Value:11, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_active_kbytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.359456e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"info_timeout", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_udf_sub_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_integrity", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_pool_total", MType:0x47, IsAllowed:true, IsConfig:false, Value:79, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"info_complete", MType:0x43, IsAllowed:true, IsConfig:false, Value:1198, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_client_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"batch_index_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"uptime", MType:0x43, IsAllowed:true, IsConfig:false, Value:971, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"system_total_cpu_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:739, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_mapped_kbytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.473536e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_received_foreign", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"reaped_fds", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"system_free_mem_kbytes", MType:0x43, IsAllowed:true, IsConfig:false, Value:1.166076e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"system_free_mem_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:9, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_connections", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_min_compatibility_id", MType:0x47, IsAllowed:true, IsConfig:false, Value:11, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"system_user_cpu_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:467, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_connections_closed", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"system_kernel_cpu_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:272, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"system_thp_mem_kbytes", MType:0x43, IsAllowed:true, IsConfig:false, Value:2.230272e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_detached", MType:0x47, IsAllowed:true, IsConfig:false, Value:105, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"threads_pool_active", MType:0x47, IsAllowed:true, IsConfig:false, Value:79, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"proxy_in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_generation", MType:0x43, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_allocated_kbytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.288914e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"info_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"client_connections", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"fabric_connections_opened", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"batch_index_initiate", MType:0x43, IsAllowed:true, IsConfig:false, Value:646887, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"cluster_clock_skew_stop_writes_sec", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heap_site_count", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.798577e+06, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_connections_opened", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"heartbeat_received_self", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} +statprocessors.AerospikeStat{Context:"node_stats", Name:"early_tsvc_ops_sub_error", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000"}} =============================================================================================================================================== ## Xdr =============================================================================================================================================== -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"nodes", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:35380, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:4096, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:934, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lap_us", MType:0x47, IsAllowed:true, Value:4979, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"latency_ms", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:1.763197e+06, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:3.7922227e+07, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:35380, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:4096, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:934, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:3.7922227e+07, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:1.763197e+06, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:552, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:206939, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"latency_ms", MType:0x47, IsAllowed:true, Value:20, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:4096, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"nodes", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lap_us", MType:0x47, IsAllowed:true, Value:9505, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:38723, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:1.552915e+06, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:2.363624e+06, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:3.492030107e+09, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:4096, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:1.552915e+06, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:3.492030107e+09, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:38723, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:206939, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:2.363624e+06, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:552, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} -statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.763197e+06, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:4096, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:934, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lap_us", MType:0x47, IsAllowed:true, IsConfig:false, Value:4979, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:35380, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:3.7922227e+07, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"nodes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"latency_ms", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.763197e+06, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:3.7922227e+07, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:4096, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:934, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:35380, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "172.17.0.8:8901", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:552, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"nodes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:206939, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:1.552915e+06, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:4096, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:38723, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:3.492030107e+09, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lap_us", MType:0x47, IsAllowed:true, IsConfig:false, Value:9505, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:2.363624e+06, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"latency_ms", MType:0x47, IsAllowed:true, IsConfig:false, Value:20, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:1.552915e+06, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:552, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:4096, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:3.492030107e+09, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:206939, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:38723, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:2.363624e+06, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "test"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "bar_pmem"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_src-id", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"dc_trace-sample", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"bytes_shipped", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"compression_ratio", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"throughput", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"lag", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"not_found", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_no_node", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_conn_reset", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"retry_dest", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"hot_keys", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_queue", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"in_progress", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"success", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"abandoned", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"filtered_out", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"recoveries_pending", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} +statprocessors.AerospikeStat{Context:"xdr", Name:"uncompressed_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "dc", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "64_asia_sng_dr_1", "employees_flash"}} =============================================================================================================================================== ## Sets =============================================================================================================================================== -statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, Value:1.768645e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:1.5564076e+09, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, Value:9980, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:1.43712e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, Value:9971, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:1.435824e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} -statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:1.437264e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, Value:9981, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} -statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, Value:8e+07, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} -statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.5564076e+09, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.768645e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.43712e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:9980, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:9971, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.435824e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_2"}} +statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:9981, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.437264e+06, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_branch_set_3"}} +statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, IsConfig:true, Value:8e+07, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:1000, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"default-ttl", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"enable-index", MType:0x47, IsAllowed:true, IsConfig:true, Value:1, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-count", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"tombstones", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"sindexes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"objects", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"truncate_lut", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"index_populating", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"data_used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"disable-eviction", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} +statprocessors.AerospikeStat{Context:"sets", Name:"stop-writes-size", MType:0x47, IsAllowed:true, IsConfig:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "set"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "from_branch_1"}} =============================================================================================================================================== ## Sindex =============================================================================================================================================== -statprocessors.AerospikeStat{Context:"sindex", Name:"entries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"used_bytes", MType:0x47, IsAllowed:true, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_bval", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_rec", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"load_pct", MType:0x47, IsAllowed:true, Value:100, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"load_time", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"stat_gc_recs", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"load_time", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"stat_gc_recs", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries", MType:0x47, IsAllowed:true, Value:29932, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"used_bytes", MType:0x47, IsAllowed:true, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_bval", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_rec", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"load_pct", MType:0x47, IsAllowed:true, Value:100, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"used_bytes", MType:0x47, IsAllowed:true, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_bval", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_rec", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"load_pct", MType:0x47, IsAllowed:true, Value:100, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"load_time", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} -statprocessors.AerospikeStat{Context:"sindex", Name:"stat_gc_recs", MType:0x43, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"stat_gc_recs", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_bval", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_rec", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"load_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:100, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"load_time", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "test_sindex1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"load_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:100, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"load_time", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"stat_gc_recs", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries", MType:0x47, IsAllowed:true, IsConfig:false, Value:29932, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_bval", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_rec", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "7x_sindex_1"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"used_bytes", MType:0x47, IsAllowed:true, IsConfig:false, Value:1.6777216e+07, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_bval", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"entries_per_rec", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"load_pct", MType:0x47, IsAllowed:true, IsConfig:false, Value:100, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"load_time", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} +statprocessors.AerospikeStat{Context:"sindex", Name:"stat_gc_recs", MType:0x43, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "ns", "sindex"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "bar", "7x_sindex_bar_2"}} =============================================================================================================================================== ## Latencies =============================================================================================================================================== -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "+Inf"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_count", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"", "", "test"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1008.15281, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "1"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1010.6830600000001, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "2"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "4"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "8"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "16"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "32"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "64"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "128"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "256"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "512"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "1024"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "2048"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "4096"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "8192"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "16384"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "32768"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "65536"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "+Inf"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_count", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"", "", "test"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116291.86314, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "1"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116373.38157, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "2"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116419.96353, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "4"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116443.25451, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "8"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "16"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "32"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "64"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "128"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "256"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "512"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "1024"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "2048"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "4096"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "8192"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "16384"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "32768"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "65536"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "+Inf"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_count", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"", "", "test"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:-27321.100349999997, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "1"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "2"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "4"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "8"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "16"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "32"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "64"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "128"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "256"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "512"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "1024"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "2048"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "4096"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "8192"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "16384"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "32768"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "test", "65536"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "+Inf"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_count", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"", "", ""}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:3999.7488799999996, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "1"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "2"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "4"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "8"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "16"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "32"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "64"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "128"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "256"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "512"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "1024"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "2048"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "4096"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "8192"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "16384"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "32768"}} -statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"", "", "", "65536"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "+Inf"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_count", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1008.15281, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1010.6830600000001, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "8"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "16"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "32"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "64"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "128"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "256"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "512"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1024"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2048"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4096"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "8192"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "16384"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "32768"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:1012.1, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "65536"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "+Inf"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_count", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116291.86314, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116373.38157, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116419.96353, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116443.25451, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "8"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "16"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "32"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "64"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "128"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "256"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "512"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1024"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2048"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4096"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "8192"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "16384"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "32768"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"write_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:false, Value:116454.9, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "65536"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "+Inf"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_count", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:-27321.100349999997, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "8"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "16"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "32"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "64"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "128"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "256"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "512"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "1024"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "2048"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "4096"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "8192"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "16384"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "32768"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-sub-read_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3095.7, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test", "65536"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "+Inf"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_count", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", ""}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:3999.7488799999996, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "1"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "2"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "4"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "8"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "16"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "32"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "64"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "128"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "256"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "512"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "1024"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "2048"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "4096"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "8192"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "16384"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "32768"}} +statprocessors.AerospikeStat{Context:"latencies", Name:"batch-index_ms_bucket", MType:0x47, IsAllowed:true, IsConfig:true, Value:4014.2, Labels:[]string{"cluster_name", "service", "ns", "le"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "", "65536"}} =============================================================================================================================================== ## Users =============================================================================================================================================== -statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, Value:1, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, Value:2, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, Value:3, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, Value:4, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, Value:11, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, Value:12, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, Value:13, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, Value:14, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} -statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, Value:6, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, Value:7, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, Value:8, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, Value:9, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, Value:16, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, Value:17, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, Value:18, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, Value:19, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} -statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} -statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:1, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:2, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:3, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:4, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:11, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:12, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:13, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:14, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "admin"}} +statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:6, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:7, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:8, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:9, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:16, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:17, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:18, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:19, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "test"}} +statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u1phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"conns_in_use", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"read_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_read_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_quota", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_single_record_tps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"write_scan_query_rps", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}} +statprocessors.AerospikeStat{Context:"users", Name:"limitless_write_scan_query", MType:0x47, IsAllowed:true, IsConfig:false, Value:0, Labels:[]string{"cluster_name", "service", "user"}, LabelValues:[]string{"70_aus_perth_1", "172.17.0.6:3000", "u2phani"}}