From 2ef41c050d2b8b1db4559119bf2082e9340eeee8 Mon Sep 17 00:00:00 2001 From: Eugenio Grosso Date: Fri, 28 Apr 2023 20:15:22 +0000 Subject: [PATCH 1/4] Added new NFS export rules info metric --- Makefile | 3 +- cmd/fb-om-exporter/main.go | 72 +- go.mod | 7 +- go.sum | 19 +- internal/config/auth_tokens.go | 17 + .../alerts_collector_test.go | 60 + .../arrays_collector_test.go | 46 + .../arrays_http_perf_collector_test.go | 55 + .../arrays_nfs_perf_collector_test.go | 93 + internal/openmetrics-exporter/collector.go | 4 + internal/openmetrics-exporter/common_tests.go | 48 + .../nfs_policies_collector.go | 52 + internal/rest-client/alerts.go | 5 +- internal/rest-client/alerts_test.go | 63 + internal/rest-client/arrays.go | 5 +- internal/rest-client/arrays_http_perf.go | 5 +- internal/rest-client/arrays_http_perf_test.go | 45 + internal/rest-client/arrays_nfs_perf.go | 5 +- internal/rest-client/arrays_nfs_perf_test.go | 45 + internal/rest-client/arrays_perf.go | 5 +- .../rest-client/arrays_perf_replication.go | 5 +- .../arrays_perf_replication_test.go | 48 + internal/rest-client/arrays_perf_test.go | 114 + internal/rest-client/arrays_s3_perf.go | 5 +- internal/rest-client/arrays_s3_perf_test.go | 45 + internal/rest-client/arrays_space.go | 5 +- internal/rest-client/arrays_space_test.go | 80 + internal/rest-client/arrays_test.go | 45 + internal/rest-client/blades.go | 5 +- internal/rest-client/blades_test.go | 45 + internal/rest-client/buckets.go | 40 +- internal/rest-client/buckets_perf.go | 5 +- internal/rest-client/buckets_perf_test.go | 53 + internal/rest-client/buckets_s3_perf.go | 5 +- internal/rest-client/buckets_s3_perf_test.go | 53 + internal/rest-client/buckets_test.go | 45 + internal/rest-client/clients_perf.go | 5 +- internal/rest-client/clients_perf_test.go | 45 + internal/rest-client/filesystems.go | 8 +- internal/rest-client/filesystems_perf.go | 7 +- internal/rest-client/filesystems_perf_test.go | 72 + internal/rest-client/filesystems_test.go | 44 + internal/rest-client/flashblade_client.go | 5 - .../rest-client/flashblade_client_test.go | 38 + internal/rest-client/hardware.go | 5 +- .../rest-client/hardware_connectors_perf.go | 5 +- .../hardware_connectors_perf_test.go | 45 + internal/rest-client/hardware_test.go | 45 + internal/rest-client/nfs_export_policies.go | 56 + .../rest-client/nfs_export_policies_test.go | 45 + internal/rest-client/usage.go | 10 +- test/data/alerts.json | 15329 ++++++++++++++++ test/data/alerts_open.json | 229 + test/data/array_s3performance.json | 21 + test/data/arrays.json | 38 + test/data/arrays_http_performance.json | 21 + test/data/arrays_nfs_performance.json | 59 + test/data/arrays_performance_replication.json | 29 + test/data/arrays_space.json | 20 + test/data/arrays_space_array.json | 20 + test/data/arrays_space_filesystem.json | 20 + test/data/arrays_space_object_store.json | 20 + test/data/blades.json | 150 + test/data/buckets.json | 3354 ++++ test/data/buckets_for_perf.json | 222 + test/data/buckets_performance.json | 104 + test/data/buckets_s3performance.json | 98 + test/data/clients_performance.json | 8183 +++++++++ test/data/filesystems.json | 14848 +++++++++++++++ test/data/filesystems_for_perf.json | 328 + test/data/filesystems_perf.json | 1 + test/data/hardware.json | 906 + test/data/hw_connectors_perf.json | 548 + test/data/nfs_export_policies.json | 157 + test/data/versions.json | 27 + 75 files changed, 46353 insertions(+), 66 deletions(-) create mode 100644 internal/config/auth_tokens.go create mode 100644 internal/openmetrics-exporter/alerts_collector_test.go create mode 100644 internal/openmetrics-exporter/arrays_collector_test.go create mode 100644 internal/openmetrics-exporter/arrays_http_perf_collector_test.go create mode 100644 internal/openmetrics-exporter/arrays_nfs_perf_collector_test.go create mode 100644 internal/openmetrics-exporter/common_tests.go create mode 100644 internal/openmetrics-exporter/nfs_policies_collector.go create mode 100644 internal/rest-client/alerts_test.go create mode 100644 internal/rest-client/arrays_http_perf_test.go create mode 100644 internal/rest-client/arrays_nfs_perf_test.go create mode 100644 internal/rest-client/arrays_perf_replication_test.go create mode 100644 internal/rest-client/arrays_perf_test.go create mode 100644 internal/rest-client/arrays_s3_perf_test.go create mode 100644 internal/rest-client/arrays_space_test.go create mode 100644 internal/rest-client/arrays_test.go create mode 100644 internal/rest-client/blades_test.go create mode 100644 internal/rest-client/buckets_perf_test.go create mode 100644 internal/rest-client/buckets_s3_perf_test.go create mode 100644 internal/rest-client/buckets_test.go create mode 100644 internal/rest-client/clients_perf_test.go create mode 100644 internal/rest-client/filesystems_perf_test.go create mode 100644 internal/rest-client/filesystems_test.go create mode 100644 internal/rest-client/flashblade_client_test.go create mode 100644 internal/rest-client/hardware_connectors_perf_test.go create mode 100644 internal/rest-client/hardware_test.go create mode 100644 internal/rest-client/nfs_export_policies.go create mode 100644 internal/rest-client/nfs_export_policies_test.go create mode 100644 test/data/alerts.json create mode 100644 test/data/alerts_open.json create mode 100644 test/data/array_s3performance.json create mode 100644 test/data/arrays.json create mode 100644 test/data/arrays_http_performance.json create mode 100644 test/data/arrays_nfs_performance.json create mode 100644 test/data/arrays_performance_replication.json create mode 100644 test/data/arrays_space.json create mode 100644 test/data/arrays_space_array.json create mode 100644 test/data/arrays_space_filesystem.json create mode 100644 test/data/arrays_space_object_store.json create mode 100644 test/data/blades.json create mode 100644 test/data/buckets.json create mode 100644 test/data/buckets_for_perf.json create mode 100644 test/data/buckets_performance.json create mode 100644 test/data/buckets_s3performance.json create mode 100644 test/data/clients_performance.json create mode 100644 test/data/filesystems.json create mode 100644 test/data/filesystems_for_perf.json create mode 100644 test/data/filesystems_perf.json create mode 100644 test/data/hardware.json create mode 100644 test/data/hw_connectors_perf.json create mode 100644 test/data/nfs_export_policies.json create mode 100644 test/data/versions.json diff --git a/Makefile b/Makefile index ab5f966..f67b77a 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,8 @@ GOCMD=go GOTEST=$(GOCMD) test GOVET=$(GOCMD) vet BINARY_NAME=pure-fb-om-exporter -VERSION?=1.0.2 +MODULE_NAME=purestorage/fb-openmetrics-exporter +VERSION?=1.0.3 SERVICE_PORT?=9491 DOCKER_REGISTRY?= quay.io/purestorage/ EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true diff --git a/cmd/fb-om-exporter/main.go b/cmd/fb-om-exporter/main.go index f266cf1..6d04775 100644 --- a/cmd/fb-om-exporter/main.go +++ b/cmd/fb-om-exporter/main.go @@ -2,30 +2,67 @@ package main import ( "context" - "flag" "fmt" + "io" "log" "net/http" + "os" + config "purestorage/fb-openmetrics-exporter/internal/config" collectors "purestorage/fb-openmetrics-exporter/internal/openmetrics-exporter" client "purestorage/fb-openmetrics-exporter/internal/rest-client" "strings" + "github.com/akamensky/argparse" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promhttp" + "gopkg.in/yaml.v3" ) var version string = "development" var debug bool = false +var arraytokens config.FlashBladeList + +func FileExists(args []string) error { + _, err := os.Stat(args[0]) + return err +} func main() { - host := flag.String("host", "0.0.0.0", "Address of the exporter") - port := flag.Int("port", 9491, "Port of the exporter") - d := flag.Bool("debug", false, "Debug") - flag.Parse() - addr := fmt.Sprintf("%s:%d", *host, *port) - debug = *d - log.Printf("Start Pure Storage FlashBlade exporter %s on %s", version, addr) + parser := argparse.NewParser("pure-fb-om-exporter", "Pure Storage FB OpenMetrics exporter") + host := parser.String("a", "address", &argparse.Options{Required: false, Help: "IP address for this exporter to bind to", Default: "0.0.0.0"}) + port := parser.Int("p", "port", &argparse.Options{Required: false, Help: "Port for this exporter to listen", Default: 9491}) + d := parser.Flag("d", "debug", &argparse.Options{Required: false, Help: "Enable debug", Default: false}) + at := parser.File("t", "tokens", os.O_RDONLY, 0600, &argparse.Options{Required: false, Validate: FileExists, Help: "API token(s) map file"}) + err := parser.Parse(os.Args) + if err != nil { + log.Fatalf("Error in token file: %v", err) + } + if !isNilFile(*at) { + defer at.Close() + buf := make([]byte, 1024) + arrlist := "" + for { + n, err := at.Read(buf) + if err == io.EOF { + break + } + if err != nil { + log.Fatalf("Reading token file: %v", err) + } + if n > 0 { + arrlist = arrlist + string(buf[:n]) + } + } + buf = []byte(arrlist) + err := yaml.Unmarshal(buf, &arraytokens) + if err != nil { + log.Fatalf("Unmarshalling token file: %v", err) + } + } + debug = *d + addr := fmt.Sprintf("%s:%d", *host, *port) + log.Printf("Start Pure FlashBlade exporter %s on %s", version, addr) http.HandleFunc("/", index) http.HandleFunc("/metrics/array", func(w http.ResponseWriter, r *http.Request) { @@ -37,6 +74,9 @@ func main() { http.HandleFunc("/metrics/usage", func(w http.ResponseWriter, r *http.Request) { metricsHandler(w, r) }) + http.HandleFunc("/metrics/policies", func(w http.ResponseWriter, r *http.Request) { + metricsHandler(w, r) + }) http.HandleFunc("/metrics", func(w http.ResponseWriter, r *http.Request) { metricsHandler(w, r) }) @@ -55,6 +95,7 @@ func metricsHandler(w http.ResponseWriter, r *http.Request) { case "clients": case "array": case "usage": + case "policies": default: metrics = "all" } @@ -70,14 +111,18 @@ func metricsHandler(w http.ResponseWriter, r *http.Request) { } authHeader := r.Header.Get("Authorization") authFields := strings.Fields(authHeader) - if len(authFields) != 2 || strings.ToLower(authFields[0]) != "bearer" { + address, apitoken := arraytokens.GetArrayParams(endpoint) + if len(authFields) == 2 && strings.ToLower(authFields[0]) == "bearer" { + apitoken = authFields[1] + address = endpoint + } + if apitoken == "" { http.Error(w, "Target authorization token is missing", http.StatusBadRequest) return } - apitoken := authFields[1] registry := prometheus.NewRegistry() - fbclient := client.NewRestClient(endpoint, apitoken, apiver, debug) + fbclient := client.NewRestClient(address, apitoken, apiver, debug) if fbclient.Error != nil { http.Error(w, "Error connecting to FlashBlade. Check your management endpoint and/or api token are correct.", http.StatusBadRequest) return @@ -134,3 +179,8 @@ func index(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "%s", msg) } + +func isNilFile(f os.File) bool { + var tf os.File + return f == tf +} diff --git a/go.mod b/go.mod index e05aefb..9c0466e 100644 --- a/go.mod +++ b/go.mod @@ -3,18 +3,23 @@ module purestorage/fb-openmetrics-exporter go 1.20 require ( + github.com/akamensky/argparse v1.4.0 github.com/go-resty/resty/v2 v2.7.0 - github.com/prometheus/client_golang v1.14.0 + github.com/google/go-cmp v0.5.9 + github.com/prometheus/client_golang v1.15.0 + gopkg.in/yaml.v3 v3.0.1 ) require ( github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/golang/protobuf v1.5.3 // indirect + github.com/kr/text v0.2.0 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/prometheus/client_model v0.3.0 // indirect github.com/prometheus/common v0.42.0 // indirect github.com/prometheus/procfs v0.9.0 // indirect + github.com/rogpeppe/go-internal v1.10.0 // indirect golang.org/x/net v0.8.0 // indirect golang.org/x/sys v0.6.0 // indirect google.golang.org/protobuf v1.30.0 // indirect diff --git a/go.sum b/go.sum index 4978f9c..26e7550 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,10 @@ +github.com/akamensky/argparse v1.4.0 h1:YGzvsTqCvbEZhL8zZu2AiA5nq805NZh75JNj4ajn1xc= +github.com/akamensky/argparse v1.4.0/go.mod h1:S5kwC7IuDcEr5VeXtGPRVZ5o/FdhcMlQz4IZQuw64xA= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/go-resty/resty/v2 v2.7.0 h1:me+K9p3uhSmXtrBZ4k9jcEAfJmuC8IivWHwaLZwPrFY= github.com/go-resty/resty/v2 v2.7.0/go.mod h1:9PWDzw47qPphMRFfhsyk0NnSgvluHcljSMVIq3w7q0I= @@ -12,17 +15,25 @@ github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/prometheus/client_golang v1.14.0 h1:nJdhIvne2eSX/XRAFV9PcvFFRbrjbcTUj0VP62TMhnw= -github.com/prometheus/client_golang v1.14.0/go.mod h1:8vpkKitgIVNcqrRBWh1C4TIUQgYNtG/XQE4E/Zae36Y= +github.com/prometheus/client_golang v1.15.0 h1:5fCgGYogn0hFdhyhLbw7hEsWxufKtY9klyvdNfFlFhM= +github.com/prometheus/client_golang v1.15.0/go.mod h1:e9yaBhRPU2pPNsZwE+JdQl0KEt1N9XgF6zxWmaC0xOk= github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI= github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= +github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= golang.org/x/net v0.0.0-20211029224645-99673261e6eb/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g= +golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -38,3 +49,7 @@ google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp0 google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/internal/config/auth_tokens.go b/internal/config/auth_tokens.go new file mode 100644 index 0000000..91299f9 --- /dev/null +++ b/internal/config/auth_tokens.go @@ -0,0 +1,17 @@ +package config + +type FlashBlade struct { + Address string `yaml:"address"` + ApiToken string `yaml:"api_token"` +} + +type FlashBladeList map[string]FlashBlade + +func (f *FlashBladeList) GetArrayParams(fb string) (string, string) { + for a_name, a := range *f { + if a_name == fb { + return a.Address, a.ApiToken + } + } + return "", "" +} diff --git a/internal/openmetrics-exporter/alerts_collector_test.go b/internal/openmetrics-exporter/alerts_collector_test.go new file mode 100644 index 0000000..be3b25b --- /dev/null +++ b/internal/openmetrics-exporter/alerts_collector_test.go @@ -0,0 +1,60 @@ +package collectors + + +import ( + "fmt" + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "purestorage/fb-openmetrics-exporter/internal/rest-client" +) + +func TestAlertsCollector(t *testing.T) { + + ropen, _ := os.ReadFile("../../test/data/alerts_open.json") + rall, _ := os.ReadFile("../../test/data/alerts.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var aopen client.AlertsList + var aall client.AlertsList + json.Unmarshal(ropen, &aopen) + json.Unmarshal(rall, &aall) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + urlall := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/alerts$`) + urlopen := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/alerts\?filter=state%3D%27open%27$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if urlopen.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(ropen)) + } else if urlall.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(rall)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + al := make(map[string]float64) + for _, a := range aopen.Items { + al[fmt.Sprintf("%s,%s,%s", a.ComponentName, a.ComponentType, a.Severity)] += 1 + } + want := make(map[string]bool) + for a, n := range al { + alert := strings.Split(a, ",") + want[fmt.Sprintf("label: label: label: gauge: ", alert[0], alert[1], alert[2], n)] = true + } + c := client.NewRestClient(e, "fake-api-token", "latest", false) + ac := NewAlertsCollector(c) + metricsCheck(t, ac, want) + server.Close() +} diff --git a/internal/openmetrics-exporter/arrays_collector_test.go b/internal/openmetrics-exporter/arrays_collector_test.go new file mode 100644 index 0000000..d61efbb --- /dev/null +++ b/internal/openmetrics-exporter/arrays_collector_test.go @@ -0,0 +1,46 @@ +package collectors + + +import ( + "fmt" + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "purestorage/fb-openmetrics-exporter/internal/rest-client" +) + +func TestArraysCollector(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arrs client.ArraysList + json.Unmarshal(res, &arrs) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + want := make(map[string]bool) + c := client.NewRestClient(e, "fake-api-token", "latest", false) + for _, a := range arrs.Items { + want[fmt.Sprintf("label: label: label: label: gauge: ", a.Name, a.Os, a.Id, a.Version)] = true + } + ac := NewArraysCollector(c) + metricsCheck(t, ac, want) + server.Close() +} diff --git a/internal/openmetrics-exporter/arrays_http_perf_collector_test.go b/internal/openmetrics-exporter/arrays_http_perf_collector_test.go new file mode 100644 index 0000000..684bf7a --- /dev/null +++ b/internal/openmetrics-exporter/arrays_http_perf_collector_test.go @@ -0,0 +1,55 @@ +package collectors + + +import ( + "fmt" + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "purestorage/fb-openmetrics-exporter/internal/rest-client" +) + +func TestArraysHttpPerfCollector(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays_http_performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arrs client.ArraysHttpPerformanceList + json.Unmarshal(res, &arrs) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/http-specific-performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + want := make(map[string]bool) + c := client.NewRestClient(e, "fake-api-token", "latest", false) + for _, p := range arrs.Items { + want[fmt.Sprintf("label: gauge: ", p.OthersPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.ReadDirsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.ReadFilesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.WriteFilesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerOtherOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerReadDirOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerWriteDirOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerWriteFileOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerReadFileOp)] = true + want[fmt.Sprintf("label: gauge: ", p.WriteDirsPerSec)] = true + } + ac := NewHttpPerfCollector(c) + metricsCheck(t, ac, want) + server.Close() +} diff --git a/internal/openmetrics-exporter/arrays_nfs_perf_collector_test.go b/internal/openmetrics-exporter/arrays_nfs_perf_collector_test.go new file mode 100644 index 0000000..85efa51 --- /dev/null +++ b/internal/openmetrics-exporter/arrays_nfs_perf_collector_test.go @@ -0,0 +1,93 @@ +package collectors + + +import ( + "fmt" + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "purestorage/fb-openmetrics-exporter/internal/rest-client" +) + +func TestArraysNfsPerfCollector(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays_http_performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arrs client.ArraysNfsPerformanceList + json.Unmarshal(res, &arrs) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/nfs-specific-performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + want := make(map[string]bool) + c := client.NewRestClient(e, "fake-api-token", "latest", false) + for _, p := range arrs.Items { + want[fmt.Sprintf("label: gauge: ", p.FsinfosPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.FsstatsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.MkdirsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.RenamesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.SetattrsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerLinkOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerMkdirOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateShareMetadataReadsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.LinksPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.ReaddirsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.RmdirsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerFsstatOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerReaddirplusOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerRemoveOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerRenameOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateFileMetadataReadsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.LookupsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.RemovesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateUsecPerFileMetadataCreateOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateUsecPerOtherOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerAccessOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerLookupOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerSymlinkOp)] = true + want[fmt.Sprintf("label: gauge: ", p.GetattrsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.ReaddirplusesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.WritesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerWriteOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AccessesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.CreatesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.PathconfsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerRmdirOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateFileMetadataModifiesPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.SymlinksPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerFsinfoOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerGetattrOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerReadlinkOp)] = true + want[fmt.Sprintf("label: gauge: ", p.ReadsPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerCreateOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerPathconfOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerReadOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateUsecPerShareMetadataReadOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateOtherPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.ReadlinksPerSec)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateUsecPerFileMetadataModifyOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateUsecPerFileMetadataReadOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerReaddirOp)] = true + want[fmt.Sprintf("label: gauge: ", p.UsecPerSetattrOp)] = true + want[fmt.Sprintf("label: gauge: ", p.AggregateFileMetadataCreatesPerSec)] = true + } + ac := NewNfsPerfCollector(c) + metricsCheck(t, ac, want) + server.Close() +} diff --git a/internal/openmetrics-exporter/collector.go b/internal/openmetrics-exporter/collector.go index cb6b290..e6169c6 100644 --- a/internal/openmetrics-exporter/collector.go +++ b/internal/openmetrics-exporter/collector.go @@ -56,5 +56,9 @@ func Collector(ctx context.Context, metrics string, registry *prometheus.Registr usageCollector := NewUsageCollector(fbclient, filesystems) registry.MustRegister(usageCollector) } + if metrics == "all" || metrics == "policies" { + policiesCollector := NewNfsPoliciesCollector(fbclient) + registry.MustRegister(policiesCollector) + } return true } diff --git a/internal/openmetrics-exporter/common_tests.go b/internal/openmetrics-exporter/common_tests.go new file mode 100644 index 0000000..2c5f13a --- /dev/null +++ b/internal/openmetrics-exporter/common_tests.go @@ -0,0 +1,48 @@ +package collectors + +import ( + "testing" + "fmt" + + "github.com/google/go-cmp/cmp" + "github.com/prometheus/client_golang/prometheus" + io_prometheus_client "github.com/prometheus/client_model/go" +) + +func metricsCheck(t *testing.T, c prometheus.Collector, want map[string]bool) { + chM := make(chan prometheus.Metric) + go func() { + c.Collect(chM) + close(chM) + }() + var buff io_prometheus_client.Metric + metrics := make(map[string]bool) + for m := range chM { + m.Write(&buff) + metrics[buff.String()] = true + } + if diff := cmp.Diff(want, metrics); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } +} + +func metricsCheckP(t *testing.T, c prometheus.Collector, want map[string]bool) { + chM := make(chan prometheus.Metric) + go func() { + c.Collect(chM) + close(chM) + }() + var buff io_prometheus_client.Metric + metrics := make(map[string]bool) + for m := range chM { + m.Write(&buff) + metrics[buff.String()] = true + } + for a := range metrics { + fmt.Println(a) + } + fmt.Println("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++") + for a := range want { + fmt.Println(a) + } +} diff --git a/internal/openmetrics-exporter/nfs_policies_collector.go b/internal/openmetrics-exporter/nfs_policies_collector.go new file mode 100644 index 0000000..adf6131 --- /dev/null +++ b/internal/openmetrics-exporter/nfs_policies_collector.go @@ -0,0 +1,52 @@ +package collectors + +import ( + "github.com/prometheus/client_golang/prometheus" + "purestorage/fb-openmetrics-exporter/internal/rest-client" + "strconv" +) + +type NfsPoliciesCollector struct { + NfsPolicyDesc *prometheus.Desc + Client *client.FBClient +} + +func (c *NfsPoliciesCollector) Describe(ch chan<- *prometheus.Desc) { + prometheus.DescribeByCollect(c, ch) +} + +func (c *NfsPoliciesCollector) Collect(ch chan<- prometheus.Metric) { + policies := c.Client.GetNFSExportPolicies() + if len(policies.Items) > 0 { + for _, pol := range policies.Items { + for _, r := range pol.Rules { + auid := strconv.Itoa(r.AnonUid) + agid := strconv.Itoa(r.AnonGid) + sec := strconv.FormatBool(r.Secure) + f32 := strconv.FormatBool(r.FileId32bit) + atime := strconv.FormatBool(r.Atime) + idx := strconv.Itoa(r.Index) + for _, s := range r.Security { + ch <- prometheus.MustNewConstMetric( + c.NfsPolicyDesc, + prometheus.GaugeValue, + 1.0, + pol.Name, r.Client, r.Permission, s, r.Access, auid, agid, sec, f32, atime, idx, + ) + } + } + } + } +} + +func NewNfsPoliciesCollector(fb *client.FBClient) *NfsPoliciesCollector { + return &NfsPoliciesCollector { + NfsPolicyDesc: prometheus.NewDesc( + "purefb_nfs_export_rule", + "FlashBlade NFS export rule", + []string{"policy", "client", "permission", "security", "access", "anon_uid", "anon_gid", "secure", "fid32", "atime", "index"}, + prometheus.Labels{}, + ), + Client: fb, + } +} diff --git a/internal/rest-client/alerts.go b/internal/rest-client/alerts.go index 6abfa7c..20a900c 100644 --- a/internal/rest-client/alerts.go +++ b/internal/rest-client/alerts.go @@ -32,15 +32,16 @@ type AlertsList struct { } func (fb *FBClient) GetAlerts(filter string) *AlertsList { + uri := "/alerts" result := new(AlertsList) req := fb.RestClient.R().SetResult(&result) if filter != "" { req = req.SetQueryParam("filter", filter) } - res, _ := req.Get("/alerts") + res, _ := req.Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() - _, _ = req.Get("/alerts") + _, _ = req.Get(uri) } return result } diff --git a/internal/rest-client/alerts_test.go b/internal/rest-client/alerts_test.go new file mode 100644 index 0000000..cc1d3c3 --- /dev/null +++ b/internal/rest-client/alerts_test.go @@ -0,0 +1,63 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestAlerts(t *testing.T) { + + ropen, _ := os.ReadFile("../../test/data/alerts_open.json") + rall, _ := os.ReadFile("../../test/data/alerts.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var aopen AlertsList + var aall AlertsList + json.Unmarshal(ropen, &aopen) + json.Unmarshal(rall, &aall) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + urlall := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/alerts$`) + urlopen := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/alerts\?filter=state%3D%27open%27$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if urlopen.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(ropen)) + } else if urlall.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(rall)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("alerts_open", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + al := c.GetAlerts("state='open'") + if diff := cmp.Diff(al.Items, aopen.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("alerts_all", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + al := c.GetAlerts("") + if diff := cmp.Diff(al.Items, aall.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + server.Close() +} diff --git a/internal/rest-client/arrays.go b/internal/rest-client/arrays.go index 2685738..30f43b3 100644 --- a/internal/rest-client/arrays.go +++ b/internal/rest-client/arrays.go @@ -20,15 +20,16 @@ type ArraysList struct { } func (fb *FBClient) GetArrays() *ArraysList { + uri := "/arrays" result := new(ArraysList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/arrays") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/arrays") + Get(uri) } return result } diff --git a/internal/rest-client/arrays_http_perf.go b/internal/rest-client/arrays_http_perf.go index b212c26..36e943c 100644 --- a/internal/rest-client/arrays_http_perf.go +++ b/internal/rest-client/arrays_http_perf.go @@ -23,15 +23,16 @@ type ArraysHttpPerformanceList struct { } func (fb *FBClient) GetArraysHttpPerformance() *ArraysHttpPerformanceList { + uri := "/arrays/http-specific-performance" result := new(ArraysHttpPerformanceList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/arrays/http-specific-performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/arrays/http-specific-performance") + Get(uri) } return result } diff --git a/internal/rest-client/arrays_http_perf_test.go b/internal/rest-client/arrays_http_perf_test.go new file mode 100644 index 0000000..5dcd971 --- /dev/null +++ b/internal/rest-client/arrays_http_perf_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestArraysHttpPerformance(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays_http_performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arrhp ArraysHttpPerformanceList + json.Unmarshal(res, &arrhp) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/http-specific-performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("arrays_http_performance_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + ahpl := c.GetArraysHttpPerformance() + if diff := cmp.Diff(ahpl.Items[0], arrhp.Items[0]); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/arrays_nfs_perf.go b/internal/rest-client/arrays_nfs_perf.go index 920e094..9b3f212 100644 --- a/internal/rest-client/arrays_nfs_perf.go +++ b/internal/rest-client/arrays_nfs_perf.go @@ -61,15 +61,16 @@ type ArraysNfsPerformanceList struct { } func (fb *FBClient) GetArraysNfsPerformance() *ArraysNfsPerformanceList { + uri := "/arrays/nfs-specific-performance" result := new(ArraysNfsPerformanceList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/arrays/nfs-specific-performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/arrays/nfs-specific-performance") + Get(uri) } return result } diff --git a/internal/rest-client/arrays_nfs_perf_test.go b/internal/rest-client/arrays_nfs_perf_test.go new file mode 100644 index 0000000..e14538a --- /dev/null +++ b/internal/rest-client/arrays_nfs_perf_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestArraysNfsPerformance(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays_nfs_performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arrsp ArraysNfsPerformanceList + json.Unmarshal(res, &arrsp) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/nfs-specific-performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("arrays_http_performance_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + apl := c.GetArraysNfsPerformance() + if diff := cmp.Diff(apl.Items[0], arrsp.Items[0]); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/arrays_perf.go b/internal/rest-client/arrays_perf.go index ad0b564..9c16ffa 100644 --- a/internal/rest-client/arrays_perf.go +++ b/internal/rest-client/arrays_perf.go @@ -7,19 +7,20 @@ type ArraysPerformanceList struct { } func (fb *FBClient) GetArraysPerformance(protocol string) *ArraysPerformanceList { + uri := "/arrays/performance" result := new(ArraysPerformanceList) switch protocol { case "all", "HTTP", "NFS", "SMB", "S3": res, _ := fb.RestClient.R(). SetResult(&result). SetQueryParam("protocol", protocol). - Get("/arrays/performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). SetQueryParam("protocol", protocol). - Get("/arrays/performance") + Get(uri) } } return result diff --git a/internal/rest-client/arrays_perf_replication.go b/internal/rest-client/arrays_perf_replication.go index e17ff7a..1e18904 100644 --- a/internal/rest-client/arrays_perf_replication.go +++ b/internal/rest-client/arrays_perf_replication.go @@ -26,15 +26,16 @@ type ArraysPerformanceReplicationList struct { } func (fb *FBClient) GetArraysPerformanceReplication() *ArraysPerformanceReplicationList { + uri := "/arrays/performance/replication" result := new(ArraysPerformanceReplicationList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/arrays/performance/replication") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/arrays/performance/replication") + Get(uri) } return result } diff --git a/internal/rest-client/arrays_perf_replication_test.go b/internal/rest-client/arrays_perf_replication_test.go new file mode 100644 index 0000000..4ecfb86 --- /dev/null +++ b/internal/rest-client/arrays_perf_replication_test.go @@ -0,0 +1,48 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + + +func TestArraysPerformanceReplication(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays_performance_replication.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arrpr ArraysPerformanceReplicationList + json.Unmarshal(res, &arrpr) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/performance/replication$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("array_performance_replication_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + aprl := c.GetArraysPerformanceReplication() + if diff := cmp.Diff(aprl.Items, arrpr.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + server.Close() +} diff --git a/internal/rest-client/arrays_perf_test.go b/internal/rest-client/arrays_perf_test.go new file mode 100644 index 0000000..2910cab --- /dev/null +++ b/internal/rest-client/arrays_perf_test.go @@ -0,0 +1,114 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestArraysPerformance(t *testing.T) { + + pall, _ := os.ReadFile("../../test/data/arrays_performance_all.json") + phttp, _ := os.ReadFile("../../test/data/arrays_performance_http.json") + pnfs, _ := os.ReadFile("../../test/data/arrays_performance_nfs.json") + psmb, _ := os.ReadFile("../../test/data/arrays_performance_smb.json") + ps3, _ := os.ReadFile("../../test/data/arrays_performance_s3.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var aall ArraysPerformanceList + var ahttp ArraysPerformanceList + var anfs ArraysPerformanceList + var asmb ArraysPerformanceList + var as3 ArraysPerformanceList + json.Unmarshal(pall, &aall) + json.Unmarshal(phttp, &ahttp) + json.Unmarshal(pnfs, &anfs) + json.Unmarshal(psmb, &asmb) + json.Unmarshal(ps3, &as3) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + urlall := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/performance\?protocol=all$`) + urlhttp := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/performance\?protocol=HTTP$`) + urlnfs := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/performance\?protocol=NFS$`) + urlsmb := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/performance\?protocol=SMB$`) + urls3 := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/performance\?protocol=S3$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if urlall.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(pall)) + } else if urlhttp.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(phttp)) + } else if urlnfs.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(pnfs)) + } else if urlsmb.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(psmb)) + } else if urls3.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(ps3)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("array_perf_all", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + pl := c.GetArraysPerformance("all") + if diff := cmp.Diff(pl.Items, aall.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("array_perf_http", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + pl := c.GetArraysPerformance("HTTP") + if diff := cmp.Diff(pl.Items, ahttp.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("array_perf_nfs", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + pl := c.GetArraysPerformance("NFS") + if diff := cmp.Diff(pl.Items, anfs.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("array_perf_smb", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + pl := c.GetArraysPerformance("SMB") + if diff := cmp.Diff(pl.Items, asmb.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("array_perf_s3", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + pl := c.GetArraysPerformance("S3") + if diff := cmp.Diff(pl.Items, as3.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + server.Close() +} diff --git a/internal/rest-client/arrays_s3_perf.go b/internal/rest-client/arrays_s3_perf.go index 2011d88..773ce64 100644 --- a/internal/rest-client/arrays_s3_perf.go +++ b/internal/rest-client/arrays_s3_perf.go @@ -7,15 +7,16 @@ type ArraysS3PerformanceList struct { } func (fb *FBClient) GetArraysS3Performance() *ArraysS3PerformanceList { + uri := "/arrays/s3-specific-performance" result := new(ArraysS3PerformanceList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/arrays/s3-specific-performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/arrays/s3-specific-performance") + Get(uri) } return result } diff --git a/internal/rest-client/arrays_s3_perf_test.go b/internal/rest-client/arrays_s3_perf_test.go new file mode 100644 index 0000000..de2e56d --- /dev/null +++ b/internal/rest-client/arrays_s3_perf_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestArraysS3Performance(t *testing.T) { + + s3f, _ := os.ReadFile("../../test/data/arrays_s3performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var as3 ArraysS3PerformanceList + json.Unmarshal(s3f, &as3) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + urls3 := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/s3-specific-performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if urls3.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(s3f)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("array_s3_specific_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + pl := c.GetArraysS3Performance() + if diff := cmp.Diff(pl.Items, as3.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/arrays_space.go b/internal/rest-client/arrays_space.go index 72e46cf..78620c6 100644 --- a/internal/rest-client/arrays_space.go +++ b/internal/rest-client/arrays_space.go @@ -16,19 +16,20 @@ type ArraysSpaceList struct { } func (fb *FBClient) GetArraysSpace(t string) *ArraysSpaceList { + uri := "/arrays/space" result := new(ArraysSpaceList) switch t { case "array", "file-system", "object-store": res, _ := fb.RestClient.R(). SetResult(&result). SetQueryParam("type", t). - Get("/arrays/space") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). SetQueryParam("type", t). - Get("/arrays/space") + Get(uri) } } return result diff --git a/internal/rest-client/arrays_space_test.go b/internal/rest-client/arrays_space_test.go new file mode 100644 index 0000000..27436f8 --- /dev/null +++ b/internal/rest-client/arrays_space_test.go @@ -0,0 +1,80 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestArraysSpace(t *testing.T) { + + resa, _ := os.ReadFile("../../test/data/arrays_space_array.json") + resfs, _ := os.ReadFile("../../test/data/arrays_space_file_system.json") + reso, _ := os.ReadFile("../../test/data/arrays_space_object_store.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arrsa ArraysSpaceList + var arrsfs ArraysSpaceList + var arrso ArraysSpaceList + json.Unmarshal(resa, &arrsa) + json.Unmarshal(resfs, &arrsfs) + json.Unmarshal(reso, &arrso) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + urla := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/space\?type=array$`) + urlfs := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/space\?type=file-system$`) + urlo := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/space\?type=object-store$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if urla.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(resa)) + } else if urlfs.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(resfs)) + } else if urlo.MatchString(r.URL.Path + "?" + r.URL.RawQuery) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(reso)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("arrays_space_1", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + asl := c.GetArraysSpace("array") + if diff := cmp.Diff(asl.Items, arrsa.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("arrays_space_2", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + asfs := c.GetArraysSpace("file-system") + if diff := cmp.Diff(asfs.Items, arrsfs.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("arrays_space_3", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + aso := c.GetArraysSpace("object-store") + if diff := cmp.Diff(aso.Items, arrso.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + server.Close() +} diff --git a/internal/rest-client/arrays_test.go b/internal/rest-client/arrays_test.go new file mode 100644 index 0000000..9ce6171 --- /dev/null +++ b/internal/rest-client/arrays_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestArraysInfo(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var arr ArraysList + json.Unmarshal(res, &arr) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("arrays_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + al := c.GetArrays() + if diff := cmp.Diff(al.Items, arr.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/blades.go b/internal/rest-client/blades.go index 813f419..de0ce51 100644 --- a/internal/rest-client/blades.go +++ b/internal/rest-client/blades.go @@ -18,16 +18,17 @@ type BladesList struct { } func (fb *FBClient) GetBlades() *BladesList { + uri := "/blades" result := new(BladesList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/blades") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/blades") + Get(uri) } return result } diff --git a/internal/rest-client/blades_test.go b/internal/rest-client/blades_test.go new file mode 100644 index 0000000..e7b50b6 --- /dev/null +++ b/internal/rest-client/blades_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestBlades(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/arrays.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var abl BladesList + json.Unmarshal(res, &abl) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/blades$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("blades_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + bl := c.GetBlades() + if diff := cmp.Diff(bl.Items, abl.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/buckets.go b/internal/rest-client/buckets.go index fe88e09..58dfe67 100644 --- a/internal/rest-client/buckets.go +++ b/internal/rest-client/buckets.go @@ -6,14 +6,35 @@ type Account struct { ResourceType string `json:"resource_type"` } +type EradicationConfig struct { + ManualEradication string `json:"manual_eradication"` + EradicationDelay int `json:"eradication_delay"` +} + +type ObjectLockConfig struct { + Enabled bool `json:"enabled"` + FreezeLockedObjects bool `json:"freeze_locked_objects"` + DefaultRetention int `json:"default_retention"` + DefaultRetentionMode string `json:"default_retention_mode"` + +} + type Bucket struct { - Name string `json:"name"` - Id string `json:"id"` - Account Account `json:"account"` - Created int `json:"created"` - destroyed bool `json:"destroyed"` - ObjectCount int `json:"object_count"` - Space Space `json:"space"` + Name string `json:"name"` + Id string `json:"id"` + Account Account `json:"account"` + Created int `json:"created"` + Destroyed bool `json:"destroyed"` + TimeRemaining int `json:"time_remaining"` + ObjectCount int `json:"object_count"` + Space Space `json:"space"` + Versioning string `json:"versioning"` + BucketType string `json:"bucket_type"` + QuotaLimit int `json:"quota_limit"` + HardLimitEnabled bool `json:"hard_limit_enabled"` + RetentionLock string `json:"retention_lock"` + EradicationCfg EradicationConfig `json:"eradication_config"` + ObjectLockCfg ObjectLockConfig `json:"object_lock_config"` } type BucketsList struct { @@ -24,15 +45,16 @@ type BucketsList struct { } func (fb *FBClient) GetBuckets() *BucketsList { + uri := "/buckets" result := new(BucketsList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/buckets") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/buckets") + Get(uri) } return result } diff --git a/internal/rest-client/buckets_perf.go b/internal/rest-client/buckets_perf.go index b0534d5..fcc8fbc 100644 --- a/internal/rest-client/buckets_perf.go +++ b/internal/rest-client/buckets_perf.go @@ -8,6 +8,7 @@ type BucketsPerformanceList struct { } func (fb *FBClient) GetBucketsPerformance(b *BucketsList) *BucketsPerformanceList { + uri := "/buckets/performance" result := new(BucketsPerformanceList) if b == nil { return result @@ -22,13 +23,13 @@ func (fb *FBClient) GetBucketsPerformance(b *BucketsList) *BucketsPerformanceLis res, _ := fb.RestClient.R(). SetResult(&temp). SetQueryParam("names", n). - Get("/buckets/performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&temp). SetQueryParam("names", n). - Get("/buckets/performance") + Get(uri) } result.Items = append(result.Items, temp.Items...) } diff --git a/internal/rest-client/buckets_perf_test.go b/internal/rest-client/buckets_perf_test.go new file mode 100644 index 0000000..bced201 --- /dev/null +++ b/internal/rest-client/buckets_perf_test.go @@ -0,0 +1,53 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestBucketsPerformance(t *testing.T) { + + bf, _ := os.ReadFile("../../test/data/buckets_for_perf.json") + bpf, _ := os.ReadFile("../../test/data/buckets_performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var bpl BucketsPerformanceList + json.Unmarshal(bpf, &bpl) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + buri := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/buckets$`) + bpuri := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/buckets/performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if buri.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(bf)) + } else if bpuri.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(bpf)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("buckets_performance_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + b := c.GetBuckets() + pl := c.GetBucketsPerformance(b) + if diff := cmp.Diff(pl.Items, bpl.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/buckets_s3_perf.go b/internal/rest-client/buckets_s3_perf.go index 439ec97..c64330b 100644 --- a/internal/rest-client/buckets_s3_perf.go +++ b/internal/rest-client/buckets_s3_perf.go @@ -8,6 +8,7 @@ type BucketsS3PerformanceList struct { } func (fb *FBClient) GetBucketsS3Performance(b *BucketsList) *BucketsS3PerformanceList { + uri := "/buckets/s3-specific-performance" result := new(BucketsS3PerformanceList) if b == nil { return result @@ -22,13 +23,13 @@ func (fb *FBClient) GetBucketsS3Performance(b *BucketsList) *BucketsS3Performanc res, _ := fb.RestClient.R(). SetResult(&temp). SetQueryParam("names", n). - Get("/buckets/s3-specific-performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&temp). SetQueryParam("names", n). - Get("/buckets/s3-specific-performance") + Get(uri) } result.Items = append(result.Items, temp.Items...) } diff --git a/internal/rest-client/buckets_s3_perf_test.go b/internal/rest-client/buckets_s3_perf_test.go new file mode 100644 index 0000000..6a37164 --- /dev/null +++ b/internal/rest-client/buckets_s3_perf_test.go @@ -0,0 +1,53 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestBucketsS3Performance(t *testing.T) { + + bf, _ := os.ReadFile("../../test/data/buckets_for_perf.json") + bpf, _ := os.ReadFile("../../test/data/buckets_s3performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var bpl BucketsS3PerformanceList + json.Unmarshal(bpf, &bpl) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + buri := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/buckets$`) + bpuri := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/buckets/s3-specific-performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if buri.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(bf)) + } else if bpuri.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(bpf)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("buckets_s3_performance_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + b := c.GetBuckets() + pl := c.GetBucketsS3Performance(b) + if diff := cmp.Diff(pl.Items, bpl.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/buckets_test.go b/internal/rest-client/buckets_test.go new file mode 100644 index 0000000..b4f3174 --- /dev/null +++ b/internal/rest-client/buckets_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestBuckets(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/buckets.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var ab BucketsList + json.Unmarshal(res, &ab) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/buckets$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("buckets_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + bl := c.GetBuckets() + if diff := cmp.Diff(bl.Items, ab.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/clients_perf.go b/internal/rest-client/clients_perf.go index 8b3160c..eaa24b3 100644 --- a/internal/rest-client/clients_perf.go +++ b/internal/rest-client/clients_perf.go @@ -24,15 +24,16 @@ type ClientsPerformanceList struct { } func (fb *FBClient) GetClientsPerformance() *ClientsPerformanceList { + uri := "/arrays/clients/performance" result := new(ClientsPerformanceList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/arrays/clients/performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/arrays/clients/performance") + Get(uri) } return result } diff --git a/internal/rest-client/clients_perf_test.go b/internal/rest-client/clients_perf_test.go new file mode 100644 index 0000000..21868eb --- /dev/null +++ b/internal/rest-client/clients_perf_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestClientsPerformance(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/clients_performance.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var cpl ClientsPerformanceList + json.Unmarshal(res, &cpl) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/arrays/clients/performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("clients_performance_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + cp := c.GetClientsPerformance() + if diff := cmp.Diff(cp.Items, cpl.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/filesystems.go b/internal/rest-client/filesystems.go index 9ef3fa4..c63fb97 100644 --- a/internal/rest-client/filesystems.go +++ b/internal/rest-client/filesystems.go @@ -20,6 +20,9 @@ type Smb struct { } type Location struct { + Name string `json:"name"` + Id string `json:"id"` + ResourceType string `jsoon:"resource_type"` } type Source struct { @@ -62,15 +65,16 @@ type FileSystemsList struct { } func (fb *FBClient) GetFileSystems() *FileSystemsList { + uri := "/file-systems" result := new(FileSystemsList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/file-systems") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/file-systems") + Get(uri) } return result } diff --git a/internal/rest-client/filesystems_perf.go b/internal/rest-client/filesystems_perf.go index 0d0ac4e..cfdfd78 100644 --- a/internal/rest-client/filesystems_perf.go +++ b/internal/rest-client/filesystems_perf.go @@ -9,9 +9,10 @@ type FileSystemsPerformanceList struct { func (fb *FBClient) GetFileSystemsPerformance(f *FileSystemsList, protocol string) *FileSystemsPerformanceList { + uri := "/file-systems/performance" result := new(FileSystemsPerformanceList) switch protocol { - case "all", "HTTP", "NFS", "SMB", "S3": + case "all", "NFS", "SMB": temp := new(FileSystemsPerformanceList) for i := 0; i < len(f.Items); i += 5 { n := "" @@ -23,14 +24,14 @@ func (fb *FBClient) GetFileSystemsPerformance(f *FileSystemsList, SetResult(&temp). SetQueryParam("names", n). SetQueryParam("protocol", protocol). - Get("/file-systems/performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&temp). SetQueryParam("names", n). SetQueryParam("protocol", protocol). - Get("/file-systems/performance") + Get(uri) } result.Items = append(result.Items, temp.Items...) } diff --git a/internal/rest-client/filesystems_perf_test.go b/internal/rest-client/filesystems_perf_test.go new file mode 100644 index 0000000..72854b4 --- /dev/null +++ b/internal/rest-client/filesystems_perf_test.go @@ -0,0 +1,72 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestFileSystemsPerformance(t *testing.T) { + + ff, _ := os.ReadFile("../../test/data/filesystems_for_perf.json") + fpf, _ := os.ReadFile("../../test/data/filesystems_perf.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var fpl FileSystemsPerformanceList + json.Unmarshal(fpf, &fpl) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + furi := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/file-systems$`) + fpuri := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/file-systems/performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if furi.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(ff)) + } else if fpuri.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(fpf)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("filesystems_performance_all", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + f := c.GetFileSystems() + fl := c.GetFileSystemsPerformance(f, "all") + if diff := cmp.Diff(fl.Items, fpl.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("filesystems_performance_nfs", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + f := c.GetFileSystems() + fl := c.GetFileSystemsPerformance(f, "NFS") + if diff := cmp.Diff(fl.Items, fpl.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + t.Run("filesystems_performance_smb", func(t *testing.T) { + c := NewRestClient(e, "fake-api-token", "latest", false) + f := c.GetFileSystems() + fl := c.GetFileSystemsPerformance(f, "SMB") + if diff := cmp.Diff(fl.Items, fpl.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + server.Close() + } + }) + server.Close() +} diff --git a/internal/rest-client/filesystems_test.go b/internal/rest-client/filesystems_test.go new file mode 100644 index 0000000..f749325 --- /dev/null +++ b/internal/rest-client/filesystems_test.go @@ -0,0 +1,44 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestFileSystems(t *testing.T) { + res, _ := os.ReadFile("../../test/data/filesystems.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var fs FileSystemsList + json.Unmarshal(res, &fs) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/file-systems$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("filesystems_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + fsl := c.GetFileSystems() + if diff := cmp.Diff(fsl.Items, fs.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/flashblade_client.go b/internal/rest-client/flashblade_client.go index 4aa2df2..c825e43 100644 --- a/internal/rest-client/flashblade_client.go +++ b/internal/rest-client/flashblade_client.go @@ -1,7 +1,6 @@ package client import ( -// "log" "errors" "crypto/tls" "github.com/go-resty/resty/v2" @@ -58,10 +57,6 @@ func NewRestClient(endpoint string, apitoken string, apiversion string, debug bo if debug { fb.RestClient.SetDebug(true) } -// fb.RestClient.OnRequestLog(func(rl *resty.RequestLog) error { -// fmt.Fprintln(os.Stderr, rl) -// return nil -// }) result := new(ApiVersions) res, err := fb.RestClient.R(). diff --git a/internal/rest-client/flashblade_client_test.go b/internal/rest-client/flashblade_client_test.go new file mode 100644 index 0000000..fbb6283 --- /dev/null +++ b/internal/rest-client/flashblade_client_test.go @@ -0,0 +1,38 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "os" +) + +func TestNewRestClient(t *testing.T) { + + vers, _ := os.ReadFile("../../test/data/versions.json") + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/login$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(`{"items":[{"username":"fakeuser"}]}`)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("login", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + if c.EndPoint != e || c.ApiToken != "fake-api-token" || c.XAuthToken != "faketoken" { + t.Errorf("expected (%s, fake-api-token, faketoken), got (%s %s %s)", e, c.EndPoint, c.ApiToken, c.XAuthToken) + } + }) +} diff --git a/internal/rest-client/hardware.go b/internal/rest-client/hardware.go index bf8e05f..4754424 100644 --- a/internal/rest-client/hardware.go +++ b/internal/rest-client/hardware.go @@ -22,15 +22,16 @@ type HardwareList struct { } func (fb *FBClient) GetHardware() *HardwareList { + uri := "/hardware" result := new(HardwareList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/hardware") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/hardware") + Get(uri) } return result } diff --git a/internal/rest-client/hardware_connectors_perf.go b/internal/rest-client/hardware_connectors_perf.go index ca1f1e1..61821ad 100644 --- a/internal/rest-client/hardware_connectors_perf.go +++ b/internal/rest-client/hardware_connectors_perf.go @@ -31,15 +31,16 @@ type HwConnectorsPerformanceList struct { } func (fb *FBClient) GetHwConnectorsPerformance() *HwConnectorsPerformanceList { + uri := "/hardware-connectors/performance" result := new(HwConnectorsPerformanceList) res, _ := fb.RestClient.R(). SetResult(&result). - Get("/hardware-connectors/performance") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&result). - Get("/hardware-connectors/performance") + Get(uri) } return result } diff --git a/internal/rest-client/hardware_connectors_perf_test.go b/internal/rest-client/hardware_connectors_perf_test.go new file mode 100644 index 0000000..18816e9 --- /dev/null +++ b/internal/rest-client/hardware_connectors_perf_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestHwConnectorsPerformance(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/hw_connectors_perf.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var hw *HwConnectorsPerformanceList + json.Unmarshal(res, &hw) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/hardware-connectors/performance$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("hardware_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + hl := c.GetHwConnectorsPerformance() + if diff := cmp.Diff(hl.Items, hw.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/hardware_test.go b/internal/rest-client/hardware_test.go new file mode 100644 index 0000000..e758980 --- /dev/null +++ b/internal/rest-client/hardware_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestHardware(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/hardware.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var hw HardwareList + json.Unmarshal(res, &hw) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/hardware$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("hardware_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + hl := c.GetHardware() + if diff := cmp.Diff(hl.Items, hw.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/nfs_export_policies.go b/internal/rest-client/nfs_export_policies.go new file mode 100644 index 0000000..c5de36f --- /dev/null +++ b/internal/rest-client/nfs_export_policies.go @@ -0,0 +1,56 @@ +package client + +type ExportRulePolicy struct { + Name string `json:"name"` + Id string `json:"id"` + ResourceType string `json:"resource_type"` +} + +type NFSExportRule struct { + Name string `json:"name"` + Id string `json:"id"` + Policy ExportRulePolicy `json:"policy"` + Index int `json:"index"` + PolicyVersion string `json:"policy_version"` + Access string `json:"access"` + AnonGid int `json:"anongid"` + AnonUid int `json:"anonuid"` + Atime bool `json:"atime"` + Client string `json:"client"` + FileId32bit bool `json:"fileid_32bit"` + Permission string `json:"permission"` + Secure bool `json:"secure"` + Security []string `json:"security"` +} + +type NFSExportPolicy struct { + Name string `json:"name"` + Id string `json:"id"` + Enabled bool `json:"enabled"` + IsLocal bool `json:"is_local"` + Location Location `json:"location"` + Version string `json:"version"` + Rules []NFSExportRule `json:"rules"` + PolicyType string `json:"policy_type"` +} + +type NFSExportPolicyList struct { + CntToken string `json:"continuation_token"` + TotalItemCnt int `json:"total_item_count"` + Items []NFSExportPolicy `json:"items"` +} + +func (fb *FBClient) GetNFSExportPolicies() *NFSExportPolicyList { + uri := "/nfs-export-policies" + result := new(NFSExportPolicyList) + res, _ := fb.RestClient.R(). + SetResult(&result). + Get(uri) + if res.StatusCode() == 401 { + fb.RefreshSession() + fb.RestClient.R(). + SetResult(&result). + Get(uri) + } + return result +} diff --git a/internal/rest-client/nfs_export_policies_test.go b/internal/rest-client/nfs_export_policies_test.go new file mode 100644 index 0000000..5997a93 --- /dev/null +++ b/internal/rest-client/nfs_export_policies_test.go @@ -0,0 +1,45 @@ +package client + + +import ( + "testing" + "regexp" + "strings" + "net/http" + "net/http/httptest" + "encoding/json" + "os" + + "github.com/google/go-cmp/cmp" +) + +func TestNFSExportPolicies(t *testing.T) { + + res, _ := os.ReadFile("../../test/data/nfs_export_policies.json") + vers, _ := os.ReadFile("../../test/data/versions.json") + var nfsp NFSExportPolicyList + json.Unmarshal(res, &nfsp) + server := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + valid := regexp.MustCompile(`^/api/([0-9]+.[0-9]+)?/nfs-export-policies$`) + if r.URL.Path == "/api/api_version" { + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(vers)) + } else if valid.MatchString(r.URL.Path) { + w.Header().Set("x-auth-token", "faketoken") + w.Header().Set("Content-Type", "application/json") + w.WriteHeader(http.StatusOK) + w.Write([]byte(res)) + } + })) + endp := strings.Split(server.URL, "/") + e := endp[len(endp)-1] + t.Run("nfs_policies_1", func(t *testing.T) { + defer server.Close() + c := NewRestClient(e, "fake-api-token", "latest", false) + pl := c.GetNFSExportPolicies() + if diff := cmp.Diff(pl.Items, nfsp.Items); diff != "" { + t.Errorf("Mismatch (-want +got):\n%s", diff) + } + }) +} diff --git a/internal/rest-client/usage.go b/internal/rest-client/usage.go index 52ea52a..9682526 100644 --- a/internal/rest-client/usage.go +++ b/internal/rest-client/usage.go @@ -47,19 +47,20 @@ type UsageUsersList struct { } func (fb *FBClient) GetUsageUsers(f *FileSystemsList) *UsageUsersList { + uri := "/usage/users" result := new(UsageUsersList) temp := new(UsageUsersList) for i := 0; i < len(f.Items); i++ { res, _ := fb.RestClient.R(). SetResult(&temp). SetQueryParam("file_system_ids", f.Items[i].Id). - Get("/usage/users") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&temp). SetQueryParam("file_system_ids", f.Items[i].Id). - Get("/usage/users") + Get(uri) } result.Items = append(result.Items, temp.Items...) } @@ -67,19 +68,20 @@ func (fb *FBClient) GetUsageUsers(f *FileSystemsList) *UsageUsersList { } func (fb *FBClient) GetUsageGroups(f *FileSystemsList) *UsageGroupsList { + uri := "/usage/groups" result := new(UsageGroupsList) temp := new(UsageGroupsList) for i := 0; i < len(f.Items); i++ { res, _ := fb.RestClient.R(). SetResult(&temp). SetQueryParam("file_system_ids", f.Items[i].Id). - Get("/usage/groups") + Get(uri) if res.StatusCode() == 401 { fb.RefreshSession() fb.RestClient.R(). SetResult(&temp). SetQueryParam("file_system_ids", f.Items[i].Id). - Get("/usage/groups") + Get(uri) } result.Items = append(result.Items, temp.Items...) } diff --git a/test/data/alerts.json b/test/data/alerts.json new file mode 100644 index 0000000..737804e --- /dev/null +++ b/test/data/alerts.json @@ -0,0 +1,15329 @@ +{ + "continuation_token": null, + "total_item_count": 676, + "items": [ + { + "name": "1", + "index": 1, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1", + "component_type": null, + "state": "closed", + "created": 1580465200792, + "updated": 1580469434306, + "notified": 1580465200792, + "summary": "Ethernet connector CH1.FM2.ETH1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1" + }, + "id": "ccb8cf1e-d598-a5a9-e53f-999bd6fce231" + }, + { + "name": "2", + "index": 2, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1", + "component_type": null, + "state": "closed", + "created": 1580465200792, + "updated": 1580469434306, + "notified": 1580465200792, + "summary": "Ethernet connector CH1.FM1.ETH1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1" + }, + "id": "3f2fc556-e5ff-2a83-59b5-6f1463ba693d" + }, + { + "name": "3", + "index": 3, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": null, + "state": "closed", + "created": 1580466346661, + "updated": 1580470233247, + "notified": 1580466346661, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "74287ef0-221a-e38d-0b4d-d4be96c05971" + }, + { + "name": "4", + "index": 4, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": null, + "state": "closed", + "created": 1580466717684, + "updated": 1580466717684, + "notified": 1580466717684, + "summary": "Blade CH1.FB5 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB5" + }, + "id": "29f83a7c-2d37-8e29-3133-552e2dab8a10" + }, + { + "name": "5", + "index": 5, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": null, + "state": "closed", + "created": 1580467359675, + "updated": 1580467409821, + "notified": 1580467359675, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": null + }, + "id": "5874395d-2ac4-26e6-d0eb-209d4c4956ad" + }, + { + "name": "6", + "index": 6, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN1", + "component_type": null, + "state": "closed", + "created": 1580467359835, + "updated": 1580467395005, + "notified": 1580467359835, + "summary": "Fan CH1.FM1.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN1", + "details": "Slow Fan" + }, + "id": "25be68d4-2ea6-91e2-cfb1-57724aacb98b" + }, + { + "name": "7", + "index": 7, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN2", + "component_type": null, + "state": "closed", + "created": 1580467359835, + "updated": 1580467395005, + "notified": 1580467359835, + "summary": "Fan CH1.FM1.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN2", + "details": "Slow Fan" + }, + "id": "cf6d1ee4-5de5-2a3e-ec5c-0d66720c295a" + }, + { + "name": "8", + "index": 8, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN3", + "component_type": null, + "state": "closed", + "created": 1580467359835, + "updated": 1580467395005, + "notified": 1580467359835, + "summary": "Fan CH1.FM1.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN3", + "details": "Slow Fan" + }, + "id": "d6fda877-fbab-1d0a-d3dc-35129e8c0089" + }, + { + "name": "9", + "index": 9, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN4", + "component_type": null, + "state": "closed", + "created": 1580467359835, + "updated": 1580467395005, + "notified": 1580467359835, + "summary": "Fan CH1.FM1.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN4", + "details": "Slow Fan" + }, + "id": "31d5f353-42e1-2272-534c-291c47f7e704" + }, + { + "name": "10", + "index": 10, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN5", + "component_type": null, + "state": "closed", + "created": 1580467359835, + "updated": 1580467395005, + "notified": 1580467359835, + "summary": "Fan CH1.FM1.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN5", + "details": "Slow Fan" + }, + "id": "4a11528e-87d2-a786-dbde-f711d9665cba" + }, + { + "name": "11", + "index": 11, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN6", + "component_type": null, + "state": "closed", + "created": 1580467359835, + "updated": 1580467379939, + "notified": 1580467359835, + "summary": "Fan CH1.FM1.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN6", + "details": "Slow Fan" + }, + "id": "b9bf2091-bbad-298b-8481-14dec18136d6" + }, + { + "name": "12", + "index": 12, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM1.ETH1", + "component_type": null, + "state": "closed", + "created": 1580467394800, + "updated": 1580467394800, + "notified": 1580467394800, + "summary": "Ethernet connector CH1.FM1.ETH1 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1" + }, + "id": "04e09395-7b8f-fb4f-9341-87b2289d4f94" + }, + { + "name": "13", + "index": 13, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": null, + "state": "closed", + "created": 1580467409821, + "updated": 1580467455669, + "notified": 1580467409821, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": null + }, + "id": "27a62f43-20af-f8ef-0a9e-db650ac80e97" + }, + { + "name": "14", + "index": 14, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN1", + "component_type": null, + "state": "closed", + "created": 1580467411216, + "updated": 1580467456716, + "notified": 1580467411216, + "summary": "Fan CH1.FM2.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN1", + "details": "Slow Fan" + }, + "id": "9a93fda4-067b-1d94-54af-7073314c54b7" + }, + { + "name": "15", + "index": 15, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN2", + "component_type": null, + "state": "closed", + "created": 1580467411216, + "updated": 1580467456716, + "notified": 1580467411216, + "summary": "Fan CH1.FM2.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN2", + "details": "Slow Fan" + }, + "id": "4a7ae17d-d5a5-398d-0245-2823980f0050" + }, + { + "name": "16", + "index": 16, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN3", + "component_type": null, + "state": "closed", + "created": 1580467411216, + "updated": 1580467456716, + "notified": 1580467411216, + "summary": "Fan CH1.FM2.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN3", + "details": "Slow Fan" + }, + "id": "0b72ab01-513e-2423-5923-f766f6abd512" + }, + { + "name": "17", + "index": 17, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN4", + "component_type": null, + "state": "closed", + "created": 1580467411216, + "updated": 1580467456716, + "notified": 1580467411216, + "summary": "Fan CH1.FM2.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN4", + "details": "Slow Fan" + }, + "id": "c6ab9ffe-7e66-edbd-ec26-90cf78f073a7" + }, + { + "name": "18", + "index": 18, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN5", + "component_type": null, + "state": "closed", + "created": 1580467411216, + "updated": 1580467456716, + "notified": 1580467411216, + "summary": "Fan CH1.FM2.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN5", + "details": "Slow Fan" + }, + "id": "2648f321-0195-bbe3-c00b-f1cf50fa5ed0" + }, + { + "name": "19", + "index": 19, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN6", + "component_type": null, + "state": "closed", + "created": 1580467411216, + "updated": 1580467456716, + "notified": 1580467411216, + "summary": "Fan CH1.FM2.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN6", + "details": "Slow Fan" + }, + "id": "af7b1ea7-c411-165b-51ce-42eb76353eda" + }, + { + "name": "20", + "index": 20, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1580469524465, + "updated": 1580471869648, + "notified": 1580469524465, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "ee0c2207-f0f0-7bba-3d71-cb4184a06dfe" + }, + { + "name": "21", + "index": 21, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1580469524465, + "updated": 1580471508748, + "notified": 1580469524465, + "summary": "Ethernet connector CH1.FM1.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "17c1b5cf-2927-3332-b37f-c43dec3a4ea9" + }, + { + "name": "22", + "index": 22, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1580469524465, + "updated": 1580471508748, + "notified": 1580469524465, + "summary": "Ethernet connector CH1.FM2.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "55e30472-f0d5-68b2-764c-485fa507d93a" + }, + { + "name": "23", + "index": 23, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1580469524465, + "updated": 1580471869648, + "notified": 1580469524465, + "summary": "Ethernet connector CH1.FM1.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "e07d3797-5995-f23a-1665-1b045f816a39" + }, + { + "name": "24", + "index": 24, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1580470233246, + "updated": 1580470233246, + "notified": 1580470233246, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "a24b14a7-4b3e-103f-fe57-8fc3f088bbb5" + }, + { + "name": "25", + "index": 25, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1580470233247, + "updated": 1580470233247, + "notified": 1580470233247, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB3" + }, + "id": "b8d08a72-0c52-2d9e-b5d8-8765c811bdeb" + }, + { + "name": "26", + "index": 26, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1580470233247, + "updated": 1580470233247, + "notified": 1580470233247, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB4" + }, + "id": "b05e8b63-9463-8d45-6520-51c0dda11f78" + }, + { + "name": "27", + "index": 27, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "irp270-c04", + "component_type": "array-connections", + "state": "closed", + "created": 1581113949099, + "updated": 1581114279505, + "notified": 1581113949099, + "summary": "An array connection to irp270-c04 requires attention", + "description": "The array connection to irp270-c04 is not fully connected; replication address: 10.59.10.250. All bucket and file-system replica links associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "Id": "2a20ae95-4188-c662-5842-fc9bcf73f147" + }, + "id": "60c778d5-2cb9-4c93-580c-ab4e163aa4dc" + }, + { + "name": "28", + "index": 28, + "flagged": false, + "code": 1112, + "severity": "critical", + "component_name": "irp270-c04", + "component_type": "array-connections", + "state": "closed", + "created": 1581819542948, + "updated": 1582108186489, + "notified": 1582078825409, + "summary": "An array connection to irp270-c04 requires attention", + "description": "The array connection to irp270-c04 is not fully connected; replication address: 10.59.10.250. All bucket and file system replica links associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to irp270-c04 is \"connecting\" - \"Error in SSL Handshake.\"\nFile replication connection to irp270-c04 is \"connected\"\nFile replication connection from irp270-c04 is \"connected\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "2a20ae95-4188-c662-5842-fc9bcf73f147" + }, + "id": "2e6135f4-f72a-3282-2c18-8fb6e85f2b4b" + }, + { + "name": "29", + "index": 29, + "flagged": false, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1581865773374, + "updated": 1581865773374, + "notified": 1581865773374, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "3a44f537-6319-f88e-23e0-b9474bdd09fd" + }, + { + "name": "30", + "index": 30, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1581866415943, + "updated": 1581866415943, + "notified": 1581866415943, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "045959b0-2b61-f4b6-16f1-fd98c347cc73" + }, + { + "name": "31", + "index": 31, + "flagged": false, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1581866606895, + "updated": 1581866757665, + "notified": 1581866606895, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "7ed149e0-9f41-903d-4f96-b4d278375da6" + }, + { + "name": "32", + "index": 32, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1581866787842, + "updated": 1581866797958, + "notified": 1581866787842, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "269938df-f468-f47a-6ce6-389c2ece4cd1" + }, + { + "name": "33", + "index": 33, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1581866968997, + "updated": 1581866979201, + "notified": 1581866968997, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "6f15fb2d-cc24-6ea7-8f28-549ef57554a3" + }, + { + "name": "34", + "index": 34, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1581867170586, + "updated": 1581867170586, + "notified": 1581867170586, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "3d48ffdd-8ad5-ea42-5d80-a2faee30e9bf" + }, + { + "name": "35", + "index": 35, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1581867352030, + "updated": 1581867352030, + "notified": 1581867352030, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB6" + }, + "id": "f5f2e2d9-5ddb-933b-b537-bc52c1d33f05" + }, + { + "name": "36", + "index": 36, + "flagged": false, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1581867553653, + "updated": 1581867704971, + "notified": 1581867553653, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "7539dd8d-b248-c212-4ca3-7b0fbf25b65e" + }, + { + "name": "37", + "index": 37, + "flagged": false, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1581868306099, + "updated": 1581868351259, + "notified": 1581868306099, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "0a7f64de-6092-ed2b-9d74-139238d9c544" + }, + { + "name": "38", + "index": 38, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "AIRI", + "component_type": "file-systems", + "state": "closed", + "created": 1582275726309, + "updated": 1627303136407, + "notified": 1625802873176, + "summary": "File system 'AIRI' approaching space quota", + "description": "The 'AIRI' file system is at 89% of its space quota of 170.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.893411406348733", + "FileSystemName": "AIRI" + }, + "id": "695ed850-85a6-d619-6d9e-05c4ce046fbc" + }, + { + "name": "39", + "index": 39, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "z-cdh-hdfs", + "component_type": "file-systems", + "state": "closed", + "created": 1582279989003, + "updated": 1582280889745, + "notified": 1582280469392, + "summary": "File system 'z-cdh-hdfs' approaching space quota", + "description": "The 'z-cdh-hdfs' file system is at 95% of its space quota of 3.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.949991888832301", + "FileSystemName": "z-cdh-hdfs" + }, + "id": "2ca24f20-3004-d215-c5a3-9dbed7843bc0" + }, + { + "name": "40", + "index": 40, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "z-fbhosts_docker_root", + "component_type": "file-systems", + "state": "closed", + "created": 1582292238498, + "updated": 1627303136407, + "notified": 1582292238498, + "summary": "File system 'z-fbhosts_docker_root' approaching space quota", + "description": "The 'z-fbhosts_docker_root' file system is at 83% of its space quota of 4.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.829510927316733", + "FileSystemName": "z-fbhosts_docker_root" + }, + "id": "c8f01de0-fff4-c464-82e5-cb127e59f688" + }, + { + "name": "41", + "index": 41, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1583262794205, + "updated": 1583265439123, + "notified": 1583262794205, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. All bucket and file system replica links associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connecting\" - \"No route found. Please check remote connectivity.\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "5bf19168-50d5-9812-a61b-27a2e196e330" + }, + "id": "1575c87a-4483-b4cb-608d-1666b63f3ccc" + }, + { + "name": "42", + "index": 42, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "fblabparis1", + "component_type": "targets", + "state": "closed", + "created": 1584438543001, + "updated": 1584438903453, + "notified": 1584438543001, + "summary": "A connection to target fblabparis1 requires attention", + "description": "The connection to fblabparis1 is not connected; target address: 10.239.112.83; The detailed error is: Error in SSL Handshake. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "1c1f71d4-b3c7-6e2a-c9fd-ede28fa66d1c" + }, + "id": "3614cbdc-5bb1-bc1e-74d3-a9f99902e1bb" + }, + { + "name": "43", + "index": 43, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "z-k8s-datahub", + "component_type": "file-systems", + "state": "closed", + "created": 1584547559288, + "updated": 1618589900775, + "notified": 1585066682945, + "summary": "File system 'z-k8s-datahub' approaching space quota", + "description": "The 'z-k8s-datahub' file system is at 92% of its space quota of 4.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.92358294990845", + "FileSystemName": "z-k8s-datahub" + }, + "id": "b67076a6-40b0-ce71-1307-2140eea453dd" + }, + { + "name": "44", + "index": 44, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "oracle_orcl", + "component_type": "file-systems", + "state": "closed", + "created": 1584721655623, + "updated": 1584724898988, + "notified": 1584721655623, + "summary": "File system 'oracle_orcl' approaching space quota", + "description": "The 'oracle_orcl' file system is at 84% of its space quota of 10.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.835392257431522", + "FileSystemName": "oracle_orcl" + }, + "id": "384b19b3-5961-ab7e-bf87-6896ce82624c" + }, + { + "name": "45", + "index": 45, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "oracle_orcl", + "component_type": "file-systems", + "state": "closed", + "created": 1585054610528, + "updated": 1605700440052, + "notified": 1585054610528, + "summary": "File system 'oracle_orcl' approaching space quota", + "description": "The 'oracle_orcl' file system is at 84% of its space quota of 10.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.83786188014783", + "FileSystemName": "oracle_orcl" + }, + "id": "d4919ce5-9c7d-94c9-1b65-f495a5b71ad3" + }, + { + "name": "46", + "index": 46, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "k8s-pvc-1647d190-e113-4345-81c6-5273bff65592", + "component_type": "file-systems", + "state": "closed", + "created": 1586158619997, + "updated": 1586159521210, + "notified": 1586158619997, + "summary": "File system 'k8s-pvc-1647d190-e113-4345-81c6-5273bff65592' exceeded space quota", + "description": "The 'k8s-pvc-1647d190-e113-4345-81c6-5273bff65592' file system is at 669% of its space quota of 2.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "6.68861675262451", + "FileSystemName": "k8s-pvc-1647d190-e113-4345-81c6-5273bff65592" + }, + "id": "8f693255-ad9d-9930-de3a-9c7a266f2724" + }, + { + "name": "47", + "index": 47, + "flagged": false, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1587025515839, + "updated": 1602157702247, + "notified": 1587025515839, + "summary": "NFS service is unhealthy", + "description": "NFS service is unhealthy. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "b8e2406c-f9a2-c252-25ff-75b7e341a550" + }, + { + "name": "48", + "index": 48, + "flagged": false, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1588842623297, + "updated": 1588874129476, + "notified": 1588842623297, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. All bucket and file system replica links associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "5bf19168-50d5-9812-a61b-27a2e196e330" + }, + "id": "c25b8edc-7461-0b11-f9cd-898d58e974ad" + }, + { + "name": "49", + "index": 49, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1588871857767, + "updated": 1588871867859, + "notified": 1588871857767, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "b3f91267-d740-cb4e-a6ce-f353882b6c5b" + }, + { + "name": "50", + "index": 50, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1588872078986, + "updated": 1588872089097, + "notified": 1588872078986, + "summary": "Blade CH1.FB2 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "fbf8b8f5-21f6-31a1-4428-6991873fde9b" + }, + { + "name": "51", + "index": 51, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1588872260041, + "updated": 1588872270201, + "notified": 1588872260041, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "5cf27bda-e2d8-f4dc-0e2c-3d7f18fa9e51" + }, + { + "name": "52", + "index": 52, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1588872462064, + "updated": 1588872462064, + "notified": 1588872462064, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "e080e230-2cac-2026-6f60-fe39c77c743b" + }, + { + "name": "53", + "index": 53, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1588872643358, + "updated": 1588872643358, + "notified": 1588872643358, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "c7b397e6-6e29-b583-bed2-d2ecc3e2ebc7" + }, + { + "name": "54", + "index": 54, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1588872845091, + "updated": 1588872845091, + "notified": 1588872845091, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "46e0fdef-8299-f370-1a13-e94c4483fa4c" + }, + { + "name": "55", + "index": 55, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1588873026622, + "updated": 1588873026622, + "notified": 1588873026622, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "8e2e9454-58f9-3f58-4730-5413ea2ca9fd" + }, + { + "name": "56", + "index": 56, + "flagged": false, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1588873815596, + "updated": 1588873860781, + "notified": 1588873815596, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "4c941cfa-c7a7-9662-37b7-a72856d41e6b" + }, + { + "name": "57", + "index": 57, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "remko --> fbstaines01:remko", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1589906381670, + "updated": 1589906381670, + "notified": 1589906381670, + "summary": "A file system replica link requires attention", + "description": "The file system replica link remko --> fbstaines01:remko is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "remko", + "remote_name": "fbstaines01", + "local_file_system_id": "7b3e2940-c56c-d4ed-a303-1de367088faf", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "remko", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "8e105801-77cc-97d9-c9e4-cb6b3da4614f", + "id": "f5db118e-9faa-8292-39bd-7699a3e27d60" + }, + "id": "712b0ebd-9f35-8ff2-429d-05000f9f56d7" + }, + { + "name": "58", + "index": 58, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1589989581501, + "updated": 1590051357456, + "notified": 1589993777643, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB5" + }, + "id": "c2419fef-be1c-b8d4-9ecb-490639515fd1" + }, + { + "name": "59", + "index": 59, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1589989802764, + "updated": 1590051357456, + "notified": 1589993717068, + "summary": "Blade CH1.FB2 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB2" + }, + "id": "56bd4012-1fbe-a640-1bcd-54b80881dfd3" + }, + { + "name": "60", + "index": 60, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1589989903655, + "updated": 1590013006670, + "notified": 1589993818042, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Blade exceeded critical temperature threshold of 40C. Blade is currently 41C. Normal operating temperature is below 35C, Software process is not healthy: Code 1", + "Blade": "CH1.FB3" + }, + "id": "852514c3-2b96-222b-adff-2daa69942e13" + }, + { + "name": "61", + "index": 61, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1589990044665, + "updated": 1590051357456, + "notified": 1589993979486, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB4" + }, + "id": "d7436031-8dc1-f1af-44b9-c239f8bc5fcc" + }, + { + "name": "62", + "index": 62, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1589990145385, + "updated": 1590051357456, + "notified": 1589994080836, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB6" + }, + "id": "cf5ec801-9aa7-376c-6a34-e3a510baf7ee" + }, + { + "name": "63", + "index": 63, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1589990206049, + "updated": 1590051357456, + "notified": 1589994080836, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB7" + }, + "id": "da7e4dee-0886-6a03-cb1d-694cd95f240b" + }, + { + "name": "64", + "index": 64, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1589990226298, + "updated": 1590010545587, + "notified": 1589994111221, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Blade exceeded critical temperature threshold of 40C. Blade is currently 41C. Normal operating temperature is below 35C, Software process is not healthy: Code 1", + "Blade": "CH1.FB1" + }, + "id": "281278a9-d569-19bf-f8b3-c9730c46dcf9" + }, + { + "name": "65", + "index": 65, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1590007277080, + "updated": 1590481939271, + "notified": 1590439370433, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "216870aa-fda2-573e-899a-3132f0b72931" + }, + { + "name": "66", + "index": 66, + "flagged": false, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1590052014128, + "updated": 1591087412102, + "notified": 1590570554415, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "55b932e2-d576-8826-1613-f0c5c2e0b70d" + }, + { + "name": "67", + "index": 67, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03", + "component_type": "file-systems", + "state": "closed", + "created": 1590131570956, + "updated": 1627303136407, + "notified": 1590687892746, + "summary": "File system 'k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03' approaching space quota", + "description": "The 'k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03' file system is at 91% of its space quota of 1.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.908089637756348", + "FileSystemName": "k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03" + }, + "id": "2b5399f6-318d-30cc-2526-ab4e91084541" + }, + { + "name": "68", + "index": 68, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "jbtdata --> fbstaines01:jbtdata", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1590326359476, + "updated": 1590326599739, + "notified": 1590326359476, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket jbtdata to bucket jbtdata on fbstaines01 is unhealthy. The detailed error is: The specified bucket does not exist.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The specified bucket does not exist.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "jbtdata", + "id": "636fb67f-c40a-e13d-4d60-7975c166aced", + "local_bucket_name": "jbtdata", + "local_bucket_id": "586728c7-a730-6d58-20e5-f5787495cfa5" + }, + "id": "c93e66d7-7222-758b-3cd3-6da7064e7ac5" + }, + { + "name": "69", + "index": 69, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "jbtbucket --> fbstaines01:jbtbucket", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1590327020064, + "updated": 1590327020064, + "notified": 1590327020064, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket jbtbucket to bucket jbtbucket on fbstaines01 is unhealthy. The detailed error is: Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "jbtbucket", + "id": "14814798-1bf1-789e-2dc3-0796f4cc47f8", + "local_bucket_name": "jbtbucket", + "local_bucket_id": "aeca81b7-3539-79c1-2e6c-a9aa0f4f9dc9" + }, + "id": "0a05b5c3-e487-2cce-a464-e6269546539a" + }, + { + "name": "70", + "index": 70, + "flagged": true, + "code": 1007, + "severity": "critical", + "component_name": "CH1.PWR3", + "component_type": "hardware", + "state": "closed", + "created": 1591181786214, + "updated": 1591181801343, + "notified": 1591181786214, + "summary": "Power supply CH1.PWR3 requires attention", + "description": "A power supply's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1007", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "PSUIndex": "CH1.PWR3", + "details": "power cable unplugged" + }, + "id": "27be66b0-7846-f785-8c96-3789e6862640" + }, + { + "name": "71", + "index": 71, + "flagged": true, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1591967898008, + "updated": 1591967898008, + "notified": 1591967898008, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "44a4434c-721c-1479-67b9-13198f4405b5" + }, + { + "name": "72", + "index": 72, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "jbfs", + "component_type": "file-systems", + "state": "closed", + "created": 1591970594694, + "updated": 1592063417944, + "notified": 1592057049680, + "summary": "File system 'jbfs' exceeded space quota", + "description": "The 'jbfs' file system is at 177% of its space quota of 100.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.77350386619568", + "FileSystemName": "jbfs" + }, + "id": "338dafac-6a37-a387-e96f-49c4f02900b7" + }, + { + "name": "73", + "index": 73, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "mm-test <-- fbstaines01:mm-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1592236965352, + "updated": 1592241230218, + "notified": 1592236965352, + "summary": "A file system replica link requires attention", + "description": "The file system replica link mm-test <-- fbstaines01:mm-test is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "mm-test", + "remote_name": "fbstaines01", + "local_file_system_id": "45f09a43-6ae1-3ec0-715c-3bf121ef9e82", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "mm-test", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "33a305af-a91d-4a05-c4f6-9b20fb1ecce4", + "id": "16ae4737-51b9-d3d3-f7b6-69957716a42e" + }, + "id": "536e5b04-7cb4-5656-5b6c-3688f74cdbc8" + }, + { + "name": "74", + "index": 74, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "mm-test <-- fbstaines01:mm-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1592237385746, + "updated": 1592317734147, + "notified": 1592237385746, + "summary": "A file system replica link requires attention", + "description": "The file system replica link mm-test <-- fbstaines01:mm-test is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "mm-test", + "remote_name": "fbstaines01", + "local_file_system_id": "8995bb1a-047a-5572-b9b8-1092b9fe5d92", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "mm-test", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "33a305af-a91d-4a05-c4f6-9b20fb1ecce4", + "id": "a12e57bc-8b02-a2f0-e856-1847c7824f5d" + }, + "id": "7dbc9800-6612-15a0-4ad3-93924a22b668" + }, + { + "name": "75", + "index": 75, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "z-offload_target <-- fbstaines01:z-offload_target", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1592910610163, + "updated": 1592911871626, + "notified": 1592910610163, + "summary": "A file system replica link requires attention", + "description": "The file system replica link z-offload_target <-- fbstaines01:z-offload_target is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "z-offload_target", + "remote_name": "fbstaines01", + "local_file_system_id": "8ffcdeee-ed84-f222-d941-6d007b2c4898", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "z-offload_target", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "5720506f-aaff-aae6-3dc0-0aa63b483516", + "id": "fd9ac58e-73d4-0ddd-9874-ea8a2155a133" + }, + "id": "bd5eecb0-11ae-fe73-2687-b72292106fb5" + }, + { + "name": "76", + "index": 76, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN1", + "component_type": "hardware", + "state": "closed", + "created": 1593795881703, + "updated": 1593795915725, + "notified": 1593795881703, + "summary": "Fan CH1.FM1.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN1", + "details": "Slow Fan" + }, + "id": "62b28506-6678-e728-522d-46f0e6095972" + }, + { + "name": "77", + "index": 77, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN2", + "component_type": "hardware", + "state": "closed", + "created": 1593795881703, + "updated": 1593795915725, + "notified": 1593795881703, + "summary": "Fan CH1.FM1.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN2", + "details": "Slow Fan" + }, + "id": "9bfde706-f70f-172e-6360-63e23f26de59" + }, + { + "name": "78", + "index": 78, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN3", + "component_type": "hardware", + "state": "closed", + "created": 1593795881703, + "updated": 1593795915725, + "notified": 1593795881703, + "summary": "Fan CH1.FM1.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN3", + "details": "Slow Fan" + }, + "id": "1da95f62-2434-f2ca-27c0-cf6d6d998fa8" + }, + { + "name": "79", + "index": 79, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN4", + "component_type": "hardware", + "state": "closed", + "created": 1593795881703, + "updated": 1593795915725, + "notified": 1593795881703, + "summary": "Fan CH1.FM1.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN4", + "details": "Slow Fan" + }, + "id": "87f4e93c-d17a-9644-623b-89793ede0d0f" + }, + { + "name": "80", + "index": 80, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN5", + "component_type": "hardware", + "state": "closed", + "created": 1593795881703, + "updated": 1593795915725, + "notified": 1593795881703, + "summary": "Fan CH1.FM1.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN5", + "details": "Slow Fan" + }, + "id": "1c87e0f6-3676-22ad-1e6d-7c65a65508bd" + }, + { + "name": "81", + "index": 81, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN6", + "component_type": "hardware", + "state": "closed", + "created": 1593795881703, + "updated": 1593795915725, + "notified": 1593795881703, + "summary": "Fan CH1.FM1.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN6", + "details": "Slow Fan" + }, + "id": "800d5213-4333-cda8-8861-8a268c5e0ae8" + }, + { + "name": "82", + "index": 82, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1593795881714, + "updated": 1593799224814, + "notified": 1593795881714, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "6a247d7e-c282-f59d-9983-e06730dd9662" + }, + { + "name": "83", + "index": 83, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN1", + "component_type": "hardware", + "state": "closed", + "created": 1593795961642, + "updated": 1593796007049, + "notified": 1593795961642, + "summary": "Fan CH1.FM2.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN1", + "details": "Slow Fan" + }, + "id": "c09cc4bf-52c1-6bbd-2884-39b49e4d8291" + }, + { + "name": "84", + "index": 84, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN2", + "component_type": "hardware", + "state": "closed", + "created": 1593795961642, + "updated": 1593796007049, + "notified": 1593795961642, + "summary": "Fan CH1.FM2.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN2", + "details": "Slow Fan" + }, + "id": "1d27907e-0023-4fb1-4d18-fd4a0517be16" + }, + { + "name": "85", + "index": 85, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN3", + "component_type": "hardware", + "state": "closed", + "created": 1593795961642, + "updated": 1593796007049, + "notified": 1593795961642, + "summary": "Fan CH1.FM2.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN3", + "details": "Slow Fan" + }, + "id": "134f7799-7646-69db-05a3-f059e5e6d4a8" + }, + { + "name": "86", + "index": 86, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN4", + "component_type": "hardware", + "state": "closed", + "created": 1593795961642, + "updated": 1593796007049, + "notified": 1593795961642, + "summary": "Fan CH1.FM2.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN4", + "details": "Slow Fan" + }, + "id": "d08c9e97-ff10-8a94-5562-0b98dec996ed" + }, + { + "name": "87", + "index": 87, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN5", + "component_type": "hardware", + "state": "closed", + "created": 1593795961642, + "updated": 1593796007049, + "notified": 1593795961642, + "summary": "Fan CH1.FM2.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN5", + "details": "Slow Fan" + }, + "id": "3778e935-18f7-94c7-3cd2-9cb27e7de7f2" + }, + { + "name": "88", + "index": 88, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN6", + "component_type": "hardware", + "state": "closed", + "created": 1593795961642, + "updated": 1593796007049, + "notified": 1593795961642, + "summary": "Fan CH1.FM2.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN6", + "details": "Slow Fan" + }, + "id": "2f257eeb-6a00-472c-7f81-04be0fe582e9" + }, + { + "name": "89", + "index": 89, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1593795962526, + "updated": 1593796007830, + "notified": 1593795962526, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": null + }, + "id": "8277ac30-c2b8-9bc9-683f-dd403457c147" + }, + { + "name": "90", + "index": 90, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1593797198484, + "updated": 1593797198484, + "notified": 1593797198484, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "0abaa97f-eb13-3200-0ad1-8865bffbf8cb" + }, + { + "name": "91", + "index": 91, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1593797389387, + "updated": 1593797540157, + "notified": 1593797389387, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "a7b1c4e4-e557-e3f8-30d6-95cc4fc2b38a" + }, + { + "name": "92", + "index": 92, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1593797600583, + "updated": 1593797600583, + "notified": 1593797600583, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "ed2394c9-8e2b-b48e-27ed-33103a8e646c" + }, + { + "name": "93", + "index": 93, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1593797801926, + "updated": 1593797801926, + "notified": 1593797801926, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "e2c572b6-764a-d30c-cf2e-e43574c91cc8" + }, + { + "name": "94", + "index": 94, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1593798013475, + "updated": 1593798013475, + "notified": 1593798013475, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "e3c41a6d-05a2-0ce8-7754-f9dfdb76c28a" + }, + { + "name": "95", + "index": 95, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1593798198328, + "updated": 1593798198328, + "notified": 1593798198328, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "4c07a38c-2e2a-f6a3-68ba-45e64457d8cd" + }, + { + "name": "96", + "index": 96, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1593798389971, + "updated": 1593798541616, + "notified": 1593798389971, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "a8385c45-2199-e0d8-b14d-a1453decccd3" + }, + { + "name": "97", + "index": 97, + "flagged": true, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1593798709215, + "updated": 1593798709215, + "notified": 1593798709215, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "03c9dada-8193-2b0b-a382-9f04c8835d55" + }, + { + "name": "98", + "index": 98, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "z-offload_target <-- fbstaines01:z-offload_target", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1594223819113, + "updated": 1594224539728, + "notified": 1594223819113, + "summary": "A file system replica link requires attention", + "description": "The file system replica link z-offload_target <-- fbstaines01:z-offload_target is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "z-offload_target", + "remote_name": "fbstaines01", + "local_file_system_id": "8ffcdeee-ed84-f222-d941-6d007b2c4898", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "z-offload_target", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "5720506f-aaff-aae6-3dc0-0aa63b483516", + "id": "fd9ac58e-73d4-0ddd-9874-ea8a2155a133" + }, + "id": "a5c221a9-0617-f020-204f-f804fc9adca5" + }, + { + "name": "99", + "index": 99, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "AAA <-- fbstaines01:AAA", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1594295879408, + "updated": 1596021534485, + "notified": 1594814372516, + "summary": "A file system replica link requires attention", + "description": "The file system replica link AAA <-- fbstaines01:AAA is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "AAA", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "AAA", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f" + }, + "id": "f1cd2a15-ed9f-10cd-5184-3571539b6f0c" + }, + { + "name": "100", + "index": 100, + "flagged": true, + "code": 1104, + "severity": "critical", + "component_name": "RF-Schroders-Test Snapshot Limit", + "component_type": "file-system-snapshots", + "state": "closed", + "created": 1594520970405, + "updated": 1596107913788, + "notified": 1595062309702, + "summary": "Number of snapshots for RF-Schroders-Test has reached the limit", + "description": "The number of snapshots for RF-Schroders-Test has reached the maximum snapshot limit for a filesystem. The associated file system replica link(s) to fbstaines01 cannot continue replicating as a result. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1104", + "action": "Reviewing existing snapshots and removal of selected snapshots is recommended. The number of snapshots is very near to the limit, and loss of ability to take snapshots of filesystem RF-Schroders-Test is likely if no action is taken.", + "variables": { + "File system Snapshot Limit": "512", + "Number of Snapshots For RF-Schroders-Test": "512" + }, + "id": "a9d20dda-1f96-4d14-8763-137a1428615c" + }, + { + "name": "101", + "index": 101, + "flagged": true, + "code": 1104, + "severity": "warning", + "component_name": "mm-test Snapshot Limit", + "component_type": "file-system-snapshots", + "state": "closed", + "created": 1594690504558, + "updated": 1596021531313, + "notified": 1595209009143, + "summary": "Number of snapshots for mm-test is approaching the limit", + "description": "The number of snapshots for mm-test is approaching the maximum snapshot limit for a filesystem. 482 snapshots exist; the limit is 512 snapshots. The associated file system replica link(s) to fbstaines01 are at risk if the limit is reached. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1104", + "action": "Reviewing existing snapshots and removal of selected snapshots is recommended. The number of snapshots is very near to the limit, and loss of ability to take snapshots of filesystem mm-test is likely if no action is taken.", + "variables": { + "Number of Snapshots For mm-test": "482", + "File system Snapshot Limit": "512" + }, + "id": "504722fd-df93-eea4-3065-2b9a7af85c7d" + }, + { + "name": "102", + "index": 102, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "mwamrep --> fbstaines01:mwam", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1595587511701, + "updated": 1595604144952, + "notified": 1595587511701, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket mwamrep to bucket mwam on fbstaines01 is unhealthy. The detailed error is: Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "mwam", + "id": "c0a2516c-d6ea-5885-cf74-7faecc136e8b", + "local_bucket_name": "mwamrep", + "local_bucket_id": "86898095-326e-ddf0-e394-84ec3aa62242" + }, + "id": "7e013a0a-39ee-900e-2ca2-19a7867792b9" + }, + { + "name": "103", + "index": 103, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "mwamrep --> fbstaines01:mwam", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1595835149853, + "updated": 1595859168804, + "notified": 1595835149853, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket mwamrep to bucket mwam on fbstaines01 is unhealthy. The detailed error is: The access key Id you provided does not exist in our records.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The access key Id you provided does not exist in our records.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "mwam", + "id": "c0a2516c-d6ea-5885-cf74-7faecc136e8b", + "local_bucket_name": "mwamrep", + "local_bucket_id": "86898095-326e-ddf0-e394-84ec3aa62242" + }, + "id": "afcd4267-d75f-db6d-1c1e-16f38ab5e23e" + }, + { + "name": "104", + "index": 104, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "bbbb --> fbstaines01:aaaa", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1595922878649, + "updated": 1595923179002, + "notified": 1595922878649, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket bbbb to bucket aaaa on fbstaines01 is unhealthy. The detailed error is: The access key Id you provided does not exist in our records.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The access key Id you provided does not exist in our records.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "aaaa", + "id": "3a888bf3-ea7f-57bd-e120-783025ae03f6", + "local_bucket_name": "bbbb", + "local_bucket_id": "cd69064c-7559-858a-67a3-6e132448e593" + }, + "id": "ec2d4783-60e0-af2e-9fd5-323682520d78" + }, + { + "name": "105", + "index": 105, + "flagged": false, + "code": 1104, + "severity": "warning", + "component_name": "RF-Replica-5mins Snapshot Limit", + "component_type": "file-system-snapshots", + "state": "closed", + "created": 1596551026010, + "updated": 1602160248471, + "notified": 1597069605010, + "summary": "Number of snapshots for RF-Replica-5mins is approaching the limit", + "description": "The number of snapshots for RF-Replica-5mins is approaching the maximum snapshot limit for a filesystem. 468 snapshots exist; the limit is 512 snapshots. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1104", + "action": "Reviewing existing snapshots and removal of selected snapshots is recommended. The number of snapshots is very near to the limit, and loss of ability to take snapshots of filesystem RF-Replica-5mins is likely if no action is taken.", + "variables": { + "Number of Snapshots For RF-Replica-5mins": "468", + "File system Snapshot Limit": "512" + }, + "id": "4021a6d5-a434-9c37-e242-d3ba3066e8d9" + }, + { + "name": "106", + "index": 106, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0", + "component_type": "file-systems", + "state": "closed", + "created": 1596625306928, + "updated": 1627303136407, + "notified": 1597144027163, + "summary": "File system 'pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0' exceeded space quota", + "description": "The 'pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0' file system is at 118% of its space quota of 30.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.1788641611735", + "FileSystemName": "pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0" + }, + "id": "98931854-3e4f-fcca-226f-fbfdd60f0980" + }, + { + "name": "107", + "index": 107, + "flagged": true, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1597995540252, + "updated": 1597995600465, + "notified": 1597995540252, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "1de8686a-8f67-bde7-1962-220fabb6d657" + }, + { + "name": "108", + "index": 108, + "flagged": true, + "code": 1101, + "severity": "critical", + "component_name": "bc-k8s-pvc-9fdf13e1-f073-494f-b637-1e2d2e6f80e7", + "component_type": "file-systems", + "state": "closed", + "created": 1598077904855, + "updated": 1598078866608, + "notified": 1598078025089, + "summary": "File system 'bc-k8s-pvc-9fdf13e1-f073-494f-b637-1e2d2e6f80e7' exceeded space quota", + "description": "The 'bc-k8s-pvc-9fdf13e1-f073-494f-b637-1e2d2e6f80e7' file system is at 195% of its space quota of 1.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.953125", + "FileSystemName": "bc-k8s-pvc-9fdf13e1-f073-494f-b637-1e2d2e6f80e7" + }, + "id": "4eb2b06f-2646-8778-decf-f9b5bfcd8b82" + }, + { + "name": "109", + "index": 109, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1598287776522, + "updated": 1598287776522, + "notified": 1598287776522, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "df54deba-35c5-dffa-87d8-acc7f4110040" + }, + { + "name": "110", + "index": 110, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "RF-Replication <-- fbstaines01:RF-Replication", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1598368955431, + "updated": 1598369616051, + "notified": 1598368955431, + "summary": "A file system replica link requires attention", + "description": "The file system replica link RF-Replication <-- fbstaines01:RF-Replication is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "RF-Replication", + "remote_name": "fbstaines01", + "local_file_system_id": "ca9549f7-5695-fb3f-3287-80e8ea409a0b", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "RF-Replication", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "901abb5c-a304-f0f4-f7a9-35fcf529f8e7", + "id": "dcded807-5074-879f-9373-cea34bc57be8" + }, + "id": "45dcb921-2672-5958-ee53-ad6d698625ff" + }, + { + "name": "111", + "index": 111, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "jbfs", + "component_type": "file-systems", + "state": "closed", + "created": 1598450798101, + "updated": 1613431759805, + "notified": 1611383467706, + "summary": "File system 'jbfs' approaching space quota", + "description": "The 'jbfs' file system is at 93% of its space quota of 600.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.930561887423197", + "FileSystemName": "jbfs" + }, + "id": "20214658-2059-f0e5-d24e-471ee42eac07" + }, + { + "name": "112", + "index": 112, + "flagged": true, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1598515705378, + "updated": 1598515705378, + "notified": 1598515705378, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "cf0f32ff-cf3a-a4b3-8574-16b60affe8a9" + }, + { + "name": "113", + "index": 113, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1598544578283, + "updated": 1598544608468, + "notified": 1598544578283, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "8399535d-7635-0720-18fd-e25733f742ec" + }, + { + "name": "114", + "index": 114, + "flagged": true, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1598655439610, + "updated": 1598737025763, + "notified": 1598655439610, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "84d86b74-1e35-4e6c-20a1-420c54dda2b7" + }, + { + "name": "115", + "index": 115, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "bbbb --> fbstaines01:aaaa", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1601019760703, + "updated": 1601020721559, + "notified": 1601019760703, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket bbbb to bucket aaaa on fbstaines01 is unhealthy. The detailed error is: The access key Id you provided does not exist in our records.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The access key Id you provided does not exist in our records.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "aaaa", + "id": "3a888bf3-ea7f-57bd-e120-783025ae03f6", + "local_bucket_name": "bbbb", + "local_bucket_id": "cd69064c-7559-858a-67a3-6e132448e593" + }, + "id": "fd74f87e-253d-0bc3-f860-fece7f3d287f" + }, + { + "name": "116", + "index": 116, + "flagged": false, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1602150996433, + "updated": 1602154725623, + "notified": 1602150996433, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "aefb997a-a1fe-7e9d-6ffc-b80848f87cc0" + }, + { + "name": "117", + "index": 117, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "BIS-ELM-FS2 <-- fbstaines01:BIS-ELM-FS2", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1602440391621, + "updated": 1602440451791, + "notified": 1602440391621, + "summary": "A file system replica link requires attention", + "description": "The file system replica link BIS-ELM-FS2 <-- fbstaines01:BIS-ELM-FS2 is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "BIS-ELM-FS2", + "remote_name": "fbstaines01", + "local_file_system_id": "92ddbfea-ab86-7456-20d6-f7d30ac9b0ce", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "BIS-ELM-FS2", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "2b9295aa-7c45-d09e-b46c-aaf724859fe7", + "id": "aff2cfba-413e-5a87-0fcf-c9a7e69d2e6b" + }, + "id": "9371e6b9-ba66-6eb7-199c-c0ebb955b96b" + }, + { + "name": "118", + "index": 118, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1602448009938, + "updated": 1602458905222, + "notified": 1602448009938, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "0072835f-98a0-c83b-3508-068db5307c3d" + }, + { + "name": "119", + "index": 119, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1602448009939, + "updated": 1602458834071, + "notified": 1602448009939, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB3" + }, + "id": "623d6368-9315-5fb7-4b3f-d3087d30041f" + }, + { + "name": "120", + "index": 120, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1602448009939, + "updated": 1602458834071, + "notified": 1602448009939, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB6" + }, + "id": "3dac1e40-3c04-454e-1c5c-4db866bda14e" + }, + { + "name": "121", + "index": 121, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1602448020122, + "updated": 1602458722068, + "notified": 1602448020122, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "3f691af9-1117-ed91-8da6-f6fe31215ef7" + }, + { + "name": "122", + "index": 122, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1602448020122, + "updated": 1602458834071, + "notified": 1602448020122, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB7" + }, + "id": "7fbb2f17-7d68-e5a7-8ee6-b907fd8f36d4" + }, + { + "name": "123", + "index": 123, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1602448040429, + "updated": 1602458834070, + "notified": 1602448040429, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "717a822a-30e0-b722-1857-373944d29355" + }, + { + "name": "124", + "index": 124, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1602448162351, + "updated": 1602458722067, + "notified": 1602448162351, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB4" + }, + "id": "50f9551f-c7c0-ce95-47e9-0449c5473663" + }, + { + "name": "125", + "index": 125, + "flagged": false, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1602448191702, + "updated": 1602458973213, + "notified": 1602448191702, + "summary": "NFS service is unhealthy", + "description": "NFS service is unhealthy. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "1bca070d-17f5-cdc1-ac7e-f2b8e064b557" + }, + { + "name": "126", + "index": 126, + "flagged": true, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1602458857936, + "updated": 1602458857936, + "notified": 1602458857936, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "2fc1f8dd-8ea1-76f3-17c0-9df428aa8c45" + }, + { + "name": "127", + "index": 127, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "AAA <-- fbstaines01:AAA", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1603323417050, + "updated": 1615800304979, + "notified": 1603842048314, + "summary": "A file system replica link requires attention", + "description": "The file system replica link AAA <-- fbstaines01:AAA is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "AAA", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "AAA", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f" + }, + "id": "3ddb6d29-3e96-d35f-2942-24e259c98a91" + }, + { + "name": "128", + "index": 128, + "flagged": true, + "code": 1119, + "severity": "critical", + "component_name": "mm-fs1 <-- fbstaines01:mm-fs1", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1603589470513, + "updated": 1603600179543, + "notified": 1603589470513, + "summary": "A file system replica link requires attention", + "description": "The file system replica link mm-fs1 <-- fbstaines01:mm-fs1 is not healthy with error: A snapshot with the same name already exists on the target file system. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1119", + "action": "Destroy and eradicate the conflicting snapshot on the source file system and try again with a new suffix, or destroy and eradicate the conflicting snapshot on the target file system. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "mm-fs1", + "remote_name": "fbstaines01", + "local_file_system_id": "3d9ad0f9-ed10-f0c3-0793-55c51e7fc18e", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "mm-fs1", + "error_code": "Snapshot with the same name already exists on target file system.", + "remote_file_system_id": "334a4824-0773-f595-89d5-8411321f51b7", + "id": "dcf30a91-f1de-1e16-537a-d52cd64c7287" + }, + "id": "bbb43442-824f-d957-0f97-ec67267f2c9b" + }, + { + "name": "129", + "index": 129, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "zda130-pvc-580205d1-89d4-438c-83ae-2149ea0ddca9", + "component_type": "file-systems", + "state": "closed", + "created": 1605613397319, + "updated": 1605617066873, + "notified": 1605613517766, + "summary": "File system 'zda130-pvc-580205d1-89d4-438c-83ae-2149ea0ddca9' exceeded space quota", + "description": "The 'zda130-pvc-580205d1-89d4-438c-83ae-2149ea0ddca9' file system is at 414% of its space quota of 10.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "4.140625", + "FileSystemName": "zda130-pvc-580205d1-89d4-438c-83ae-2149ea0ddca9" + }, + "id": "398700c5-04c9-5b25-8f33-c31952ffb5f9" + }, + { + "name": "130", + "index": 130, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "zda130-pvc-3eea6392-78f4-45c6-bf42-101f92bdfaad", + "component_type": "file-systems", + "state": "closed", + "created": 1605618450305, + "updated": 1605618570642, + "notified": 1605618570642, + "summary": "File system 'zda130-pvc-3eea6392-78f4-45c6-bf42-101f92bdfaad' approaching space quota", + "description": "The 'zda130-pvc-3eea6392-78f4-45c6-bf42-101f92bdfaad' file system is at 94% of its space quota of 10.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.935379648208618", + "FileSystemName": "zda130-pvc-3eea6392-78f4-45c6-bf42-101f92bdfaad" + }, + "id": "fed708ce-2a69-c836-fb4a-29242879b635" + }, + { + "name": "131", + "index": 131, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "zda130-pvc-b41db9f5-0bf7-4d95-8644-0d8ae9c1e5aa", + "component_type": "file-systems", + "state": "closed", + "created": 1606671912190, + "updated": 1606672694081, + "notified": 1606672032543, + "summary": "File system 'zda130-pvc-b41db9f5-0bf7-4d95-8644-0d8ae9c1e5aa' exceeded space quota", + "description": "The 'zda130-pvc-b41db9f5-0bf7-4d95-8644-0d8ae9c1e5aa' file system is at 149% of its space quota of 10.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.49240159988403", + "FileSystemName": "zda130-pvc-b41db9f5-0bf7-4d95-8644-0d8ae9c1e5aa" + }, + "id": "6dd3bc68-6b9e-c8cd-5f3f-5bff7a9d9eda" + }, + { + "name": "132", + "index": 132, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "zda130-pvc-8da31f93-03ad-41ac-96a1-95f8e975e11d", + "component_type": "file-systems", + "state": "closed", + "created": 1606900692070, + "updated": 1606901413898, + "notified": 1606900812351, + "summary": "File system 'zda130-pvc-8da31f93-03ad-41ac-96a1-95f8e975e11d' exceeded space quota", + "description": "The 'zda130-pvc-8da31f93-03ad-41ac-96a1-95f8e975e11d' file system is at 144% of its space quota of 10.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.43953285217285", + "FileSystemName": "zda130-pvc-8da31f93-03ad-41ac-96a1-95f8e975e11d" + }, + "id": "adb3f5f1-96de-17fe-9d30-25417533e4a5" + }, + { + "name": "133", + "index": 133, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1606913834037, + "updated": 1606996674205, + "notified": 1606913834037, + "summary": "NFS service is unhealthy", + "description": "The LDAP directory server(s) configured for the NFS Directory Service are inaccessible. Please check that the NFS directory service configuration is correct and run the available directory service configuration test to ensure that it passes.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "2e16c7df-e243-aec3-a31a-bf7366d0476c" + }, + { + "name": "134", + "index": 134, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "rstor-test --> rstor:fb-target", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1607095667703, + "updated": 1607096510109, + "notified": 1607095667703, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket rstor-test to bucket fb-target on rstor is unhealthy. The detailed error is: The XML you provided was not well-formed or did not validate against our published schema.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The XML you provided was not well-formed or did not validate against our published schema.", + "remote_name": "rstor", + "remote_id": "ff9ac666-8f92-58f3-8e4c-4650e634f507", + "remote_bucket_name": "fb-target", + "id": "ac2b4d94-9b0a-d6f1-62ee-e6a814951893", + "local_bucket_name": "rstor-test", + "local_bucket_id": "cfa9fb68-d563-1701-2b49-3b6a1564b97a" + }, + "id": "620a42fd-82da-c689-23bd-4a9fb0810ea2" + }, + { + "name": "135", + "index": 135, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "rstor-test --> rstor:pilot-uk:pure-emea/fb-target", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1607164955492, + "updated": 1607165075872, + "notified": 1607164955492, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket rstor-test to bucket pilot-uk:pure-emea/fb-target on rstor is unhealthy. The detailed error is: The specified bucket is not valid.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The specified bucket is not valid.", + "remote_name": "rstor", + "remote_id": "ff9ac666-8f92-58f3-8e4c-4650e634f507", + "remote_bucket_name": "pilot-uk:pure-emea/fb-target", + "id": "ee54ecc5-de6e-19b7-8c18-107ba35652ce", + "local_bucket_name": "rstor-test", + "local_bucket_id": "cfa9fb68-d563-1701-2b49-3b6a1564b97a" + }, + "id": "45334019-8630-f05b-0c2e-2b85fa6790cb" + }, + { + "name": "136", + "index": 136, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "rstorsource --> rstor:fb-test", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1607171752808, + "updated": 1607172113862, + "notified": 1607171752808, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket rstorsource to bucket fb-test on rstor is unhealthy. The detailed error is: The XML you provided was not well-formed or did not validate against our published schema.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The XML you provided was not well-formed or did not validate against our published schema.", + "remote_name": "rstor", + "remote_id": "ff9ac666-8f92-58f3-8e4c-4650e634f507", + "remote_bucket_name": "fb-test", + "id": "dec588af-3f2a-8fda-9beb-bd899fc791e6", + "local_bucket_name": "rstorsource", + "local_bucket_id": "fd913927-298c-7697-c69a-310f3bf94acc" + }, + "id": "22dd8c81-0475-c6e8-be52-f324beb101ba" + }, + { + "name": "137", + "index": 137, + "flagged": false, + "code": 1115, + "severity": "critical", + "component_name": "lee", + "component_type": "targets", + "state": "closed", + "created": 1607488222043, + "updated": 1616924786198, + "notified": 1608006731666, + "summary": "A connection to target lee requires attention", + "description": "The connection to lee is not connected; target address: s3.i-know.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "8ab04725-5237-2ba3-fc70-cb2de97467ab" + }, + "id": "6126adae-5ec8-04fe-3c67-148adf921016" + }, + { + "name": "138", + "index": 138, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1607634232793, + "updated": 1607634533582, + "notified": 1607634232793, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "1111f1e9-dd9c-62a0-2e35-ecf4ecad2a9d" + }, + { + "name": "139", + "index": 139, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1608059330207, + "updated": 1608059345428, + "notified": 1608059330207, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "8c22e8f5-8e72-7e72-ead1-acf6644ddb58" + }, + { + "name": "140", + "index": 140, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "z-da-pxproxy", + "component_type": "file-systems", + "state": "closed", + "created": 1611042864680, + "updated": 1611830684074, + "notified": 1611561509718, + "summary": "File system 'z-da-pxproxy' exceeded space quota", + "description": "The 'z-da-pxproxy' file system is at 103% of its space quota of 2.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.02539062523283", + "FileSystemName": "z-da-pxproxy" + }, + "id": "4767fbd4-2494-60b4-4dc9-4ba44dde7c34" + }, + { + "name": "141", + "index": 141, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1611128023410, + "updated": 1611128023410, + "notified": 1611128023410, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "481e9b14-9547-4673-f019-57fc11d583d8" + }, + { + "name": "142", + "index": 142, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1613431520953, + "updated": 1613436066707, + "notified": 1613431520953, + "summary": "NFS service is unhealthy", + "description": "The LDAP directory server(s) configured for the NFS Directory Service are inaccessible. Please check that the NFS directory service configuration is correct and run the available directory service configuration test to ensure that it passes.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "44b3fcca-4975-8b4d-2e2c-fb6eee3bef28" + }, + { + "name": "143", + "index": 143, + "flagged": true, + "code": 1009, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1613431609712, + "updated": 1613435484079, + "notified": 1613431609712, + "summary": "SMB service is unhealthy", + "description": "SMB service is unhealthy. File systems can not be accessed through SMB protocol. Please check your directory service settings. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1009", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "524b57e2-c5e7-a877-8830-e7cd4f2b0df7" + }, + { + "name": "144", + "index": 144, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "zda140-pvc-0e11faf1-5bd2-464f-9681-6e44b35198f1", + "component_type": "file-systems", + "state": "closed", + "created": 1613566256016, + "updated": 1614759366394, + "notified": 1614084914206, + "summary": "File system 'zda140-pvc-0e11faf1-5bd2-464f-9681-6e44b35198f1' exceeded space quota", + "description": "The 'zda140-pvc-0e11faf1-5bd2-464f-9681-6e44b35198f1' file system is at 116783% of its space quota of 10.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1167.828185606", + "FileSystemName": "zda140-pvc-0e11faf1-5bd2-464f-9681-6e44b35198f1" + }, + "id": "ce62abc0-62fa-9ba4-d640-a348eeb99ee7" + }, + { + "name": "145", + "index": 145, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "gaborsrcback <-- fbstaines01:gaborsrc", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1613653788192, + "updated": 1613654449670, + "notified": 1613653788192, + "summary": "A file system replica link requires attention", + "description": "The file system replica link gaborsrcback <-- fbstaines01:gaborsrc is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "gaborsrcback", + "remote_name": "fbstaines01", + "local_file_system_id": "e37a9fee-a19e-5392-4766-036d5622ac95", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "gaborsrc", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "db251d44-aff8-efab-eac0-edca5f4533c5", + "id": "7147d014-1c31-4c3b-21e5-e4ef04fb8675" + }, + "id": "c7d8e27f-cf5c-88a4-caba-e4732153afd9" + }, + { + "name": "146", + "index": 146, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "gaborsrcback <-- fbstaines01:gaborsrc", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1613654630055, + "updated": 1613656253817, + "notified": 1613654630055, + "summary": "A file system replica link requires attention", + "description": "The file system replica link gaborsrcback <-- fbstaines01:gaborsrc is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "gaborsrcback", + "remote_name": "fbstaines01", + "local_file_system_id": "e37a9fee-a19e-5392-4766-036d5622ac95", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "gaborsrc", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "db251d44-aff8-efab-eac0-edca5f4533c5", + "id": "7147d014-1c31-4c3b-21e5-e4ef04fb8675" + }, + "id": "3b6588e4-83d1-e913-8ee9-d82d1d6175a7" + }, + { + "name": "147", + "index": 147, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "zda140-pvc-b3f89937-805f-46a5-8850-fefc55df689c", + "component_type": "file-systems", + "state": "closed", + "created": 1613659547409, + "updated": 1614759125634, + "notified": 1614178351077, + "summary": "File system 'zda140-pvc-b3f89937-805f-46a5-8850-fefc55df689c' approaching space quota", + "description": "The 'zda140-pvc-b3f89937-805f-46a5-8850-fefc55df689c' file system is at 91% of its space quota of 10.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.909020090103149", + "FileSystemName": "zda140-pvc-b3f89937-805f-46a5-8850-fefc55df689c" + }, + "id": "28411ac4-a837-c0c7-954d-64540e2a644d" + }, + { + "name": "148", + "index": 148, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "zda140-pvc-931577e3-27a1-41ce-96e6-980a2ece5ed1", + "component_type": "file-systems", + "state": "closed", + "created": 1613659727936, + "updated": 1614759125634, + "notified": 1614179494172, + "summary": "File system 'zda140-pvc-931577e3-27a1-41ce-96e6-980a2ece5ed1' approaching space quota", + "description": "The 'zda140-pvc-931577e3-27a1-41ce-96e6-980a2ece5ed1' file system is at 91% of its space quota of 10.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.909322643280029", + "FileSystemName": "zda140-pvc-931577e3-27a1-41ce-96e6-980a2ece5ed1" + }, + "id": "3033c3df-2ef0-a31f-05ec-74c6e69457b4" + }, + { + "name": "149", + "index": 149, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "gaborsrcback <-- fbstaines01:gaborsrc", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1613663830272, + "updated": 1613664191118, + "notified": 1613663830272, + "summary": "A file system replica link requires attention", + "description": "The file system replica link gaborsrcback <-- fbstaines01:gaborsrc is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "gaborsrcback", + "remote_name": "fbstaines01", + "local_file_system_id": "71c0183c-6e73-ff73-e03a-adc063351ed6", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "gaborsrc", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "9a4c300f-8a7d-4d6d-0b45-7ab2b2f8ac8a", + "id": "4f122c13-f1ee-d80f-b190-2fe8f43c8653" + }, + "id": "ea3f4776-a271-59c1-2e0e-bc41394b3cd8" + }, + { + "name": "150", + "index": 150, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1613734281550, + "updated": 1614097600887, + "notified": 1613734281550, + "summary": "NFS service is unhealthy", + "description": "The LDAP directory server(s) configured for the NFS Directory Service are inaccessible. Please check that the NFS directory service configuration is correct and run the available directory service configuration test to ensure that it passes.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "ba461e32-b924-3e38-d389-ffb4cb2de67c" + }, + { + "name": "151", + "index": 151, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "jbwin <-- fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1614024625834, + "updated": 1614025107171, + "notified": 1614024625834, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin <-- fbstaines01:jbwin is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "08b12cba-092c-ca86-b58c-fa91d4311b37", + "id": "bd6b57f5-8ad7-571c-7fa2-7a1019dfb5dd" + }, + "id": "150d41eb-a5e9-3965-f1a2-9a01c40136f4" + }, + { + "name": "152", + "index": 152, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "gaborsrcback <-- fbstaines01:gaborsrc", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1614627284745, + "updated": 1614627405340, + "notified": 1614627284745, + "summary": "A file system replica link requires attention", + "description": "The file system replica link gaborsrcback <-- fbstaines01:gaborsrc is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "gaborsrcback", + "remote_name": "fbstaines01", + "local_file_system_id": "24d12fc9-272e-1e34-5686-97f79898834b", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "gaborsrc", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "576d8973-4dec-814e-2612-f32c63f0826a", + "id": "df10c8f5-bf41-fd98-9cce-2294d5accc67" + }, + "id": "1cda9eba-4f34-7739-462c-1511f37bdae0" + }, + { + "name": "153", + "index": 153, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1614790580318, + "updated": 1618848095354, + "notified": 1614790580318, + "summary": "NFS service is unhealthy", + "description": "The LDAP directory server(s) configured for the NFS Directory Service are inaccessible. Please check that the NFS directory service configuration is correct and run the available directory service configuration test to ensure that it passes.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "3f482bc0-3cf4-6592-70d7-e876a7fde385" + }, + { + "name": "154", + "index": 154, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "AAA <-- fbstaines01:AAA", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1615887459454, + "updated": 1618848071907, + "notified": 1616405976152, + "summary": "A file system replica link requires attention", + "description": "The file system replica link AAA <-- fbstaines01:AAA is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "AAA", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "AAA", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f" + }, + "id": "381b3911-ac51-3131-fb16-dc51e34d3d56" + }, + { + "name": "155", + "index": 155, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "test2-rep-fs <-- fbstaines01:test2-rep-fs", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1616059555763, + "updated": 1616060457581, + "notified": 1616059555763, + "summary": "A file system replica link requires attention", + "description": "The file system replica link test2-rep-fs <-- fbstaines01:test2-rep-fs is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "test2-rep-fs", + "remote_name": "fbstaines01", + "local_file_system_id": "e563e3c4-4ecd-d2f4-2cc9-96deb85554ec", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "test2-rep-fs", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "1b3bd2a0-265e-edc8-8561-83171c1a391a", + "id": "6fa170af-31fb-6d5c-b808-9e259bacf275" + }, + "id": "22623419-3dac-a5dc-4fa4-d208f9ae5f0e" + }, + { + "name": "156", + "index": 156, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "RICH-UOB <-- fbstaines01:RICH-UOB", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1617879044469, + "updated": 1617965316422, + "notified": 1617879044469, + "summary": "A file system replica link requires attention", + "description": "The file system replica link RICH-UOB <-- fbstaines01:RICH-UOB is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "RICH-UOB", + "remote_name": "fbstaines01", + "local_file_system_id": "7d163190-8912-d73f-e7be-8e43b356cc8f", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "RICH-UOB", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "366a436b-b9fd-39a5-de44-2aab7e074d57", + "id": "3010ee33-41bc-7719-2f51-884fbff17d71" + }, + "id": "8819ef21-9a47-8ca1-96ab-4db63a629056" + }, + { + "name": "157", + "index": 157, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "RF-RETENTION <-- fbstaines01:RF-RETENTION", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1617879225028, + "updated": 1617965316422, + "notified": 1617879225028, + "summary": "A file system replica link requires attention", + "description": "The file system replica link RF-RETENTION <-- fbstaines01:RF-RETENTION is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "RF-RETENTION", + "remote_name": "fbstaines01", + "local_file_system_id": "15d28ad5-40a1-2f20-6240-00ab45e6ddbb", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "RF-RETENTION", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3fe48ee6-3189-c01d-6694-9c1f7b4a3535", + "id": "b03c44f0-2a15-5a08-42cb-3e5c18ec0137" + }, + "id": "78f6daba-4600-4b31-e80d-5582a95a11a5" + }, + { + "name": "158", + "index": 158, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "RF-RETENTION <-- fbstaines01:RF-RETENTION", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1617965436799, + "updated": 1617965557114, + "notified": 1617965436799, + "summary": "A file system replica link requires attention", + "description": "The file system replica link RF-RETENTION <-- fbstaines01:RF-RETENTION is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "RF-RETENTION", + "remote_name": "fbstaines01", + "local_file_system_id": "15d28ad5-40a1-2f20-6240-00ab45e6ddbb", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "RF-RETENTION", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3fe48ee6-3189-c01d-6694-9c1f7b4a3535", + "id": "b03c44f0-2a15-5a08-42cb-3e5c18ec0137" + }, + "id": "cda47b6d-7535-5ad6-cd38-3422c16845ba" + }, + { + "name": "159", + "index": 159, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN1", + "component_type": "hardware", + "state": "closed", + "created": 1618929718678, + "updated": 1618929767215, + "notified": 1618929718678, + "summary": "Fan CH1.FM2.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN1", + "details": "Slow Fan" + }, + "id": "a65e40af-d53b-be87-f315-cc444179ded1" + }, + { + "name": "160", + "index": 160, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN2", + "component_type": "hardware", + "state": "closed", + "created": 1618929718678, + "updated": 1618929767215, + "notified": 1618929718678, + "summary": "Fan CH1.FM2.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN2", + "details": "Slow Fan" + }, + "id": "89651a3b-26b5-65f3-9c1a-9e249810b85c" + }, + { + "name": "161", + "index": 161, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN3", + "component_type": "hardware", + "state": "closed", + "created": 1618929718678, + "updated": 1618929767215, + "notified": 1618929718678, + "summary": "Fan CH1.FM2.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN3", + "details": "Slow Fan" + }, + "id": "d3722686-4cfc-3d2e-2cd1-766caccd1e79" + }, + { + "name": "162", + "index": 162, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN4", + "component_type": "hardware", + "state": "closed", + "created": 1618929718678, + "updated": 1618929767215, + "notified": 1618929718678, + "summary": "Fan CH1.FM2.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN4", + "details": "Slow Fan" + }, + "id": "0daa868a-74b8-621d-c53f-bf021ac8741c" + }, + { + "name": "163", + "index": 163, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN5", + "component_type": "hardware", + "state": "closed", + "created": 1618929718678, + "updated": 1618929767215, + "notified": 1618929718678, + "summary": "Fan CH1.FM2.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN5", + "details": "Slow Fan" + }, + "id": "ca141024-d6d5-09e5-ed42-a1a2f7002123" + }, + { + "name": "164", + "index": 164, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN6", + "component_type": "hardware", + "state": "closed", + "created": 1618929718678, + "updated": 1618929767215, + "notified": 1618929718678, + "summary": "Fan CH1.FM2.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN6", + "details": "Slow Fan" + }, + "id": "6cd19a2a-09b7-56c4-5d7f-36a7f699dbb6" + }, + { + "name": "165", + "index": 165, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1618929718688, + "updated": 1618933170410, + "notified": 1618929718688, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "6d8baabf-6158-204e-6f90-9e2090474780" + }, + { + "name": "166", + "index": 166, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN1", + "component_type": "hardware", + "state": "closed", + "created": 1618929782299, + "updated": 1618929828633, + "notified": 1618929782299, + "summary": "Fan CH1.FM1.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN1", + "details": "Slow Fan" + }, + "id": "0c229dca-1f26-1fa4-734c-4038dffda9ca" + }, + { + "name": "167", + "index": 167, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN2", + "component_type": "hardware", + "state": "closed", + "created": 1618929782299, + "updated": 1618929828633, + "notified": 1618929782299, + "summary": "Fan CH1.FM1.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN2", + "details": "Slow Fan" + }, + "id": "95db781c-7f9d-0597-c761-fd69302ed5e5" + }, + { + "name": "168", + "index": 168, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN3", + "component_type": "hardware", + "state": "closed", + "created": 1618929782299, + "updated": 1618929828633, + "notified": 1618929782299, + "summary": "Fan CH1.FM1.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN3", + "details": "Slow Fan" + }, + "id": "cd657a67-1a80-cebd-7d06-45c225b7859f" + }, + { + "name": "169", + "index": 169, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN4", + "component_type": "hardware", + "state": "closed", + "created": 1618929782299, + "updated": 1618929828633, + "notified": 1618929782299, + "summary": "Fan CH1.FM1.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN4", + "details": "Slow Fan" + }, + "id": "7f811d27-130a-5083-24bc-f1168e01cd4e" + }, + { + "name": "170", + "index": 170, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN5", + "component_type": "hardware", + "state": "closed", + "created": 1618929782299, + "updated": 1618929797591, + "notified": 1618929782299, + "summary": "Fan CH1.FM1.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN5", + "details": "Slow Fan" + }, + "id": "457ab78a-598d-0fc2-3177-1231f2c04623" + }, + { + "name": "171", + "index": 171, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN6", + "component_type": "hardware", + "state": "closed", + "created": 1618929782299, + "updated": 1618929828633, + "notified": 1618929782299, + "summary": "Fan CH1.FM1.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN6", + "details": "Slow Fan" + }, + "id": "4c6c09d4-985e-5a39-cc9f-bcadeeb3af45" + }, + { + "name": "172", + "index": 172, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1618929784184, + "updated": 1618929829552, + "notified": 1618929784184, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": null + }, + "id": "d72815e1-fb68-2dd5-79b4-308cc7bcf11a" + }, + { + "name": "173", + "index": 173, + "flagged": false, + "code": 1123, + "severity": "warning", + "component_name": "pureuser", + "component_type": "security", + "state": "closed", + "created": 1618931052290, + "updated": 1651848154519, + "notified": 1651488046135, + "summary": "Insecure Default pureuser Password", + "description": "The user pureuser is configured with the default password. There will be notifications weekly.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1123", + "action": "Please change the user pureuser's password now. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": {}, + "id": "f5a38073-ba3d-2170-4123-48f497669dd6" + }, + { + "name": "174", + "index": 174, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1618931072374, + "updated": 1618931072374, + "notified": 1618931072374, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "f8974ce3-41c1-d699-2775-7a7df9311dcc" + }, + { + "name": "175", + "index": 175, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1618931265068, + "updated": 1618931275221, + "notified": 1618931265068, + "summary": "Blade CH1.FB2 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "cacae8f6-f7fa-923c-bf70-b5f29614bd5d" + }, + { + "name": "176", + "index": 176, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1618931488042, + "updated": 1618931488042, + "notified": 1618931488042, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "69635901-30ad-38bc-1fb8-c76e1467e6af" + }, + { + "name": "177", + "index": 177, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1618931690689, + "updated": 1618931690689, + "notified": 1618931690689, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "e26094be-8b6e-e1a3-66a9-6935f3f07d40" + }, + { + "name": "178", + "index": 178, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1618931903944, + "updated": 1618934898883, + "notified": 1618931903944, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "0b6254b0-676d-059b-6dbd-eb4c3a4c4f62" + }, + { + "name": "179", + "index": 179, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1618932106831, + "updated": 1618932258850, + "notified": 1618932106831, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "0df1e6d9-8c1a-c786-6201-497abd2e0581" + }, + { + "name": "180", + "index": 180, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1618932309675, + "updated": 1618932472345, + "notified": 1618932309675, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "48f6e142-f58e-7aa2-ec0d-69eefe851d66" + }, + { + "name": "181", + "index": 181, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1618937639253, + "updated": 1619162111866, + "notified": 1618937639253, + "summary": "Data Protocol needs attention", + "description": "The LDAP directory server(s) configured for the NFS Directory Service are inaccessible. Please check that the NFS directory service configuration is correct and run the available directory service configuration test to ensure that it passes.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "709be086-b111-898c-8e41-9ad2f42a4840" + }, + { + "name": "182", + "index": 182, + "flagged": false, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1619185063934, + "updated": 1620405054864, + "notified": 1619704230460, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while obtaining kerberos credentials by authenticating with the domain using the computer account. The failure occurred while requesting credentials from ad.uklab.purestorage.com:88.\nUnable to get a kerberos client ticket to communicate with the domain. Ensure that the computer account has not been deleted or reset, and that the domain is reachable, and try again.\nThis may cause users to be unable to access files even if mounting succeeds, due to inability to resolve their group membership information and authorize them.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "If the domain was recently joined, or if the server contacted was newly added, this can be the result of changes not having propagated throughout the domain and may be temporary. If this is not the case, please work with the team that administers the Active Directory domain to correct the authentication issues.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "kerberos-initialization", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "cb490ae6-d304-30d5-6358-33616c19b879" + }, + { + "name": "183", + "index": 183, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1619513099572, + "updated": 1619513521350, + "notified": 1619513099572, + "summary": "Ethernet connector CH1.FM1.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "f04633b4-183d-2636-bab0-4cdbdfd2b5fe" + }, + { + "name": "184", + "index": 184, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1619513099572, + "updated": 1619513521350, + "notified": 1619513099572, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "5f13bbac-7c09-932e-ba4f-b4541710caf0" + }, + { + "name": "185", + "index": 185, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1619513107885, + "updated": 1619513589215, + "notified": 1619513107885, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. All bucket and file system replica links associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connected\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "27228826-c80f-5c91-91be-5b6343101f86" + }, + { + "name": "186", + "index": 186, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1619513129748, + "updated": 1619513521350, + "notified": 1619513129748, + "summary": "Ethernet connector CH1.FM2.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "5d233c41-0525-004d-70c1-45c03f29eaf8" + }, + { + "name": "187", + "index": 187, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1619513129748, + "updated": 1619513521350, + "notified": 1619513129748, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "c9c96975-26ba-fbe5-5813-433b9c034e62" + }, + { + "name": "188", + "index": 188, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1619513191847, + "updated": 1619514333906, + "notified": 1619513191847, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "b2fb4926-0550-3783-a0c6-d27ee5ebd69e" + }, + { + "name": "189", + "index": 189, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "3b00818b-eb31-43eb-1edf-9a8715d28272 -> bc-bundesagentur", + "component_type": "policies", + "state": "closed", + "created": 1619860388351, + "updated": 1619862189372, + "notified": 1619860388351, + "summary": "Policy fbstaines01:5mins for file system bc-bundesagentur requires attention", + "description": "The scheduled replication from bc-bundesagentur to fbstaines01:bc-bundesagentur for policy fbstaines01:5mins has delayed more than 46m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "3b00818b-eb31-43eb-1edf-9a8715d28272", + "file_system_replica_link_id": "e0877abf-f238-adc5-571e-fba30be00957", + "remote_name": "fbstaines01", + "local_file_system_id": "85de1cff-e439-bc6e-5916-e49988362b6d", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "1d1b7875-28cf-ff61-0892-a9e8f943094d", + "replication_policy_period": "5m" + }, + "id": "0723cbf1-db71-39d5-c05d-948db9958555" + }, + { + "name": "190", + "index": 190, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "bc-bundesagentur <-- fbstaines01:bc-bundesagentur", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1620285683231, + "updated": 1620793783388, + "notified": 1620718168244, + "summary": "A file system replica link requires attention", + "description": "The file system replica link bc-bundesagentur <-- fbstaines01:bc-bundesagentur is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "bc-bundesagentur", + "remote_name": "fbstaines01", + "local_file_system_id": "85de1cff-e439-bc6e-5916-e49988362b6d", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "bc-bundesagentur", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "1d1b7875-28cf-ff61-0892-a9e8f943094d", + "id": "e0877abf-f238-adc5-571e-fba30be00957" + }, + "id": "823aa536-22f5-d532-8cf8-3ac7a3070383" + }, + { + "name": "191", + "index": 191, + "flagged": false, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1620636566876, + "updated": 1627303061011, + "notified": 1621155595849, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while obtaining kerberos credentials by authenticating with the domain using the computer account. The failure occurred while requesting credentials from ad.uklab.purestorage.com:88.\nUnable to get a kerberos client ticket to communicate with the domain. Ensure that the computer account has not been deleted or reset, and that the domain is reachable, and try again.\nThis may cause users to be unable to access files even if mounting succeeds, due to inability to resolve their group membership information and authorize them.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "If the domain was recently joined, or if the server contacted was newly added, this can be the result of changes not having propagated throughout the domain and may be temporary. If this is not the case, please work with the team that administers the Active Directory domain to correct the authentication issues.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "kerberos-initialization", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "a8742a9a-396c-0b7f-c692-4a40e18b4709" + }, + { + "name": "192", + "index": 192, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-target <-- fbstaines01:lee-repl-source", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1620917503868, + "updated": 1620919007504, + "notified": 1620917503868, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-target <-- fbstaines01:lee-repl-source is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-target", + "remote_name": "fbstaines01", + "local_file_system_id": "d8d05c83-4e93-0751-2154-1668db585848", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "lee-repl-source", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "4a648418-17b8-aea2-ad9d-d284c94bcd94", + "id": "d80daf4b-ef9b-55c9-761c-50add3e59a9b" + }, + "id": "b1e34e16-68df-f263-4808-0ada94a9a8f3" + }, + { + "name": "193", + "index": 193, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "de7760af-1234-8815-7071-43956f161b12 -> lee-repl-target", + "component_type": "policies", + "state": "closed", + "created": 1620919740589, + "updated": 1621001991407, + "notified": 1620919740589, + "summary": "Policy fbstaines01:lee_test_pol for file system lee-repl-target requires attention", + "description": "The scheduled replication from lee-repl-target to fbstaines01:lee-repl-source for policy fbstaines01:lee_test_pol has delayed more than 23h 26m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "de7760af-1234-8815-7071-43956f161b12", + "file_system_replica_link_id": "d80daf4b-ef9b-55c9-761c-50add3e59a9b", + "remote_name": "fbstaines01", + "local_file_system_id": "d8d05c83-4e93-0751-2154-1668db585848", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "4a648418-17b8-aea2-ad9d-d284c94bcd94", + "replication_policy_period": "15m" + }, + "id": "7e0d95d2-129f-ba82-c28c-30a7c222530c" + }, + { + "name": "194", + "index": 194, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-target --> fbstaines01:lee-repl-source", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1621169200209, + "updated": 1621169320568, + "notified": 1621169200209, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-target --> fbstaines01:lee-repl-source is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-target", + "remote_name": "fbstaines01", + "local_file_system_id": "d8d05c83-4e93-0751-2154-1668db585848", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "lee-repl-source", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "4a648418-17b8-aea2-ad9d-d284c94bcd94", + "id": "d80daf4b-ef9b-55c9-761c-50add3e59a9b" + }, + "id": "2b57f72e-ea18-5172-4f60-366a0aacd107" + }, + { + "name": "195", + "index": 195, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-remote <-- fbstaines01:lee-repl-local", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1621178943766, + "updated": 1621179364894, + "notified": 1621178943766, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-remote <-- fbstaines01:lee-repl-local is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-remote", + "remote_name": "fbstaines01", + "local_file_system_id": "4088ea52-7042-8847-5cf4-3fe8af61c881", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "lee-repl-local", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "352736cd-2753-6c84-a58d-7146e5c5c235", + "id": "8f3dbcf7-dc26-a9d7-9251-6b70de9456fd" + }, + "id": "a602f06d-1435-d1d7-92de-d8b378061434" + }, + { + "name": "196", + "index": 196, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "bc-bundesagentur <-- fbstaines01:bc-bundesagentur", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1621237418366, + "updated": 1621237839622, + "notified": 1621237418366, + "summary": "A file system replica link requires attention", + "description": "The file system replica link bc-bundesagentur <-- fbstaines01:bc-bundesagentur is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "bc-bundesagentur", + "remote_name": "fbstaines01", + "local_file_system_id": "85de1cff-e439-bc6e-5916-e49988362b6d", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "bc-bundesagentur", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "1d1b7875-28cf-ff61-0892-a9e8f943094d", + "id": "e0877abf-f238-adc5-571e-fba30be00957" + }, + "id": "82dc4acc-90c1-5ba1-af52-59bada354a5b" + }, + { + "name": "197", + "index": 197, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "bc-bundesagentur <-- fbstaines01:bc-bundesagentur", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1621329383278, + "updated": 1621330285587, + "notified": 1621329383278, + "summary": "A file system replica link requires attention", + "description": "The file system replica link bc-bundesagentur <-- fbstaines01:bc-bundesagentur is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "bc-bundesagentur", + "remote_name": "fbstaines01", + "local_file_system_id": "85de1cff-e439-bc6e-5916-e49988362b6d", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "bc-bundesagentur", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "1d1b7875-28cf-ff61-0892-a9e8f943094d", + "id": "e0877abf-f238-adc5-571e-fba30be00957" + }, + "id": "0fe0f816-1789-a8d8-5092-6d9ef45c6c16" + }, + { + "name": "198", + "index": 198, + "flagged": false, + "code": 1106, + "severity": "critical", + "component_name": "users of z-k8s-datahub", + "component_type": "usage/users", + "state": "closed", + "created": 1621350673112, + "updated": 1627302902643, + "notified": 1621870166401, + "summary": "One user has reached or exceeded 100% of their quota on file system z-k8s-datahub", + "description": "One user has reached or exceeded 100% of their allotted write size limitation on file system z-k8s-datahub. ", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1106", + "action": "Either the quota assigned to the user must be increased, or the space usage must be reduced.", + "variables": { + "File System Name": "z-k8s-datahub", + "Number Of Users Between 80%-90% Usage": "0", + "Number Of Users Above 100% Usage": "1", + "Number Of Users Between 90%-100% Usage": "0" + }, + "id": "759719a8-6764-f2fd-0f22-d2bd491ea02d" + }, + { + "name": "199", + "index": 199, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jboot3 --> fbstaines01:jboot3", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1621419838219, + "updated": 1621506089939, + "notified": 1621419838219, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jboot3 --> fbstaines01:jboot3 is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jboot3", + "remote_name": "fbstaines01", + "local_file_system_id": "611d7feb-2769-2fa4-8875-365d64160d7e", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jboot3", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "cb5fabd3-dfbc-c357-f2a6-ee95aacdaf13", + "id": "88d4f634-8377-1ea5-81d7-5df214048e35" + }, + "id": "965ca363-e339-8d7e-3714-621236a4808c" + }, + { + "name": "200", + "index": 200, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "bc-bundesagentur <-- fbstaines01:bc-bundesagentur", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1621509931972, + "updated": 1623137675065, + "notified": 1622028538121, + "summary": "A file system replica link requires attention", + "description": "The file system replica link bc-bundesagentur <-- fbstaines01:bc-bundesagentur is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "bc-bundesagentur", + "remote_name": "fbstaines01", + "local_file_system_id": "85de1cff-e439-bc6e-5916-e49988362b6d", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "bc-bundesagentur", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "1d1b7875-28cf-ff61-0892-a9e8f943094d", + "id": "e0877abf-f238-adc5-571e-fba30be00957" + }, + "id": "3453d33f-6014-e12b-9595-863034a7edc3" + }, + { + "name": "201", + "index": 201, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1621813481264, + "updated": 1621825267966, + "notified": 1621813481264, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "f8f134cd-6d60-a04c-fba7-8e6001d7609e" + }, + { + "name": "202", + "index": 202, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "cmeidam", + "component_type": "file-systems", + "state": "closed", + "created": 1621968968640, + "updated": 1621975826355, + "notified": 1621968968640, + "summary": "File system 'cmeidam' approaching space quota", + "description": "The 'cmeidam' file system is at 100% of its space quota of 20.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.999205780029297", + "FileSystemName": "cmeidam" + }, + "id": "0148519e-721f-3d0d-4889-11c701f0ef5e" + }, + { + "name": "203", + "index": 203, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "cmeidam", + "component_type": "file-systems", + "state": "closed", + "created": 1622142323941, + "updated": 1622142985385, + "notified": 1622142384232, + "summary": "File system 'cmeidam' exceeded space quota", + "description": "The 'cmeidam' file system is at 120% of its space quota of 20.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.2", + "FileSystemName": "cmeidam" + }, + "id": "bfb839ee-e30a-fd6a-c803-fef8d27ffccd" + }, + { + "name": "204", + "index": 204, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "cmeidam", + "component_type": "file-systems", + "state": "closed", + "created": 1622377576390, + "updated": 1622411021121, + "notified": 1622377576390, + "summary": "File system 'cmeidam' exceeded space quota", + "description": "The 'cmeidam' file system is at 120% of its space quota of 20.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.2", + "FileSystemName": "cmeidam" + }, + "id": "fd586cd9-0eb5-fb3a-da8f-117a3ab93655" + }, + { + "name": "205", + "index": 205, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "cmeidam", + "component_type": "file-systems", + "state": "closed", + "created": 1622646938089, + "updated": 1627303136407, + "notified": 1623165565071, + "summary": "File system 'cmeidam' exceeded space quota", + "description": "The 'cmeidam' file system is at 254% of its space quota of 20.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "2.53854904174805", + "FileSystemName": "cmeidam" + }, + "id": "4697dd46-65e9-f719-f067-1be5f99bac08" + }, + { + "name": "206", + "index": 206, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "z-oracle_orabkup <-- fbstaines01:z-oracle_orabkup", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1623076440332, + "updated": 1623076560716, + "notified": 1623076440332, + "summary": "A file system replica link requires attention", + "description": "The file system replica link z-oracle_orabkup <-- fbstaines01:z-oracle_orabkup is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "z-oracle_orabkup", + "remote_name": "fbstaines01", + "local_file_system_id": "15330344-584a-1609-e4bd-a1e207cc3107", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "z-oracle_orabkup", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "1f794f63-1e93-22e2-d347-e3ec1aa4f52c", + "id": "20e269c7-eee0-4dcc-76bf-a97fec707ce8" + }, + "id": "26989db5-b81c-3772-2634-cdec12d60a02" + }, + { + "name": "207", + "index": 207, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "bc-kafka-queue --> fbstaines01:bc-kafka-queue", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1623394235911, + "updated": 1623394536676, + "notified": 1623394235911, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket bc-kafka-queue to bucket bc-kafka-queue on fbstaines01 is unhealthy. The detailed error is: Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "bc-kafka-queue", + "id": "17e65b5b-36f7-5351-ffe9-5674533f082d", + "local_bucket_name": "bc-kafka-queue", + "local_bucket_id": "5e4d0cf1-3b5f-00f3-7fa8-e6c4b64bd7ff" + }, + "id": "f7b871eb-1f3b-b5f2-8e02-bc649cb5a2ec" + }, + { + "name": "208", + "index": 208, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "repl-test2 --> fbstaines01:repl-test1", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1623394837340, + "updated": 1623394837340, + "notified": 1623394837340, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket repl-test2 to bucket repl-test1 on fbstaines01 is unhealthy. The detailed error is: The access key Id you provided does not exist in our records.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The access key Id you provided does not exist in our records.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "repl-test1", + "id": "43e8a9a7-40a0-1b0a-97b2-aad4446d365d", + "local_bucket_name": "repl-test2", + "local_bucket_id": "6b9fb349-0a67-c4e8-7680-9c8b775d6e3a" + }, + "id": "deb66c86-a2f1-c266-948f-10750ea342bc" + }, + { + "name": "209", + "index": 209, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1625795652593, + "updated": 1627303154057, + "notified": 1626314693129, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Evacuated", + "Blade": "CH1.FB7" + }, + "id": "69c86959-1dc2-171a-af7f-68d69535d8d4" + }, + { + "name": "210", + "index": 210, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1625799201198, + "updated": 1625807025683, + "notified": 1625799201198, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800168545246124", + "FileSystemName": "vertica-datagen" + }, + "id": "ba88cdca-c475-7cbc-5ce4-a9383cdcad3e" + }, + { + "name": "211", + "index": 211, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "z-fbhosts_kernel_compile", + "component_type": "file-systems", + "state": "closed", + "created": 1625800705916, + "updated": 1625801488550, + "notified": 1625800705916, + "summary": "File system 'z-fbhosts_kernel_compile' approaching space quota", + "description": "The 'z-fbhosts_kernel_compile' file system is at 80% of its space quota of 3.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.801653385162354", + "FileSystemName": "z-fbhosts_kernel_compile" + }, + "id": "7dde26c7-43ed-b51b-0c3e-de37f69df362" + }, + { + "name": "212", + "index": 212, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "z-fbhost01_home", + "component_type": "file-systems", + "state": "closed", + "created": 1625800946828, + "updated": 1625800946828, + "notified": 1625800946828, + "summary": "File system 'z-fbhost01_home' approaching space quota", + "description": "The 'z-fbhost01_home' file system is at 81% of its space quota of 400.00 M. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.805947265625", + "FileSystemName": "z-fbhost01_home" + }, + "id": "49e44041-c129-200b-05a1-485929308209" + }, + { + "name": "213", + "index": 213, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbnfs --> fbstaines01:jbnfs", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1627039486854, + "updated": 1627125782241, + "notified": 1627039486854, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbnfs --> fbstaines01:jbnfs is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbnfs", + "remote_name": "fbstaines01", + "local_file_system_id": "41b51b14-58e5-80b6-98ff-4e2a836049a4", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbnfs", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "f43bb114-2d62-6a62-06fa-3da31d576cbf", + "id": "2a8676d3-0f9e-89be-bbed-33e57405e83a" + }, + "id": "54679b5e-040a-7413-33d5-6097143617df" + }, + { + "name": "214", + "index": 214, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1627892629178, + "updated": 1627892706875, + "notified": 1627892629178, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "1e7c7e54-aac6-41de-b8a9-215f5ca2acf9" + }, + { + "name": "215", + "index": 215, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1627892629178, + "updated": 1629302807597, + "notified": 1628563274058, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB5" + }, + "id": "89c29124-e036-3e07-2847-e1d6904310f5" + }, + { + "name": "216", + "index": 216, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1627892629179, + "updated": 1629238778756, + "notified": 1629237752529, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB7" + }, + "id": "1c9b77fa-daa4-91af-8bad-ce3891426e70" + }, + { + "name": "217", + "index": 217, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1627892638160, + "updated": 1627892699517, + "notified": 1627892638160, + "summary": "Data Protocol needs attention", + "description": "Data Protocol needs attention. The nfs service may be stopped or unhealthy due to internal error. Other enabled protocols may also be impacted. Please manually check NFS, SMB, HTTP, S3 for issues.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "e24396db-1236-40ca-fb3c-9b617a1e7a28" + }, + { + "name": "218", + "index": 218, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "AIRI", + "component_type": "file-systems", + "state": "open", + "created": 1627892727562, + "updated": 1682296294262, + "notified": 1631814626487, + "summary": "File system 'AIRI' approaching space quota", + "description": "The 'AIRI' file system is at 89% of its space quota of 170.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.893411406348733", + "FileSystemName": "AIRI" + }, + "id": "3b0f5e48-81e4-e3db-40b6-d172f74ed927" + }, + { + "name": "219", + "index": 219, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "cmeidam", + "component_type": "file-systems", + "state": "open", + "created": 1627892727562, + "updated": 1682296294262, + "notified": 1628411385171, + "summary": "File system 'cmeidam' exceeded space quota", + "description": "The 'cmeidam' file system is at 254% of its space quota of 20.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "2.53854904174805", + "FileSystemName": "cmeidam" + }, + "id": "74e83522-c993-bcc7-d958-44957524134b" + }, + { + "name": "220", + "index": 220, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03", + "component_type": "file-systems", + "state": "open", + "created": 1627892727562, + "updated": 1682296294262, + "notified": 1628411385171, + "summary": "File system 'k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03' approaching space quota", + "description": "The 'k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03' file system is at 91% of its space quota of 1.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.908089637756348", + "FileSystemName": "k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03" + }, + "id": "70a623fa-4f09-28df-f8bf-fb6b5a4baa6c" + }, + { + "name": "221", + "index": 221, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0", + "component_type": "file-systems", + "state": "open", + "created": 1627892727563, + "updated": 1682296294262, + "notified": 1628411385171, + "summary": "File system 'pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0' exceeded space quota", + "description": "The 'pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0' file system is at 118% of its space quota of 30.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.1788641611735", + "FileSystemName": "pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0" + }, + "id": "e2aa41b3-3dcb-5309-576b-ab791cfea9b6" + }, + { + "name": "222", + "index": 222, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "z-fbhosts_docker_root", + "component_type": "file-systems", + "state": "open", + "created": 1627892727563, + "updated": 1682296294262, + "notified": 1627892727563, + "summary": "File system 'z-fbhosts_docker_root' approaching space quota", + "description": "The 'z-fbhosts_docker_root' file system is at 83% of its space quota of 4.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.829510927316733", + "FileSystemName": "z-fbhosts_docker_root" + }, + "id": "db9f67e1-59dc-c246-5cd2-8ce38d581029" + }, + { + "name": "223", + "index": 223, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1627892788185, + "updated": 1627897179442, + "notified": 1627892788185, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. All bucket and file system replica links associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "7c51f3e7-213d-fdf0-3026-d7a30f37e8bf" + }, + { + "name": "224", + "index": 224, + "flagged": false, + "code": 1106, + "severity": "critical", + "component_name": "users of z-k8s-datahub", + "component_type": "usage/users", + "state": "open", + "created": 1627892940031, + "updated": 1682296086843, + "notified": 1628412315035, + "summary": "One user has reached or exceeded 100% of their quota on file system z-k8s-datahub", + "description": "One user has reached or exceeded 100% of their allotted write size limitation on file system z-k8s-datahub. ", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1106", + "action": "Either the quota assigned to the user must be increased, or the space usage must be reduced.", + "variables": { + "File System Name": "z-k8s-datahub", + "Number Of Users Between 80%-90% Usage": "0", + "Number Of Users Above 100% Usage": "1", + "Number Of Users Between 90%-100% Usage": "0" + }, + "id": "30f9662d-be30-c3b7-6257-80e0711b64a5" + }, + { + "name": "225", + "index": 225, + "flagged": false, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1627897197802, + "updated": 1639487016793, + "notified": 1628416208807, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstaines02-vlan4.ukdemo.purestorage.com\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "7ee26503-d0b3-9b8b-5fec-a17619f24893" + }, + { + "name": "226", + "index": 226, + "flagged": true, + "code": 1100, + "severity": "warning", + "component_name": "fbstaines02", + "component_type": "arrays/space", + "state": "closed", + "created": 1627897245370, + "updated": 1629239958763, + "notified": 1628415833991, + "summary": "Storage consumption has reached 92% of usable capacity", + "description": "Storage consumption has exceeded 90% of usable capacity of 19.20 T. 15 file system replica link(s) to fbstaines01 are at risk as a result. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1100", + "action": "Consider increasing capacity by adding a storage blade, or reducing consumption.", + "variables": { + "CurrentUtilization": "0.917455676668585", + "Capacity": "21110623253299" + }, + "id": "92164d8d-0dcb-c39a-1ab8-f2b52b956bac" + }, + { + "name": "227", + "index": 227, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1627901809259, + "updated": 1627921302287, + "notified": 1627901809259, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800188083648682", + "FileSystemName": "vertica-datagen" + }, + "id": "99b3c0ef-7030-da5b-cbaa-ea8f0b4db920" + }, + { + "name": "228", + "index": 228, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "z-fbhost01_home", + "component_type": "file-systems", + "state": "closed", + "created": 1627909929765, + "updated": 1627909990018, + "notified": 1627909929765, + "summary": "File system 'z-fbhost01_home' approaching space quota", + "description": "The 'z-fbhost01_home' file system is at 80% of its space quota of 400.00 M. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.802320556640625", + "FileSystemName": "z-fbhost01_home" + }, + "id": "50fe563e-4ec7-2c2c-9051-c8dbe33e1aa6" + }, + { + "name": "229", + "index": 229, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1629191508095, + "updated": 1629191508095, + "notified": 1629191508095, + "summary": "Blade CH1.FB7 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB7" + }, + "id": "1ea14089-9673-4fe0-c1a5-c09b976720b7" + }, + { + "name": "230", + "index": 230, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1629240199431, + "updated": 1629327103588, + "notified": 1629240199431, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800403642654419", + "FileSystemName": "vertica-datagen" + }, + "id": "a926fd47-eafb-8ec4-1fb5-710cd7d7088e" + }, + { + "name": "231", + "index": 231, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "z-fbhosts_kernel_compile", + "component_type": "file-systems", + "state": "closed", + "created": 1629242364495, + "updated": 1629242364495, + "notified": 1629242364495, + "summary": "File system 'z-fbhosts_kernel_compile' approaching space quota", + "description": "The 'z-fbhosts_kernel_compile' file system is at 80% of its space quota of 3.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800890763600667", + "FileSystemName": "z-fbhosts_kernel_compile" + }, + "id": "260e207d-7f15-0d2b-8647-1667cacc7f99" + }, + { + "name": "232", + "index": 232, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "z-fbhost01_home", + "component_type": "file-systems", + "state": "closed", + "created": 1629245614069, + "updated": 1629247179753, + "notified": 1629245614069, + "summary": "File system 'z-fbhost01_home' approaching space quota", + "description": "The 'z-fbhost01_home' file system is at 80% of its space quota of 400.00 M. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.802952880859375", + "FileSystemName": "z-fbhost01_home" + }, + "id": "ce5f47c9-224e-b5ee-79e9-105c4acad1ed" + }, + { + "name": "233", + "index": 233, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1629495470916, + "updated": 1629495481158, + "notified": 1629495470916, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB5" + }, + "id": "4e7489c0-a566-3bf9-be31-a6c321dedf2a" + }, + { + "name": "234", + "index": 234, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1630658461357, + "updated": 1630658461357, + "notified": 1630658461357, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800004906654358", + "FileSystemName": "vertica-datagen" + }, + "id": "f3a34ed7-07cd-3ce3-181d-dc887d5f8007" + }, + { + "name": "235", + "index": 235, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1631006808242, + "updated": 1631006808242, + "notified": 1631006808242, + "summary": "Blade CH1.FB5 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB5" + }, + "id": "0f041f79-6b51-d267-7ab7-6ab15050b828" + }, + { + "name": "236", + "index": 236, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1631006845733, + "updated": 1631609992254, + "notified": 1631546434053, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB5" + }, + "id": "477108f9-6429-38a5-cc6c-4502761e6bc8" + }, + { + "name": "237", + "index": 237, + "flagged": true, + "code": 1007, + "severity": "critical", + "component_name": "CH1.PWR4", + "component_type": "hardware", + "state": "closed", + "created": 1631530504636, + "updated": 1631531064972, + "notified": 1631530504636, + "summary": "Power supply CH1.PWR4 requires attention", + "description": "A power supply's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1007", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "PSUIndex": "CH1.PWR4", + "details": "power cable unplugged" + }, + "id": "856c1d4d-e73a-9099-4bb3-dcb1c5c0601d" + }, + { + "name": "238", + "index": 238, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1631609822001, + "updated": 1631609822001, + "notified": 1631609822001, + "summary": "Blade CH1.FB5 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB5" + }, + "id": "21ab1dd5-0b8e-b42c-37b8-1f84be0740a7" + }, + { + "name": "239", + "index": 239, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1631814445716, + "updated": 1631902257248, + "notified": 1631814445716, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800238527059555", + "FileSystemName": "vertica-datagen" + }, + "id": "c913c4de-d2ae-cc13-f6cf-a520199b6a5b" + }, + { + "name": "240", + "index": 240, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "z-fbhost01_home", + "component_type": "file-systems", + "state": "closed", + "created": 1631825641604, + "updated": 1631825641604, + "notified": 1631825641604, + "summary": "File system 'z-fbhost01_home' approaching space quota", + "description": "The 'z-fbhost01_home' file system is at 80% of its space quota of 400.00 M. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.802320556640625", + "FileSystemName": "z-fbhost01_home" + }, + "id": "0642f26f-7f59-f2db-125e-d362a850f543" + }, + { + "name": "241", + "index": 241, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1632144457793, + "updated": 1632144457793, + "notified": 1632144457793, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "465abcaa-21df-c036-2c14-bd0a67425e0f" + }, + { + "name": "242", + "index": 242, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1632145093501, + "updated": 1632145093501, + "notified": 1632145093501, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "73663fb6-1258-ab2f-53be-696c4f146630" + }, + { + "name": "243", + "index": 243, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1632145192629, + "updated": 1632146938259, + "notified": 1632145192629, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800280297994614", + "FileSystemName": "vertica-datagen" + }, + "id": "39408c3a-6233-43af-f588-40f05542675d" + }, + { + "name": "244", + "index": 244, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1632145326136, + "updated": 1632145498202, + "notified": 1632145326136, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "8f25e094-78cd-efe3-4074-b63307edfaa2" + }, + { + "name": "245", + "index": 245, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1632145528520, + "updated": 1632145538688, + "notified": 1632145528520, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "653eafdb-b70b-301c-bb83-764e697d2b66" + }, + { + "name": "246", + "index": 246, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1632145751982, + "updated": 1632145751982, + "notified": 1632145751982, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "352b698f-612f-0763-2454-f24098cb0105" + }, + { + "name": "247", + "index": 247, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1632145975802, + "updated": 1632145975802, + "notified": 1632145975802, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "ac786333-afbb-1249-ab0b-a5e1a55df138" + }, + { + "name": "248", + "index": 248, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1632146229358, + "updated": 1632146239622, + "notified": 1632146229358, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "51d051e1-0808-3753-a9ba-f67991511b2f" + }, + { + "name": "249", + "index": 249, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1632146434793, + "updated": 1632146434793, + "notified": 1632146434793, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "7a26f398-b64e-4f51-2b33-f3f161583bf6" + }, + { + "name": "250", + "index": 250, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1632147271914, + "updated": 1632147332782, + "notified": 1632147271914, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "a5990884-f595-1793-2657-f0948aa71f9d" + }, + { + "name": "251", + "index": 251, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1633731482416, + "updated": 1633731482416, + "notified": 1633731482416, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "6834a5df-26a1-6ef5-779c-85197ef417cc" + }, + { + "name": "252", + "index": 252, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "LSEG <-- fbstaines01:LSEG", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1634283268842, + "updated": 1634283449383, + "notified": 1634283268842, + "summary": "A file system replica link requires attention", + "description": "The file system replica link LSEG <-- fbstaines01:LSEG is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "LSEG", + "remote_name": "fbstaines01", + "local_file_system_id": "86cf1a8b-c3fc-38bb-f433-45d609356dca", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "LSEG", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "367d5b5d-d70a-e0d1-7447-713dbe368e19", + "id": "57b1aa24-67ab-76e4-3d6c-d87605bd44c3" + }, + "id": "9a1c85a9-df38-8677-ac10-b9bdcca4d241" + }, + { + "name": "253", + "index": 253, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1634445220856, + "updated": 1637121545159, + "notified": 1634964276569, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "e8eb6580-19e1-2e7e-9872-bee2a430a816" + }, + { + "name": "254", + "index": 254, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1634448241435, + "updated": 1634454981971, + "notified": 1634448241435, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800133924484253", + "FileSystemName": "vertica-datagen" + }, + "id": "00cbac3c-ae53-642f-128d-d050b9f01b3b" + }, + { + "name": "255", + "index": 255, + "flagged": true, + "code": 1119, + "severity": "critical", + "component_name": "RF-REP-SOURCE <-- fbstaines01:RF-REP-SOURCE", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1635642200569, + "updated": 1635724867639, + "notified": 1635642200569, + "summary": "A file system replica link requires attention", + "description": "The file system replica link RF-REP-SOURCE <-- fbstaines01:RF-REP-SOURCE is not healthy with error: A snapshot with the same name already exists on the target file system. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1119", + "action": "Destroy and eradicate the conflicting snapshot on the source file system and try again with a new suffix, or destroy and eradicate the conflicting snapshot on the target file system. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "RF-REP-SOURCE", + "remote_name": "fbstaines01", + "local_file_system_id": "2ca2d0b4-2539-45c7-15b5-c28f18a4c37c", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "RF-REP-SOURCE", + "error_code": "Snapshot with the same name already exists on target file system.", + "remote_file_system_id": "83f5a464-517a-799c-3141-33c96b21655b", + "id": "0044511c-c477-7ab2-af46-3589fac7c5bd" + }, + "id": "a72c0a57-3b04-7f03-6712-5982479a4ef6" + }, + { + "name": "256", + "index": 256, + "flagged": true, + "code": 1119, + "severity": "critical", + "component_name": "post-test --> fbstaines01:post-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1635642260784, + "updated": 1635652913557, + "notified": 1635642260784, + "summary": "A file system replica link requires attention", + "description": "The file system replica link post-test --> fbstaines01:post-test is not healthy with error: A snapshot with the same name already exists on the target file system. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1119", + "action": "Destroy and eradicate the conflicting snapshot on the source file system and try again with a new suffix, or destroy and eradicate the conflicting snapshot on the target file system. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "post-test", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "post-test", + "error_code": "Snapshot with the same name already exists on target file system.", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "id": "b25d9126-d31a-5264-783e-d8fc123fc841" + }, + "id": "39d49ec6-f668-8ea8-8ae1-a81e8200f757" + }, + { + "name": "257", + "index": 257, + "flagged": true, + "code": 1119, + "severity": "critical", + "component_name": "lee-repl-remote --> fbstaines01:lee-repl-local", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1635642741963, + "updated": 1637083593645, + "notified": 1636161391840, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-remote --> fbstaines01:lee-repl-local is not healthy with error: A snapshot with the same name already exists on the target file system. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1119", + "action": "Destroy and eradicate the conflicting snapshot on the source file system and try again with a new suffix, or destroy and eradicate the conflicting snapshot on the target file system. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-remote", + "remote_name": "fbstaines01", + "local_file_system_id": "4088ea52-7042-8847-5cf4-3fe8af61c881", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "lee-repl-local", + "error_code": "Snapshot with the same name already exists on target file system.", + "remote_file_system_id": "352736cd-2753-6c84-a58d-7146e5c5c235", + "id": "8f3dbcf7-dc26-a9d7-9251-6b70de9456fd" + }, + "id": "fd12fc03-d991-575d-e9a9-85e7780f2332" + }, + { + "name": "258", + "index": 258, + "flagged": true, + "code": 1119, + "severity": "critical", + "component_name": "mm-fs1 <-- fbstaines01:mm-fs1", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1635642741963, + "updated": 1635653395004, + "notified": 1635642741963, + "summary": "A file system replica link requires attention", + "description": "The file system replica link mm-fs1 <-- fbstaines01:mm-fs1 is not healthy with error: A snapshot with the same name already exists on the target file system. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1119", + "action": "Destroy and eradicate the conflicting snapshot on the source file system and try again with a new suffix, or destroy and eradicate the conflicting snapshot on the target file system. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "mm-fs1", + "remote_name": "fbstaines01", + "local_file_system_id": "3d9ad0f9-ed10-f0c3-0793-55c51e7fc18e", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "mm-fs1", + "error_code": "Snapshot with the same name already exists on target file system.", + "remote_file_system_id": "334a4824-0773-f595-89d5-8411321f51b7", + "id": "dcf30a91-f1de-1e16-537a-d52cd64c7287" + }, + "id": "fbe56b9b-a515-566f-b101-9bec5db46896" + }, + { + "name": "259", + "index": 259, + "flagged": true, + "code": 1119, + "severity": "critical", + "component_name": "z-SMB-PRE32TEST --> fbstaines01:z-SMB-PRE32TEST", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1635642862458, + "updated": 1635725529520, + "notified": 1635642862458, + "summary": "A file system replica link requires attention", + "description": "The file system replica link z-SMB-PRE32TEST --> fbstaines01:z-SMB-PRE32TEST is not healthy with error: A snapshot with the same name already exists on the target file system. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1119", + "action": "Destroy and eradicate the conflicting snapshot on the source file system and try again with a new suffix, or destroy and eradicate the conflicting snapshot on the target file system. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "z-SMB-PRE32TEST", + "remote_name": "fbstaines01", + "local_file_system_id": "14e2b502-6cd0-c06f-cdd7-184ee6937b2d", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "z-SMB-PRE32TEST", + "error_code": "Snapshot with the same name already exists on target file system.", + "remote_file_system_id": "da56a327-0a2e-0fbf-21f4-e408f741402d", + "id": "b341f833-b484-5c26-67e6-453ff04549c4" + }, + "id": "581e4fd9-842c-65e3-10c5-fd1568b17838" + }, + { + "name": "260", + "index": 260, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-remote --> fbstaines01:lee-repl-local", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1635689489271, + "updated": 1644319103347, + "notified": 1636208127849, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-remote --> fbstaines01:lee-repl-local is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-remote", + "remote_name": "fbstaines01", + "local_file_system_id": "4088ea52-7042-8847-5cf4-3fe8af61c881", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "lee-repl-local", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "352736cd-2753-6c84-a58d-7146e5c5c235", + "id": "8f3dbcf7-dc26-a9d7-9251-6b70de9456fd" + }, + "id": "dac95ce0-56c5-445a-443c-0d99a5e0cef7" + }, + { + "name": "261", + "index": 261, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1635721880923, + "updated": 1635723023320, + "notified": 1635721880923, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "d6851d68-7d57-5064-fb81-42e32299a0f5" + }, + { + "name": "262", + "index": 262, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1637058666693, + "updated": 1637058666693, + "notified": 1637058666693, + "summary": "Blade CH1.FB1 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB1" + }, + "id": "d9a3e4af-d178-88cd-d3cd-65d11218f987" + }, + { + "name": "263", + "index": 263, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1637119503074, + "updated": 1637131456821, + "notified": 1637119503074, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800332305431366", + "FileSystemName": "vertica-datagen" + }, + "id": "cd99c578-6f12-d686-3f29-2b091855472e" + }, + { + "name": "264", + "index": 264, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1637120892601, + "updated": 1637120907937, + "notified": 1637120892601, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "10a7d637-a1d2-2f2e-6064-9d9f455b1f1f" + }, + { + "name": "265", + "index": 265, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1637121798034, + "updated": 1637121960166, + "notified": 1637121798034, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "86fe5418-cd3a-332c-e688-039537b85310" + }, + { + "name": "266", + "index": 266, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1637122000639, + "updated": 1637122000639, + "notified": 1637122000639, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "c813f6a3-a8fa-969d-33f7-5f5c63d9b320" + }, + { + "name": "267", + "index": 267, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1637122204040, + "updated": 1637122356647, + "notified": 1637122204040, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "7f14ab8d-e491-5997-1ee9-91d2ec312868" + }, + { + "name": "268", + "index": 268, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1637122397285, + "updated": 1637122397285, + "notified": 1637122397285, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "205d1faf-1735-9ceb-00c3-31d8df13a084" + }, + { + "name": "269", + "index": 269, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1637122640910, + "updated": 1637122793404, + "notified": 1637122640910, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "f74d4636-ea61-897d-b86f-3be14ea7f545" + }, + { + "name": "270", + "index": 270, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1637122834165, + "updated": 1637122844436, + "notified": 1637122844436, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "a955c12c-fff7-19a1-a52b-97e8a8524d49" + }, + { + "name": "271", + "index": 271, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1637123672790, + "updated": 1637123733617, + "notified": 1637123672790, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "8ba9a99c-72f6-af9f-2a35-6c052779a2ed" + }, + { + "name": "272", + "index": 272, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN1", + "component_type": "hardware", + "state": "closed", + "created": 1639593042473, + "updated": 1639593062305, + "notified": 1639593042473, + "summary": "Fan CH1.FM1.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN1", + "details": "Slow Fan" + }, + "id": "794af2ce-8436-0a0d-0832-d3e09c606faa" + }, + { + "name": "273", + "index": 273, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN2", + "component_type": "hardware", + "state": "closed", + "created": 1639593042473, + "updated": 1639593062305, + "notified": 1639593042473, + "summary": "Fan CH1.FM1.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN2", + "details": "Slow Fan" + }, + "id": "a9634ef3-8231-2a95-f51f-2befdfb2fe70" + }, + { + "name": "274", + "index": 274, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN3", + "component_type": "hardware", + "state": "closed", + "created": 1639593042473, + "updated": 1639593062305, + "notified": 1639593042473, + "summary": "Fan CH1.FM1.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN3", + "details": "Slow Fan" + }, + "id": "d0f41424-af5d-89cf-05a9-1712c21fe04a" + }, + { + "name": "275", + "index": 275, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN4", + "component_type": "hardware", + "state": "closed", + "created": 1639593042473, + "updated": 1639593062305, + "notified": 1639593042473, + "summary": "Fan CH1.FM1.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN4", + "details": "Slow Fan" + }, + "id": "80416c60-4e72-90a0-fca3-313dafa3e182" + }, + { + "name": "276", + "index": 276, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN5", + "component_type": "hardware", + "state": "closed", + "created": 1639593042473, + "updated": 1639593062305, + "notified": 1639593042473, + "summary": "Fan CH1.FM1.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN5", + "details": "Slow Fan" + }, + "id": "e8cd4c40-bfb7-986d-5eb4-3dc0665bac76" + }, + { + "name": "277", + "index": 277, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM1.FAN6", + "component_type": "hardware", + "state": "closed", + "created": 1639593042473, + "updated": 1639593062305, + "notified": 1639593042473, + "summary": "Fan CH1.FM1.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM1.FAN6", + "details": "Slow Fan" + }, + "id": "100a5747-fc40-5e7e-4703-6b79e91c2ce8" + }, + { + "name": "278", + "index": 278, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1639593042674, + "updated": 1639596295852, + "notified": 1639593042674, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "3e24ecee-20cc-ca74-670c-243922d74b11" + }, + { + "name": "279", + "index": 279, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN1", + "component_type": "hardware", + "state": "closed", + "created": 1639593092639, + "updated": 1639593138639, + "notified": 1639593092639, + "summary": "Fan CH1.FM2.FAN1 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN1", + "details": "Slow Fan" + }, + "id": "96d58d9f-b769-f2f4-4229-a3d252166ac8" + }, + { + "name": "280", + "index": 280, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN2", + "component_type": "hardware", + "state": "closed", + "created": 1639593092639, + "updated": 1639593138639, + "notified": 1639593092639, + "summary": "Fan CH1.FM2.FAN2 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN2", + "details": "Slow Fan" + }, + "id": "a82d00be-10bf-d72c-bd73-9ce24b8d58b7" + }, + { + "name": "281", + "index": 281, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN3", + "component_type": "hardware", + "state": "closed", + "created": 1639593092639, + "updated": 1639593138639, + "notified": 1639593092639, + "summary": "Fan CH1.FM2.FAN3 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN3", + "details": "Slow Fan" + }, + "id": "3a1d1518-d864-e30c-b128-1724bf00564c" + }, + { + "name": "282", + "index": 282, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN4", + "component_type": "hardware", + "state": "closed", + "created": 1639593092639, + "updated": 1639593138639, + "notified": 1639593092639, + "summary": "Fan CH1.FM2.FAN4 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN4", + "details": "Slow Fan" + }, + "id": "36047485-0e2d-9afc-0c7d-6085cacad856" + }, + { + "name": "283", + "index": 283, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN5", + "component_type": "hardware", + "state": "closed", + "created": 1639593092639, + "updated": 1639593138639, + "notified": 1639593092639, + "summary": "Fan CH1.FM2.FAN5 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN5", + "details": "Slow Fan" + }, + "id": "29f0d4a7-f115-b2e0-37c5-5a1c8affb7cc" + }, + { + "name": "284", + "index": 284, + "flagged": true, + "code": 1013, + "severity": "critical", + "component_name": "CH1.FM2.FAN6", + "component_type": "hardware", + "state": "closed", + "created": 1639593092639, + "updated": 1639593138639, + "notified": 1639593092639, + "summary": "Fan CH1.FM2.FAN6 requires attention", + "description": "A fan's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1013", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FanIndex": "CH1.FM2.FAN6", + "details": "Slow Fan" + }, + "id": "6c83832e-d885-5f3a-aa13-45a76aa68f83" + }, + { + "name": "285", + "index": 285, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1639593118126, + "updated": 1639593133481, + "notified": 1639593118126, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": null + }, + "id": "f9404107-eda9-beaf-50e5-a7c5560d2d27" + }, + { + "name": "286", + "index": 286, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1639594638989, + "updated": 1639594649226, + "notified": 1639594638989, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "c71e852f-104c-cb09-0334-669e79d2bc98" + }, + { + "name": "287", + "index": 287, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1639594880571, + "updated": 1639594890761, + "notified": 1639594880571, + "summary": "Blade CH1.FB2 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "d0641765-ca40-852d-6740-f364783fdd5c" + }, + { + "name": "288", + "index": 288, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1639595061981, + "updated": 1639595061981, + "notified": 1639595061981, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB3" + }, + "id": "8fa946a5-7cf9-39a0-67e2-5d073888fa65" + }, + { + "name": "289", + "index": 289, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1639595263735, + "updated": 1639595415098, + "notified": 1639595263735, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "53230573-0046-a623-81b7-619441dc03bf" + }, + { + "name": "290", + "index": 290, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1639595445406, + "updated": 1639595445406, + "notified": 1639595445406, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "ff708155-769b-5122-eddf-6b3a130c80bd" + }, + { + "name": "291", + "index": 291, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1639595687982, + "updated": 1639595687982, + "notified": 1639595687982, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "15eed263-ea2e-3305-744a-90753e9182d1" + }, + { + "name": "292", + "index": 292, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1639595840833, + "updated": 1639595840833, + "notified": 1639595840833, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800235240459442", + "FileSystemName": "vertica-datagen" + }, + "id": "5a1fbc9e-916f-99bc-c516-02a0612f0e4f" + }, + { + "name": "293", + "index": 293, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1639595880107, + "updated": 1639595890289, + "notified": 1639595880107, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "a1a5c659-e775-8f1d-b9e5-b2ac88ecdc12" + }, + { + "name": "294", + "index": 294, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1641080616456, + "updated": 1642429490878, + "notified": 1642427760191, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB4" + }, + "id": "793e0506-417a-45a4-082d-48914c492fd1" + }, + { + "name": "295", + "index": 295, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1641083196656, + "updated": 1641090472368, + "notified": 1641083196656, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800060744285583", + "FileSystemName": "vertica-datagen" + }, + "id": "ed2561ff-6dd0-033c-0299-41d4933d812c" + }, + { + "name": "296", + "index": 296, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1642414844721, + "updated": 1642414844721, + "notified": 1642414844721, + "summary": "Blade CH1.FB4 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB4" + }, + "id": "a1af581b-5cc9-bd02-827c-fc41fb086aa8" + }, + { + "name": "297", + "index": 297, + "flagged": false, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1642516996980, + "updated": 1642517007242, + "notified": 1642516996980, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "3ca435c4-1588-349f-45de-0817dd6bdc09" + }, + { + "name": "298", + "index": 298, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1642517293956, + "updated": 1642527635880, + "notified": 1642517293956, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800078109502792", + "FileSystemName": "vertica-datagen" + }, + "id": "84827a5e-6fc7-15aa-bf80-94648e28732b" + }, + { + "name": "299", + "index": 299, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "test-usf --> fbstaines01:test-usf", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1643988120650, + "updated": 1644006803911, + "notified": 1643988120650, + "summary": "A file system replica link requires attention", + "description": "The file system replica link test-usf --> fbstaines01:test-usf is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "test-usf", + "remote_name": "fbstaines01", + "local_file_system_id": "f77d9582-7d5a-6401-f86b-bc66b59035fd", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "test-usf", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "2cddf2cc-6624-f07e-5e19-4cf4136501b2", + "id": "2d65695b-0d4c-e31b-2377-b4e2adf6c690" + }, + "id": "15a6cba0-f657-ef24-621e-ac159d415e57" + }, + { + "name": "300", + "index": 300, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1644006861135, + "updated": 1644007344148, + "notified": 1644007333973, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB1" + }, + "id": "195fb14a-5cf8-55ec-2679-86b3d5957a3e" + }, + { + "name": "301", + "index": 301, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "test-usf --> fbstaines01:test-usf", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1644006984139, + "updated": 1644074453308, + "notified": 1644006984139, + "summary": "A file system replica link requires attention", + "description": "The file system replica link test-usf --> fbstaines01:test-usf is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "test-usf", + "remote_name": "fbstaines01", + "local_file_system_id": "f77d9582-7d5a-6401-f86b-bc66b59035fd", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "test-usf", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "2cddf2cc-6624-f07e-5e19-4cf4136501b2", + "id": "2d65695b-0d4c-e31b-2377-b4e2adf6c690" + }, + "id": "9f5487f5-bd7c-bdd7-ad03-48a18b273b5a" + }, + { + "name": "302", + "index": 302, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1644007998198, + "updated": 1644008393695, + "notified": 1644007998198, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "0c96b115-8275-6496-7831-3b45da71bd65" + }, + { + "name": "303", + "index": 303, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1644007998198, + "updated": 1644008393695, + "notified": 1644007998198, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB3" + }, + "id": "47a421b3-ebb9-f8c1-5156-bc4c12cf08e4" + }, + { + "name": "304", + "index": 304, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1644007998199, + "updated": 1644008393695, + "notified": 1644007998199, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB4" + }, + "id": "33fc16f6-54b7-d27a-79cd-bb6b8f98b80c" + }, + { + "name": "305", + "index": 305, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1644007998199, + "updated": 1644008393695, + "notified": 1644007998199, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "9d3a5a63-b503-af2f-3616-34cbfb905367" + }, + { + "name": "306", + "index": 306, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1644007998199, + "updated": 1644008393696, + "notified": 1644007998199, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB6" + }, + "id": "5d388a01-0dc6-53ba-e6bb-148c14895779" + }, + { + "name": "307", + "index": 307, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1644007998199, + "updated": 1644008393696, + "notified": 1644007998199, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB7" + }, + "id": "43ae8f08-b04d-b9d7-0f52-3e3e362a3f8f" + }, + { + "name": "308", + "index": 308, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1644922192532, + "updated": 1644935466361, + "notified": 1644922192532, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "65d0a706-d1fc-4182-08fb-eb852289bc7e" + }, + { + "name": "309", + "index": 309, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1644922192532, + "updated": 1644935456193, + "notified": 1644922192532, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "1773717d-2c1f-f15c-89f4-c643127750c6" + }, + { + "name": "310", + "index": 310, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1644922192532, + "updated": 1644935456193, + "notified": 1644922192532, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "0b9844d0-be15-e117-cb96-a1c94ac277e4" + }, + { + "name": "311", + "index": 311, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1644922192532, + "updated": 1644935456193, + "notified": 1644922192532, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "59985029-c710-6cb0-a29b-6b7ed015f16c" + }, + { + "name": "312", + "index": 312, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1644922192532, + "updated": 1644935466361, + "notified": 1644922192532, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "a111baaa-127f-74ac-c8c7-5353614ff59e" + }, + { + "name": "313", + "index": 313, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1644922192533, + "updated": 1644935456194, + "notified": 1644922192533, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "97b11c6b-520e-2a61-1e62-ea018ca9553d" + }, + { + "name": "314", + "index": 314, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1644922192533, + "updated": 1644935456194, + "notified": 1644922192533, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "2b9ace89-1464-9dbf-724a-70fcaa4b7ef6" + }, + { + "name": "315", + "index": 315, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3.3", + "component_type": "hardware", + "state": "closed", + "created": 1645006108834, + "updated": 1645600618152, + "notified": 1645524579736, + "summary": "Ethernet connector CH1.FM1.ETH3.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3.3" + }, + "id": "4cfe5258-d595-60e0-e6a5-ed24e9e90088" + }, + { + "name": "316", + "index": 316, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3.3", + "component_type": "hardware", + "state": "closed", + "created": 1645006138992, + "updated": 1645600618152, + "notified": 1645524609900, + "summary": "Ethernet connector CH1.FM2.ETH3.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3.3" + }, + "id": "6dd1c3d3-9725-7dc7-8287-1d10e5adcc60" + }, + { + "name": "317", + "index": 317, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1645010016888, + "updated": 1645010016888, + "notified": 1645010016888, + "summary": "Ethernet connector CH1.FM2.ETH1.1 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "8b17ef20-984d-942a-b840-cf94117739d6" + }, + { + "name": "318", + "index": 318, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1645010016888, + "updated": 1645010016888, + "notified": 1645010016888, + "summary": "Ethernet connector CH1.FM2.ETH1.2 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "611832e1-a502-7748-94a6-8643d22fd20f" + }, + { + "name": "319", + "index": 319, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1645010107322, + "updated": 1645024973067, + "notified": 1645010107322, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "d74c0987-729b-e4d5-cbe7-3abf6f84ad9b" + }, + { + "name": "320", + "index": 320, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1645010107322, + "updated": 1645025033558, + "notified": 1645010107322, + "summary": "Ethernet connector CH1.FM2.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "c26b7678-6a20-3122-e4d2-50e7114367d4" + }, + { + "name": "321", + "index": 321, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1645010588801, + "updated": 1645025033558, + "notified": 1645010588801, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "1fdd0f77-17cb-4651-d595-5ad1a7201d31" + }, + { + "name": "322", + "index": 322, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1645010588801, + "updated": 1645025033558, + "notified": 1645010588801, + "summary": "Ethernet connector CH1.FM2.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "5f5466e7-a081-21c5-aea0-04556477279f" + }, + { + "name": "323", + "index": 323, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1645012334825, + "updated": 1645012334825, + "notified": 1645012334825, + "summary": "Ethernet connector CH1.FM2.ETH1.1 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "2c4ccc6a-e801-247b-f3a2-592cd15acc6b" + }, + { + "name": "324", + "index": 324, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1645012334825, + "updated": 1645012334825, + "notified": 1645012334825, + "summary": "Ethernet connector CH1.FM2.ETH1.2 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "8d5b86a0-b81c-be19-5ba0-c0e8b80afecc" + }, + { + "name": "325", + "index": 325, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1645012334825, + "updated": 1645012334825, + "notified": 1645012334825, + "summary": "Ethernet connector CH1.FM2.ETH1.3 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "222f00ac-2792-cf9a-2398-761136e75858" + }, + { + "name": "326", + "index": 326, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1645012334825, + "updated": 1645012334825, + "notified": 1645012334825, + "summary": "Ethernet connector CH1.FM2.ETH1.4 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "eeb2679a-e7e5-e28c-1bee-bf3756a12ac5" + }, + { + "name": "327", + "index": 327, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1645012756785, + "updated": 1645012756785, + "notified": 1645012756785, + "summary": "Ethernet connector CH1.FM1.ETH1.3 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "775f0e81-e535-75e2-aa44-daac4e3c8748" + }, + { + "name": "328", + "index": 328, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1645012756785, + "updated": 1645012756785, + "notified": 1645012756785, + "summary": "Ethernet connector CH1.FM1.ETH1.1 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "3d07e3d2-ef92-d3a4-613e-0352cbcb954c" + }, + { + "name": "329", + "index": 329, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1645012756785, + "updated": 1645012756785, + "notified": 1645012756785, + "summary": "Ethernet connector CH1.FM1.ETH1.4 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "8581200d-b5e0-9ac2-c573-3bfbc129446c" + }, + { + "name": "330", + "index": 330, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1645012756785, + "updated": 1645012756785, + "notified": 1645012756785, + "summary": "Ethernet connector CH1.FM1.ETH1.2 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "6f6f4bec-760f-ac90-53a1-972ae70c830c" + }, + { + "name": "331", + "index": 331, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1645012844887, + "updated": 1645012844887, + "notified": 1645012844887, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 6 bucket replica link(s) and 16 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connecting\" - \"No route found. Please check remote connectivity.\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "3f363d6b-e5f9-4574-87f7-f9ea5fc0424a" + }, + { + "name": "332", + "index": 332, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1645012847463, + "updated": 1645012847463, + "notified": 1645012847463, + "summary": "Ethernet connector CH1.FM1.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "a32f9de5-ffbb-98ac-fe81-dcc97a876b54" + }, + { + "name": "333", + "index": 333, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1645012847463, + "updated": 1645012847463, + "notified": 1645012847463, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "531321b6-d636-02bc-0980-5f2f64b3d889" + }, + { + "name": "334", + "index": 334, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1645012847463, + "updated": 1645012847463, + "notified": 1645012847463, + "summary": "Ethernet connector CH1.FM1.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "f9f04143-22a0-2721-3608-e1357a5ec04b" + }, + { + "name": "335", + "index": 335, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1645012847463, + "updated": 1645012847463, + "notified": 1645012847463, + "summary": "Ethernet connector CH1.FM1.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "5da8ea24-1879-c6e0-2855-cab149bd5d1a" + }, + { + "name": "336", + "index": 336, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1645012968244, + "updated": 1645012968244, + "notified": 1645012968244, + "summary": "Ethernet connector CH1.FM2.ETH1.1 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "883b308e-aceb-f4fe-4ee7-d6eb6898bf41" + }, + { + "name": "337", + "index": 337, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1645012968244, + "updated": 1645012968244, + "notified": 1645012968244, + "summary": "Ethernet connector CH1.FM2.ETH1.2 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "dc95b245-5789-9f39-6e8f-31da0326c52e" + }, + { + "name": "338", + "index": 338, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1645012968244, + "updated": 1645012968244, + "notified": 1645012968244, + "summary": "Ethernet connector CH1.FM2.ETH1.3 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "c0332f2a-7e66-579b-2b80-8e83611765ef" + }, + { + "name": "339", + "index": 339, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1645012968244, + "updated": 1645012968244, + "notified": 1645012968244, + "summary": "Ethernet connector CH1.FM2.ETH1.4 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "f9fdb971-0f4a-21d4-c139-9dd330b2e0e1" + }, + { + "name": "340", + "index": 340, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "tbucker1 --> fbstaines01:tbucket1", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1645552620653, + "updated": 1645552861032, + "notified": 1645552620653, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket tbucker1 to bucket tbucket1 on fbstaines01 is unhealthy. The detailed error is: The specified bucket does not exist.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The specified bucket does not exist.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "tbucket1", + "id": "47bea4d7-9d03-1840-6ab6-3c1dcdb176db", + "local_bucket_name": "tbucker1", + "local_bucket_id": "9a30210b-4746-4fb6-8e66-f732029595ff" + }, + "id": "cfdd947e-8ba1-215c-6221-1f7a0cf79037" + }, + { + "name": "341", + "index": 341, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "tbucker1 --> fbstaines01:tbucker1", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1645553101286, + "updated": 1645553822170, + "notified": 1645553101286, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket tbucker1 to bucket tbucker1 on fbstaines01 is unhealthy. The detailed error is: Access Denied", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Access Denied", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "tbucker1", + "id": "5867cb14-af17-873d-9e4b-d4badaca158e", + "local_bucket_name": "tbucker1", + "local_bucket_id": "9a30210b-4746-4fb6-8e66-f732029595ff" + }, + "id": "a6a91352-0207-f8fd-ccc7-ba09cb9dd254" + }, + { + "name": "342", + "index": 342, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "vesbucket1 --> fbstaines01:vesbucket1", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1645606804884, + "updated": 1645606925123, + "notified": 1645606804884, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket vesbucket1 to bucket vesbucket1 on fbstaines01 is unhealthy. The detailed error is: Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "vesbucket1", + "id": "99cc94c4-7643-3bba-c5a1-bef3ea02dc9e", + "local_bucket_name": "vesbucket1", + "local_bucket_id": "84e4bb5e-e792-72e7-9259-b2b83bcc7f2a" + }, + "id": "d8f1aea2-8d71-97d4-b95a-832fbf01f3b5" + }, + { + "name": "343", + "index": 343, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1645610663513, + "updated": 1645610843768, + "notified": 1645610663513, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "879bf70a-31ea-296b-b210-9836d3cd2527" + }, + { + "name": "344", + "index": 344, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1645611080628, + "updated": 1645614030223, + "notified": 1645611080628, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "b5e0e817-303c-0e9c-0be1-ad4f0ea2239d" + }, + { + "name": "345", + "index": 345, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1645611080628, + "updated": 1645614060301, + "notified": 1645611080628, + "summary": "Ethernet connector CH1.FM2.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "3a2ac075-5b06-a61d-e348-d945c75e055e" + }, + { + "name": "346", + "index": 346, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1645611080628, + "updated": 1645614060301, + "notified": 1645611080628, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "b49c5e05-7345-bc43-1f23-30941128b203" + }, + { + "name": "347", + "index": 347, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1645611080628, + "updated": 1645614060301, + "notified": 1645611080628, + "summary": "Ethernet connector CH1.FM2.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "51fc090c-3b2a-b7ad-a59c-0b9cfe9e184e" + }, + { + "name": "348", + "index": 348, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "iantest <-- fbstaines01:iantest", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1645637581191, + "updated": 1645637581191, + "notified": 1645637581191, + "summary": "A file system replica link requires attention", + "description": "The file system replica link iantest <-- fbstaines01:iantest is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "iantest", + "remote_name": "fbstaines01", + "local_file_system_id": "9061a207-f244-6b64-a9e8-caf3671a2c77", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "iantest", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b968fba4-1593-d031-b476-ad56f307eb2d", + "id": "11ae0d32-8340-0abd-8ce9-691951c5e168" + }, + "id": "e1ea7125-d4e6-0821-bbd6-bffd2cbac508" + }, + { + "name": "349", + "index": 349, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "leenfs-20g", + "component_type": "file-systems", + "state": "closed", + "created": 1645678555922, + "updated": 1645772591702, + "notified": 1645764956232, + "summary": "File system 'leenfs-20g' exceeded space quota", + "description": "The 'leenfs-20g' file system is at 155% of its space quota of 20.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.55314295156859", + "FileSystemName": "leenfs-20g" + }, + "id": "4d19951b-1ca9-43b0-8731-5515c1e15895" + }, + { + "name": "350", + "index": 350, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "leenfs-15g", + "component_type": "file-systems", + "state": "closed", + "created": 1645685769191, + "updated": 1645772591702, + "notified": 1645772170870, + "summary": "File system 'leenfs-15g' exceeded space quota", + "description": "The 'leenfs-15g' file system is at 207% of its space quota of 15.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "2.06666666666667", + "FileSystemName": "leenfs-15g" + }, + "id": "63f9f54d-c044-6603-4f4a-4b43450223a0" + }, + { + "name": "351", + "index": 351, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "leesmb-5g", + "component_type": "file-systems", + "state": "closed", + "created": 1645689796949, + "updated": 1645699656751, + "notified": 1645689796949, + "summary": "File system 'leesmb-5g' approaching space quota", + "description": "The 'leesmb-5g' file system is at 99% of its space quota of 11.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.985850377516313", + "FileSystemName": "leesmb-5g" + }, + "id": "28f79641-bc04-5d08-128c-d734723a6d22" + }, + { + "name": "352", + "index": 352, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1645871903764, + "updated": 1645960213648, + "notified": 1645958411638, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstainesdaat-02\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "6c26f261-65a7-0fc8-9e2c-dcba9c3a0963" + }, + { + "name": "353", + "index": 353, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "lee-merc-test", + "component_type": "file-systems", + "state": "closed", + "created": 1646746265233, + "updated": 1646749271522, + "notified": 1646746265233, + "summary": "File system 'lee-merc-test' exceeded space quota", + "description": "The 'lee-merc-test' file system is at 614400% of its space quota of 1 bytes. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "6144.0", + "FileSystemName": "lee-merc-test" + }, + "id": "bfe01a44-46a4-e13f-1528-4af13559b6b3" + }, + { + "name": "354", + "index": 354, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "glencore-repl-local --> fbstaines01:glencore-repl-remote", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1648542217371, + "updated": 1648572371814, + "notified": 1648542217371, + "summary": "A file system replica link requires attention", + "description": "The file system replica link glencore-repl-local --> fbstaines01:glencore-repl-remote is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "glencore-repl-local", + "remote_name": "fbstaines01", + "local_file_system_id": "8cb59193-0fa6-944b-12f1-b63acaa2d5b6", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "glencore-repl-remote", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "5126ac8a-c602-229a-9502-68db9fd7a4a9", + "id": "a60e629f-882f-df50-0ad7-38c8f73ee276" + }, + "id": "bba17853-1a3c-9ae7-edb8-0316d253b77c" + }, + { + "name": "355", + "index": 355, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1648548053746, + "updated": 1648548053746, + "notified": 1648548053746, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while discovering directory servers for the domain in DNS. The failure occurred while querying dns for _ldap._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover directory servers for the domain using the configured DNS domain and nameservers.\nA health check failed while discovering kerberos servers for the domain in DNS. The failure occurred while querying dns for _kerberos._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover kerberos servers for the domain using the configured DNS domain and nameservers.\nThis may be the result of a network disruption or DNS misconfiguration, and can impair communication with the domain that is needed to authenticate and authorize clients.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the DNS configuration on FlashBlade is correct and that there is no network outage that impacts DNS availability. If this issue persists when DNS is properly configured and available, please contact the group(s) that administer the DNS name servers to ensure that the domain has not had its service records removed unintentionally.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "dns-directory-server-discovery,dns-kerberos-server-discovery", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "36ba7f19-d19f-f97f-4ab2-d55ca9e6fb47" + }, + { + "name": "356", + "index": 356, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "fs1-smb-dr <-- fbstaines01:fs1-smb", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1648702519538, + "updated": 1648705343279, + "notified": 1648702519538, + "summary": "A file system replica link requires attention", + "description": "The file system replica link fs1-smb-dr <-- fbstaines01:fs1-smb is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "fs1-smb-dr", + "remote_name": "fbstaines01", + "local_file_system_id": "8330203a-ad01-c1af-f4cc-572aab7411cd", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "fs1-smb", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "4b099150-d4cc-48b2-f11d-4b2dd8edba02", + "id": "668f5188-ba3e-744a-a3b3-b0dd1008bfa2" + }, + "id": "4afd253c-fb7c-d066-67d7-82573a1aec92" + }, + { + "name": "357", + "index": 357, + "flagged": true, + "code": 1124, + "severity": "critical", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1648898590823, + "updated": 1648899491986, + "notified": 1648898590823, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that the computer account configuration is the same locally and within the domain. The failure occurred while checking the result of an LDAP search in ldaps://ad.uklab.purestorage.com:636.\nThe following computer account attributes did not match the value configured locally on FlashBlade: servicePrincipalName. Please check if the account has been modified by another user within the domain. Other users making changes to the account without updating the FlashBlade configuration can cause undefined client behavior or loss of client access.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the Active Directory configuration on FlashBlade is correct, and contact the group(s) that administer the domain to ensure that FlashBlade's computer account within the domain has not been modified, moved, reset, or overwritten. If changes were made in the domain that are desired, please update the configuration on FlashBlade to match what is configured in the domain.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "account-consistency-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "e5abadec-e110-2d59-df16-4e6d4d4709e0" + }, + { + "name": "358", + "index": 358, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1649052491093, + "updated": 1649053992616, + "notified": 1649052491093, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstainesdata02\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "3463dbfe-86cd-b138-e9db-a0f13c1226cb" + }, + { + "name": "359", + "index": 359, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1650582988307, + "updated": 1650584369590, + "notified": 1650582988307, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Unable to communicate with remote. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "b963fbb9-d080-c6c4-3cd5-8f3a449a48a3" + }, + { + "name": "360", + "index": 360, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "edf-test --> fbstaines01:edf-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1651222218084, + "updated": 1651225281207, + "notified": 1651222218084, + "summary": "A file system replica link requires attention", + "description": "The file system replica link edf-test --> fbstaines01:edf-test is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "edf-test", + "remote_name": "fbstaines01", + "local_file_system_id": "65873485-2397-251b-7dd7-9d1a82c917d9", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "edf-test", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "9d78eab9-b0cb-0e19-bdf0-a8c692b35aac", + "id": "d273c4bf-01e2-d37c-cf72-f2ba0a0efaa6" + }, + "id": "fbff7c7a-9e6b-4e27-7a8e-5f15fc09e2e8" + }, + { + "name": "361", + "index": 361, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "edf-test --> fbstaines01:edf-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1651225461455, + "updated": 1651225882196, + "notified": 1651225461455, + "summary": "A file system replica link requires attention", + "description": "The file system replica link edf-test --> fbstaines01:edf-test is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "edf-test", + "remote_name": "fbstaines01", + "local_file_system_id": "65873485-2397-251b-7dd7-9d1a82c917d9", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "edf-test", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "9d78eab9-b0cb-0e19-bdf0-a8c692b35aac", + "id": "d273c4bf-01e2-d37c-cf72-f2ba0a0efaa6" + }, + "id": "a4fc43de-aacd-e956-2ce7-17ce01cabbff" + }, + { + "name": "362", + "index": 362, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "fb1-lee <-- fbstaines01:fb1-lee", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1651325670894, + "updated": 1651325791119, + "notified": 1651325670894, + "summary": "A file system replica link requires attention", + "description": "The file system replica link fb1-lee <-- fbstaines01:fb1-lee is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "fb1-lee", + "remote_name": "fbstaines01", + "local_file_system_id": "a78568ab-771a-49e0-12d2-e06a3ac71be4", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "fb1-lee", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "fde239f7-2852-3f90-5f9e-c22b2ce0c505", + "id": "f59e37dc-4974-152f-f159-4aa8a87267a4" + }, + "id": "0d98b517-7e76-6653-80c8-f142932837ba" + }, + { + "name": "363", + "index": 363, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1651594352889, + "updated": 1652786594805, + "notified": 1652778923928, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB3" + }, + "id": "5c0403cd-3bb8-db0c-c5cd-778f0105b260" + }, + { + "name": "364", + "index": 364, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1651596509296, + "updated": 1651603903962, + "notified": 1651596509296, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800490831136703", + "FileSystemName": "vertica-datagen" + }, + "id": "bef2042f-77f3-845d-a5ba-846f2862968f" + }, + { + "name": "365", + "index": 365, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1651846967837, + "updated": 1652083216011, + "notified": 1652020285000, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while discovering directory servers for the domain in DNS. The failure occurred while querying dns for _ldap._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover directory servers for the domain using the configured DNS domain and nameservers.\nA health check failed while discovering kerberos servers for the domain in DNS. The failure occurred while querying dns for _kerberos._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover kerberos servers for the domain using the configured DNS domain and nameservers.\nThis may be the result of a network disruption or DNS misconfiguration, and can impair communication with the domain that is needed to authenticate and authorize clients.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the DNS configuration on FlashBlade is correct and that there is no network outage that impacts DNS availability. If this issue persists when DNS is properly configured and available, please contact the group(s) that administer the DNS name servers to ensure that the domain has not had its service records removed unintentionally.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "dns-directory-server-discovery,dns-kerberos-server-discovery", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "230b2adb-4b30-04b5-6caf-04ff69870937" + }, + { + "name": "366", + "index": 366, + "flagged": false, + "code": 1123, + "severity": "warning", + "component_name": "pureuser", + "component_type": "security", + "state": "closed", + "created": 1651850814221, + "updated": 1667574893611, + "notified": 1666974711340, + "summary": "Insecure Default pureuser Password", + "description": "The user pureuser is configured with the default password. There will be notifications weekly.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1123", + "action": "Please change the user pureuser's password now. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": {}, + "id": "eda2777e-8865-df8a-ea14-ddd8a2defbff" + }, + { + "name": "367", + "index": 367, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1652004425590, + "updated": 1652004449047, + "notified": 1652004425590, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "5071b019-f483-b049-ced2-805ce8f302a2" + }, + { + "name": "368", + "index": 368, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1652004425590, + "updated": 1652004449048, + "notified": 1652004425590, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "a8f3c842-d87c-c7a2-acfc-aa05c402e544" + }, + { + "name": "369", + "index": 369, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1652004425590, + "updated": 1652004449048, + "notified": 1652004425590, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB7" + }, + "id": "52e00387-cd72-bf9d-1cd6-385a1f2bb00b" + }, + { + "name": "370", + "index": 370, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1652004429951, + "updated": 1652004429951, + "notified": 1652004429951, + "summary": "Data Protocol needs attention", + "description": "Data Protocol needs attention. The nfs service may be stopped or unhealthy due to internal error. Other enabled protocols may also be impacted. Please manually check NFS, SMB, HTTP, S3 for issues.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "1eb6527c-595b-f805-2410-e31b69ec93a7" + }, + { + "name": "371", + "index": 371, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1652004449047, + "updated": 1652004449047, + "notified": 1652004449047, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "290999ea-ea9f-5d80-5937-065428105bce" + }, + { + "name": "372", + "index": 372, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1652004449047, + "updated": 1652004449047, + "notified": 1652004449047, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB4" + }, + "id": "033db0ad-3031-a412-fbcc-51c208641c4c" + }, + { + "name": "373", + "index": 373, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1652004449048, + "updated": 1652004449048, + "notified": 1652004449048, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB6" + }, + "id": "3da5e7ea-2e83-bc71-efc6-a9b4324ca007" + }, + { + "name": "374", + "index": 374, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1652004461490, + "updated": 1652004461490, + "notified": 1652004461490, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "fbd795c6-403b-0f3c-1105-b7afc6c0c41e" + }, + { + "name": "375", + "index": 375, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1652004461490, + "updated": 1652004491744, + "notified": 1652004461490, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "505e9f27-81b8-331c-b3db-07fcfe794d75" + }, + { + "name": "376", + "index": 376, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "105d838c-8869-63be-a9cd-bf6b3b999ec3 -> post-test", + "component_type": "policies", + "state": "closed", + "created": 1652014122082, + "updated": 1652017424865, + "notified": 1652014122082, + "summary": "Policy BIS-5min-4h for file system post-test requires attention", + "description": "The scheduled replication from post-test to fbstaines01:post-test for policy BIS-5min-4h has delayed more than 12m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "105d838c-8869-63be-a9cd-bf6b3b999ec3", + "file_system_replica_link_id": "b25d9126-d31a-5264-783e-d8fc123fc841", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "replication_policy_period": "5m" + }, + "id": "91f087ff-3c40-2a1e-d82e-5d620709cada" + }, + { + "name": "377", + "index": 377, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "26895163-8759-018d-767f-d6c6c7be785a -> JHAH-Test-NFS", + "component_type": "policies", + "state": "closed", + "created": 1652014122082, + "updated": 1652017725108, + "notified": 1652014122082, + "summary": "Policy fbstaines01:JHAH-Policy for file system JHAH-Test-NFS requires attention", + "description": "The scheduled replication from JHAH-Test-NFS to fbstaines01:JHAH-Test-NFS for policy fbstaines01:JHAH-Policy has delayed more than 15m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "26895163-8759-018d-767f-d6c6c7be785a", + "file_system_replica_link_id": "30ced859-9cc0-4562-03c9-1f9e9296c7f8", + "remote_name": "fbstaines01", + "local_file_system_id": "5a833729-2538-1b7e-534c-f0b366e35676", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "f1281006-79d0-f8c0-a7ca-a1d7e2b87dc0", + "replication_policy_period": "5m" + }, + "id": "44ed6e2b-0d3e-24b3-ece7-c3073b5304ad" + }, + { + "name": "378", + "index": 378, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "3b00818b-eb31-43eb-1edf-9a8715d28272 -> jbwin", + "component_type": "policies", + "state": "closed", + "created": 1652014122082, + "updated": 1652017424865, + "notified": 1652014122082, + "summary": "Policy fbstaines01:5mins for file system jbwin requires attention", + "description": "The scheduled replication from jbwin to fbstaines01:jbwin for policy fbstaines01:5mins has delayed more than 18m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "3b00818b-eb31-43eb-1edf-9a8715d28272", + "file_system_replica_link_id": "8512941b-5c87-e4f0-cd5e-3331667b124c", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "replication_policy_period": "5m" + }, + "id": "810bd3c6-a42b-bce4-624d-af0d6a206983" + }, + { + "name": "379", + "index": 379, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "046a39a9-460a-c29f-c65a-a49d421a0d6d -> lee-nfs", + "component_type": "policies", + "state": "closed", + "created": 1652014122083, + "updated": 1652018325659, + "notified": 1652014122083, + "summary": "Policy 5min for file system lee-nfs requires attention", + "description": "The scheduled replication from lee-nfs to fbstaines01:lee-nfs for policy 5min has delayed more than 33m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "046a39a9-460a-c29f-c65a-a49d421a0d6d", + "file_system_replica_link_id": "9dcd6023-797e-0a14-1fc8-e9cded9c2fe9", + "remote_name": "fbstaines01", + "local_file_system_id": "07bee6df-173c-1eb7-d436-67aba09f9c32", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "1d757e48-112b-95a9-6349-4e1afb864ffa", + "replication_policy_period": "5m" + }, + "id": "9a6982c5-dfb3-8ae0-33fb-0780173f8f53" + }, + { + "name": "380", + "index": 380, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "3b00818b-eb31-43eb-1edf-9a8715d28272 -> AAA", + "component_type": "policies", + "state": "closed", + "created": 1652016223753, + "updated": 1652017424865, + "notified": 1652016223753, + "summary": "Policy fbstaines01:5mins for file system AAA requires attention", + "description": "The scheduled replication from AAA to fbstaines01:AAA for policy fbstaines01:5mins has delayed more than 12m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "3b00818b-eb31-43eb-1edf-9a8715d28272", + "file_system_replica_link_id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "replication_policy_period": "5m" + }, + "id": "a5796642-cd29-12ff-ebaf-e504d9dfe24f" + }, + { + "name": "381", + "index": 381, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "046a39a9-460a-c29f-c65a-a49d421a0d6d -> fb1-lee", + "component_type": "policies", + "state": "closed", + "created": 1652016223753, + "updated": 1652017725108, + "notified": 1652016223753, + "summary": "Policy 5min for file system fb1-lee requires attention", + "description": "The scheduled replication from fb1-lee to fbstaines01:fb1-lee for policy 5min has delayed more than 16m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "046a39a9-460a-c29f-c65a-a49d421a0d6d", + "file_system_replica_link_id": "f59e37dc-4974-152f-f159-4aa8a87267a4", + "remote_name": "fbstaines01", + "local_file_system_id": "a78568ab-771a-49e0-12d2-e06a3ac71be4", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_id": "fde239f7-2852-3f90-5f9e-c22b2ce0c505", + "replication_policy_period": "5m" + }, + "id": "5842843c-d3ce-4031-c44a-2d96fe2e4e1a" + }, + { + "name": "382", + "index": 382, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1652018988700, + "updated": 1652083383270, + "notified": 1652018988700, + "summary": "The file system replication connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 0 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "57350114-ac7c-f318-e0a0-f5273154edcf" + }, + { + "name": "383", + "index": 383, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "fb1-nfs <-- fbstaines01:fb1-nfs", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1652422561828, + "updated": 1652426766300, + "notified": 1652422561828, + "summary": "A file system replica link requires attention", + "description": "The file system replica link fb1-nfs <-- fbstaines01:fb1-nfs is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "fb1-nfs", + "remote_name": "fbstaines01", + "local_file_system_id": "3b763d4c-858a-c40c-1ea0-519656008f8a", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "fb1-nfs", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "a5a59d77-8e54-2a78-8fd5-efdc5915a023", + "id": "4a7661c8-86b8-64f4-1bce-fd7ae152711f" + }, + "id": "af6e41e3-3a19-243e-4b56-ab190813275b" + }, + { + "name": "384", + "index": 384, + "flagged": true, + "code": 1108, + "severity": "warning", + "component_name": "global", + "component_type": "certificates", + "state": "closed", + "created": 1652436397996, + "updated": 1655692007800, + "notified": 1655000807120, + "summary": "A certificate, global, has expired.", + "description": "The certificate with the name global expired at 2022-06-11 11:40:39 UTC. It is strongly recommended that the certificate be renewed, replaced, or removed from use, as it may cease to function. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1108", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "Valid To": "1654947639000", + "Certificate": "global" + }, + "id": "b4c402c2-4efe-ec60-6b44-b9ebf9d0e824" + }, + { + "name": "385", + "index": 385, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1652787964927, + "updated": 1652798965818, + "notified": 1652787964927, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800107723474503", + "FileSystemName": "vertica-datagen" + }, + "id": "8d2f7763-a2a1-a3cc-a6c4-67ca36b3ead6" + }, + { + "name": "386", + "index": 386, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1652788054551, + "updated": 1652788064703, + "notified": 1652788054551, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "587e1561-c356-fdad-65c6-8d7ebcbec903" + }, + { + "name": "387", + "index": 387, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1652788078716, + "updated": 1652788078716, + "notified": 1652788078716, + "summary": "Data Protocol needs attention", + "description": "Data Protocol needs attention. The nfs service may be stopped or unhealthy due to internal error. Other enabled protocols may also be impacted. Please manually check NFS, SMB, HTTP, S3 for issues.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "c8e2d736-3070-a295-5acc-9a635fb14fa1" + }, + { + "name": "388", + "index": 388, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbwin --> fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653462534547, + "updated": 1653492989478, + "notified": 1653462534547, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin --> fbstaines01:jbwin is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "id": "8512941b-5c87-e4f0-cd5e-3331667b124c" + }, + "id": "9525a468-95a0-2f02-c8b5-1a78737118da" + }, + { + "name": "389", + "index": 389, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbwin --> fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653493169719, + "updated": 1653499476567, + "notified": 1653493169719, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin --> fbstaines01:jbwin is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "id": "8512941b-5c87-e4f0-cd5e-3331667b124c" + }, + "id": "b6c3913f-0226-8f65-aeff-35c66f741e5a" + }, + { + "name": "390", + "index": 390, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbwin --> fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653499656890, + "updated": 1653500497845, + "notified": 1653499656890, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin --> fbstaines01:jbwin is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "id": "8512941b-5c87-e4f0-cd5e-3331667b124c" + }, + "id": "f34fde27-2520-951e-e671-1119a6c01a8a" + }, + { + "name": "391", + "index": 391, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1653500674767, + "updated": 1653547045150, + "notified": 1653500674767, + "summary": "The file system replication connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 0 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connected\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "d3a35d41-b1dc-b735-f758-db246dc5501f" + }, + { + "name": "392", + "index": 392, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbwin --> fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653543429788, + "updated": 1653544090765, + "notified": 1653543429788, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin --> fbstaines01:jbwin is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "id": "8512941b-5c87-e4f0-cd5e-3331667b124c" + }, + "id": "3ff6f92a-edc1-dbd0-184a-abd3d7ff68f8" + }, + { + "name": "393", + "index": 393, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbwin --> fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653547153960, + "updated": 1653550818957, + "notified": 1653547153960, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin --> fbstaines01:jbwin is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "id": "8512941b-5c87-e4f0-cd5e-3331667b124c" + }, + "id": "fffcc6b8-8383-51c7-38b8-91dbd149ec26" + }, + { + "name": "394", + "index": 394, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "post-test --> fbstaines01:post-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653547694647, + "updated": 1653550818958, + "notified": 1653547694647, + "summary": "A file system replica link requires attention", + "description": "The file system replica link post-test --> fbstaines01:post-test is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "post-test", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "post-test", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "id": "b25d9126-d31a-5264-783e-d8fc123fc841" + }, + "id": "b05dba87-860a-f18c-3e45-c902e5187f7f" + }, + { + "name": "395", + "index": 395, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbwin --> fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653550999153, + "updated": 1653557128340, + "notified": 1653550999153, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin --> fbstaines01:jbwin is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "id": "8512941b-5c87-e4f0-cd5e-3331667b124c" + }, + "id": "320a0fc9-4ae3-115c-00aa-71dd9114096c" + }, + { + "name": "396", + "index": 396, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "post-test --> fbstaines01:post-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653550999154, + "updated": 1653557128341, + "notified": 1653550999154, + "summary": "A file system replica link requires attention", + "description": "The file system replica link post-test --> fbstaines01:post-test is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "post-test", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "post-test", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "id": "b25d9126-d31a-5264-783e-d8fc123fc841" + }, + "id": "5bef32e1-2398-0cd3-a2f5-e1f983d0b607" + }, + { + "name": "397", + "index": 397, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "jbwin --> fbstaines01:jbwin", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653557308574, + "updated": 1653558750431, + "notified": 1653557308574, + "summary": "A file system replica link requires attention", + "description": "The file system replica link jbwin --> fbstaines01:jbwin is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "jbwin", + "remote_name": "fbstaines01", + "local_file_system_id": "b3207890-0478-bedc-cd0e-58e58f742508", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "jbwin", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "b5f5178d-6f1e-628c-1827-7e9a39045be6", + "id": "8512941b-5c87-e4f0-cd5e-3331667b124c" + }, + "id": "65023fd6-a519-fe87-80cc-f936463e9d4e" + }, + { + "name": "398", + "index": 398, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "post-test --> fbstaines01:post-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653557308574, + "updated": 1653561573396, + "notified": 1653557308574, + "summary": "A file system replica link requires attention", + "description": "The file system replica link post-test --> fbstaines01:post-test is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "post-test", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "post-test", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "id": "b25d9126-d31a-5264-783e-d8fc123fc841" + }, + "id": "b40197ca-d907-7ddd-d6e3-81d2d60755b5" + }, + { + "name": "399", + "index": 399, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "post-test --> fbstaines01:post-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653561753659, + "updated": 1653576170244, + "notified": 1653561753659, + "summary": "A file system replica link requires attention", + "description": "The file system replica link post-test --> fbstaines01:post-test is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "post-test", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "post-test", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "id": "b25d9126-d31a-5264-783e-d8fc123fc841" + }, + "id": "22147c71-dabd-fb02-2d8e-628e0dd11e25" + }, + { + "name": "400", + "index": 400, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "post-test --> fbstaines01:post-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653576350438, + "updated": 1653595031955, + "notified": 1653576350438, + "summary": "A file system replica link requires attention", + "description": "The file system replica link post-test --> fbstaines01:post-test is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "post-test", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "post-test", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "id": "b25d9126-d31a-5264-783e-d8fc123fc841" + }, + "id": "043f3119-5c92-bed5-e4b3-89d2f937017a" + }, + { + "name": "401", + "index": 401, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "post-test --> fbstaines01:post-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653595212299, + "updated": 1653636000647, + "notified": 1653595212299, + "summary": "A file system replica link requires attention", + "description": "The file system replica link post-test --> fbstaines01:post-test is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "post-test", + "remote_name": "fbstaines01", + "local_file_system_id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "post-test", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "3a366091-8272-ef81-0a1e-ee8a07feb5dd", + "id": "b25d9126-d31a-5264-783e-d8fc123fc841" + }, + "id": "856fe17f-f09e-84e3-8f94-639dc94a1c4a" + }, + { + "name": "402", + "index": 402, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1653670810521, + "updated": 1653907357419, + "notified": 1653843684025, + "summary": "The file system replication connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 0 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connected\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "40b18688-a67d-75c9-e79b-81173c401bd3" + }, + { + "name": "403", + "index": 403, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "AAA --> fbstaines01:AAA", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653941552764, + "updated": 1653945578100, + "notified": 1653941552764, + "summary": "A file system replica link requires attention", + "description": "The file system replica link AAA --> fbstaines01:AAA is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "AAA", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "AAA", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f" + }, + "id": "a706b03f-c039-b2fb-35af-fcf8f416205b" + }, + { + "name": "404", + "index": 404, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653941612956, + "updated": 1653945578100, + "notified": 1653941612956, + "summary": "A file system replica link requires attention", + "description": "The file system replica link JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "JHAH-Test-NFS", + "remote_name": "fbstaines01", + "local_file_system_id": "5a833729-2538-1b7e-534c-f0b366e35676", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "JHAH-Test-NFS", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "f1281006-79d0-f8c0-a7ca-a1d7e2b87dc0", + "id": "30ced859-9cc0-4562-03c9-1f9e9296c7f8" + }, + "id": "6f12396a-93b1-e044-db1e-ddb7df5372e5" + }, + { + "name": "405", + "index": 405, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "AAA --> fbstaines01:AAA", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653945758340, + "updated": 1653974116261, + "notified": 1653945758340, + "summary": "A file system replica link requires attention", + "description": "The file system replica link AAA --> fbstaines01:AAA is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "AAA", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "AAA", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f" + }, + "id": "d41747d4-d78a-768c-dc1a-ebb2681d28b4" + }, + { + "name": "406", + "index": 406, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653945758340, + "updated": 1653974116261, + "notified": 1653945758340, + "summary": "A file system replica link requires attention", + "description": "The file system replica link JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "JHAH-Test-NFS", + "remote_name": "fbstaines01", + "local_file_system_id": "5a833729-2538-1b7e-534c-f0b366e35676", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "JHAH-Test-NFS", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "f1281006-79d0-f8c0-a7ca-a1d7e2b87dc0", + "id": "30ced859-9cc0-4562-03c9-1f9e9296c7f8" + }, + "id": "9cfc5ce3-3a3a-4277-d416-61c22c990a1d" + }, + { + "name": "407", + "index": 407, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "AAA --> fbstaines01:AAA", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653974296478, + "updated": 1653981385756, + "notified": 1653974296478, + "summary": "A file system replica link requires attention", + "description": "The file system replica link AAA --> fbstaines01:AAA is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "AAA", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "AAA", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f" + }, + "id": "7ef7a9e2-486a-a08d-7c89-57ff5bf8f799" + }, + { + "name": "408", + "index": 408, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653974296478, + "updated": 1653981385756, + "notified": 1653974296478, + "summary": "A file system replica link requires attention", + "description": "The file system replica link JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "JHAH-Test-NFS", + "remote_name": "fbstaines01", + "local_file_system_id": "5a833729-2538-1b7e-534c-f0b366e35676", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "JHAH-Test-NFS", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "f1281006-79d0-f8c0-a7ca-a1d7e2b87dc0", + "id": "30ced859-9cc0-4562-03c9-1f9e9296c7f8" + }, + "id": "f1c86486-4ed9-6ea4-a1b5-538cf4e809ed" + }, + { + "name": "409", + "index": 409, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "AAA --> fbstaines01:AAA", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653981565955, + "updated": 1653986913137, + "notified": 1653981565955, + "summary": "A file system replica link requires attention", + "description": "The file system replica link AAA --> fbstaines01:AAA is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "AAA", + "remote_name": "fbstaines01", + "local_file_system_id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "AAA", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "91774a30-b42d-03c6-25e7-db4a42dcac92", + "id": "aea9edce-0a68-24a5-3cd0-0e909a18bb6f" + }, + "id": "9ee9be45-851b-132d-bde4-d4d26092a4e3" + }, + { + "name": "410", + "index": 410, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1653981565955, + "updated": 1653986913137, + "notified": 1653981565955, + "summary": "A file system replica link requires attention", + "description": "The file system replica link JHAH-Test-NFS --> fbstaines01:JHAH-Test-NFS is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "JHAH-Test-NFS", + "remote_name": "fbstaines01", + "local_file_system_id": "5a833729-2538-1b7e-534c-f0b366e35676", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "JHAH-Test-NFS", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "f1281006-79d0-f8c0-a7ca-a1d7e2b87dc0", + "id": "30ced859-9cc0-4562-03c9-1f9e9296c7f8" + }, + "id": "1eb4ed78-5f17-797b-e34b-78299940e937" + }, + { + "name": "411", + "index": 411, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1654043157354, + "updated": 1654043157354, + "notified": 1654043157354, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Unable to communicate with remote. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "772506a7-3c4b-20d8-9d9d-55c34fb0f2b9" + }, + { + "name": "412", + "index": 412, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "alias-failover --> fbstaines01:alias-failover", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1654308233854, + "updated": 1654329487895, + "notified": 1654308233854, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket alias-failover to bucket alias-failover on fbstaines01 is unhealthy. The detailed error is: The access key Id you provided does not exist in our records.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The access key Id you provided does not exist in our records.", + "remote_name": "fbstaines01", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_bucket_name": "alias-failover", + "id": "972c5b6e-b84a-a54b-27ba-c3ca1bed2c2a", + "local_bucket_name": "alias-failover", + "local_bucket_id": "3e0d8eb0-fb77-5bc3-c628-06c0f52092ae" + }, + "id": "a0835522-9118-f096-5a2a-70be0f6354b3" + }, + { + "name": "413", + "index": 413, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1654309234621, + "updated": 1654309294918, + "notified": 1654309234621, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "fb9d6268-5014-8ccd-8900-d1376db732cb" + }, + { + "name": "414", + "index": 414, + "flagged": false, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1654309667787, + "updated": 1654509173921, + "notified": 1654482472246, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "6c048440-496e-62a9-493a-ad6153337f8d" + }, + { + "name": "415", + "index": 415, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1654310612004, + "updated": 1654310612004, + "notified": 1654310612004, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB3" + }, + "id": "f9bbcf28-bdb5-253d-6a88-614157df7de6" + }, + { + "name": "416", + "index": 416, + "flagged": false, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1654425221295, + "updated": 1654425401606, + "notified": 1654425221295, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 5 bucket replica link(s) and 10 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connecting\" - \"Unable to communicate with remote.\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "521cd0e7-568a-6ba8-670f-b8b823922746" + }, + { + "name": "417", + "index": 417, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1654852610233, + "updated": 1654861404357, + "notified": 1654852610233, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "c40faa79-7553-739a-e2e6-71de48ff8a23" + }, + { + "name": "418", + "index": 418, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1654852620406, + "updated": 1654861414411, + "notified": 1654852620406, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "e5dd8045-cc94-5178-bfe3-702a8f1b836d" + }, + { + "name": "419", + "index": 419, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1654861390078, + "updated": 1654861420754, + "notified": 1654861390078, + "summary": "Data Protocol needs attention", + "description": "Data Protocol needs attention. The nfs service may be stopped or unhealthy due to internal error. Other enabled protocols may also be impacted. Please manually check NFS, SMB, HTTP, S3 for issues.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "2a735848-5f03-d40b-e8c9-89f0de117a9c" + }, + { + "name": "420", + "index": 420, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1654888765302, + "updated": 1654888945763, + "notified": 1654888765302, + "summary": "The file system replication connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 0 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "b9933e2f-c56a-a933-343b-db148109d264" + }, + { + "name": "421", + "index": 421, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1655024224584, + "updated": 1655035424913, + "notified": 1655024224584, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "7c942eb8-f9b5-eb86-c041-91863ba97a56" + }, + { + "name": "422", + "index": 422, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1655024234754, + "updated": 1655035606721, + "notified": 1655024234754, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "68ba394b-c4ce-ef1c-f843-1332c6ab7fc5" + }, + { + "name": "423", + "index": 423, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1655024247728, + "updated": 1655089769308, + "notified": 1655024247728, + "summary": "Data Protocol needs attention", + "description": "Data Protocol needs attention. The nfs service may be stopped or unhealthy due to internal error. Other enabled protocols may also be impacted. Please manually check NFS, SMB, HTTP, S3 for issues.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "6bbdc3ed-6efa-302d-0844-b2e243cfef1f" + }, + { + "name": "424", + "index": 424, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1655035445146, + "updated": 1655035667540, + "notified": 1655035445146, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "3132bba1-c3e0-f184-1738-17cbb5f5cacf" + }, + { + "name": "425", + "index": 425, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1655035677654, + "updated": 1655089761164, + "notified": 1655035677654, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "e9981317-9618-9cc7-1f42-022add3084fd" + }, + { + "name": "426", + "index": 426, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1655048549514, + "updated": 1655048669764, + "notified": 1655048549514, + "summary": "The file system replication connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 0 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connected\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "79e1f205-ea8b-54c3-8e80-c5e605846c97" + }, + { + "name": "427", + "index": 427, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1655216916673, + "updated": 1660148699613, + "notified": 1655735528148, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 10.225.112.66. 5 bucket replica link(s) and 8 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines01 is \"connecting\"\nObject replication connection to fbstaines01 is \"connecting\" - \"No route found. Please check remote connectivity.\"\nFile replication connection to fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "2701cb4a-f703-09f4-38c9-2dfe36f80456" + }, + { + "name": "428", + "index": 428, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1655219491786, + "updated": 1655222048031, + "notified": 1655219491786, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "aff31615-635c-499d-a181-239193235af2" + }, + { + "name": "429", + "index": 429, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1655220393975, + "updated": 1655223130165, + "notified": 1655220393975, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "7aeae5a1-1142-0040-f580-851f86be7b2d" + }, + { + "name": "430", + "index": 430, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1656057281304, + "updated": 1656061462335, + "notified": 1656057281304, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "efd4adb4-2909-b6df-8e75-48d1896413e1" + }, + { + "name": "431", + "index": 431, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1656057281304, + "updated": 1656061452188, + "notified": 1656057281304, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "49ea6ba4-cd32-14ec-7988-9d6e5ee0d0ab" + }, + { + "name": "432", + "index": 432, + "flagged": true, + "code": 1006, + "severity": "info", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1656057299048, + "updated": 1656057299048, + "notified": 1656057299048, + "summary": "Data Protocol needs attention", + "description": "Data Protocol needs attention. The nfs service may be stopped or unhealthy due to internal error. Other enabled protocols may also be impacted. Please manually check NFS, SMB, HTTP, S3 for issues.As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "a1b494c3-2abe-34dc-e38d-a3a1407b3769" + }, + { + "name": "433", + "index": 433, + "flagged": true, + "code": 1113, + "severity": "critical", + "component_name": "z-oracle_orabkup <-- fbstaines01:z-oracle_orabkup", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1656130914462, + "updated": 1656131455164, + "notified": 1656130914462, + "summary": "A file system replica link requires attention", + "description": "The file system replica link z-oracle_orabkup <-- fbstaines01:z-oracle_orabkup is not healthy with error: The source file system does not contain the target file system's latest replica snapshot. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1113", + "action": "Destroy and eradicate the latest replica snapshot on the target file system until the latest replica is shared by the source file system or the target is restored to null. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "z-oracle_orabkup", + "remote_name": "fbstaines01", + "local_file_system_id": "5aa8db28-cbc7-4c7e-0ad9-cd578c513461", + "remote_id": "20284fde-1f89-4b69-bbff-c372f25f1031", + "remote_file_system_name": "z-oracle_orabkup", + "error_code": "Source file system does not contain the target file system's latest replica snapshot.", + "remote_file_system_id": "1f794f63-1e93-22e2-d347-e3ec1aa4f52c", + "id": "cefff6f8-6ad2-56c4-d42c-d54fae75974c" + }, + "id": "fc2b420a-4bc2-1896-3be1-b1a66cb9c78a" + }, + { + "name": "434", + "index": 434, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1656334364066, + "updated": 1656336077749, + "notified": 1656334364066, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "2009ed9e-f0c9-9c0b-4a2b-26768f80d4ed" + }, + { + "name": "435", + "index": 435, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1656334364066, + "updated": 1656336047704, + "notified": 1656334364066, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "76a14a70-07d9-e3e6-2d0c-e506d1c38953" + }, + { + "name": "436", + "index": 436, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1656334434329, + "updated": 1656334434329, + "notified": 1656334434329, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "832f9167-06ff-cdc3-6e2b-686ef6c79411" + }, + { + "name": "437", + "index": 437, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1656334675706, + "updated": 1656334816878, + "notified": 1656334675706, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "4bd053bf-8e3e-4906-da00-743467fd9db0" + }, + { + "name": "438", + "index": 438, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1656334857145, + "updated": 1656334857145, + "notified": 1656334857145, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB3" + }, + "id": "51452cff-79a2-8145-d3c7-51815255d56c" + }, + { + "name": "439", + "index": 439, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1656335078910, + "updated": 1656335078910, + "notified": 1656335078910, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "a1dfdda6-1942-893d-cf0d-4e97af1ab30a" + }, + { + "name": "440", + "index": 440, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1656335290757, + "updated": 1656335290757, + "notified": 1656335290757, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "378bd3b0-0d7e-2539-ea00-0d87e0a0bf0c" + }, + { + "name": "441", + "index": 441, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1656335532934, + "updated": 1656335674459, + "notified": 1656335532934, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "678378c2-1cfb-b037-84fa-394033127c83" + }, + { + "name": "442", + "index": 442, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1656335714853, + "updated": 1656335714853, + "notified": 1656335714853, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "a3527f08-e867-3931-82cf-364b3cce69cf" + }, + { + "name": "443", + "index": 443, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1656336062676, + "updated": 1656336137999, + "notified": 1656336062676, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "3cf54dc0-9b9d-3cad-a5b2-3394eb6fa34d" + }, + { + "name": "444", + "index": 444, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1656605650348, + "updated": 1656605710653, + "notified": 1656605650348, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "3da35d34-890f-c2b1-c6b5-3592606a9104" + }, + { + "name": "445", + "index": 445, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1656606093055, + "updated": 1656944251453, + "notified": 1656865341240, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "71f9795b-afb8-4f86-03ac-4edd846a2d14" + }, + { + "name": "446", + "index": 446, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1656606093055, + "updated": 1656944251453, + "notified": 1656865341240, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "3cdcfced-fd40-dc19-6ec1-df93bada030c" + }, + { + "name": "447", + "index": 447, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1656944182471, + "updated": 1656946309563, + "notified": 1656945059714, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Evacuating", + "Blade": "CH1.FB1" + }, + "id": "7f43f8f7-ddf2-b726-488b-7483ea48cd5c" + }, + { + "name": "448", + "index": 448, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1656944182471, + "updated": 1656946249080, + "notified": 1656945059714, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Evacuating", + "Blade": "CH1.FB4" + }, + "id": "7bb135da-57fd-13d2-e73d-3cf54ff810a4" + }, + { + "name": "449", + "index": 449, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1656944192699, + "updated": 1656944444865, + "notified": 1656944192699, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "58fd1657-6efc-8a47-ab5f-1d15ed0a7023" + }, + { + "name": "450", + "index": 450, + "flagged": true, + "code": 1100, + "severity": "info", + "component_name": "fbstaines02", + "component_type": "arrays/space", + "state": "closed", + "created": 1656945087244, + "updated": 1656946228308, + "notified": 1656945087244, + "summary": "Storage consumption has reached 84% of usable capacity", + "description": "Storage consumption has exceeded 80% of usable capacity of 19.20 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1100", + "action": "Consider increasing capacity by adding a storage blade, or reducing consumption.", + "variables": { + "CurrentUtilization": "0.842957466381154", + "Capacity": "21110623253299" + }, + "id": "000e5ba5-fb2f-69f5-7217-e745e6fd4ce2" + }, + { + "name": "451", + "index": 451, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1656946346777, + "updated": 1656947128065, + "notified": 1656946346777, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800313361883163", + "FileSystemName": "vertica-datagen" + }, + "id": "ea96e75c-4182-308a-3223-4a69ef155a38" + }, + { + "name": "452", + "index": 452, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1657811843521, + "updated": 1660033609595, + "notified": 1658906675288, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Evacuated", + "Blade": "CH1.FB3" + }, + "id": "6c76452b-ecad-0b3e-280b-5cb3de7f1961" + }, + { + "name": "453", + "index": 453, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1657811994684, + "updated": 1657812085694, + "notified": 1657811994684, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "f1e5daa1-6230-d7f1-f365-3f5c6cfebec7" + }, + { + "name": "454", + "index": 454, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1657812004869, + "updated": 1657812105960, + "notified": 1657812004869, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "df960745-681a-0c93-7589-436e8e5a7516" + }, + { + "name": "455", + "index": 455, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1657812055356, + "updated": 1657812075577, + "notified": 1657812055356, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "2028bb5c-93fb-c331-90b5-bca5a83cc569" + }, + { + "name": "456", + "index": 456, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1657961917394, + "updated": 1657962879244, + "notified": 1657961917394, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800250273942947", + "FileSystemName": "vertica-datagen" + }, + "id": "d8ea5351-96fa-207b-5ca4-35bb5491aad2" + }, + { + "name": "457", + "index": 457, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1659230001133, + "updated": 1659230661794, + "notified": 1659230001133, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: Unable to communicate with remote. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "9170b341-4c71-8e23-49be-bc2a49964084" + }, + { + "name": "458", + "index": 458, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1659962512156, + "updated": 1659964724203, + "notified": 1659962512156, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while obtaining kerberos credentials by authenticating with the domain using the computer account. The failure occurred while requesting credentials from ad.uklab.purestorage.com:88.\nUnable to get a kerberos client ticket to communicate with the domain. Ensure that the computer account has not been deleted or reset, and that the domain is reachable, and try again.\nThis may cause users to be unable to access files even if mounting succeeds, due to inability to resolve their group membership information and authorize them.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "If the domain was recently joined, or if the server contacted was newly added, this can be the result of changes not having propagated throughout the domain and may be temporary. If this is not the case, please work with the team that administers the Active Directory domain to correct the authentication issues.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "kerberos-initialization", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "80ad65fa-8b10-96b2-b838-886e1a8d6275" + }, + { + "name": "459", + "index": 459, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1660040618871, + "updated": 1660124240720, + "notified": 1660040618871, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800133639574051", + "FileSystemName": "vertica-datagen" + }, + "id": "3eaeb08e-0eac-33cb-ab6b-8d1c36b11c1a" + }, + { + "name": "460", + "index": 460, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1660044424646, + "updated": 1660047516755, + "notified": 1660044424646, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "2c6075fc-ae17-add1-4376-cca31ffb6ab3" + }, + { + "name": "461", + "index": 461, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1660044424646, + "updated": 1660047516755, + "notified": 1660044424646, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB4" + }, + "id": "a9f9ac45-4c94-ca69-1604-2bf3673fb649" + }, + { + "name": "462", + "index": 462, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1660044424646, + "updated": 1660047516755, + "notified": 1660044424646, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB6" + }, + "id": "4ad4420d-5f46-8582-93d0-7c2db55642f5" + }, + { + "name": "463", + "index": 463, + "flagged": true, + "code": 1006, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1660044567997, + "updated": 1660047450993, + "notified": 1660044997702, + "summary": "Data Protocol is in critical condition", + "description": "NFS service is in critical condition and other enabled protocols may also be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "58c2a469-b0d4-216e-84b9-c69b2a18217e" + }, + { + "name": "464", + "index": 464, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1660046812632, + "updated": 1660047516755, + "notified": 1660046812632, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "fd15d9b4-4ece-9c7c-007a-311315fe030e" + }, + { + "name": "465", + "index": 465, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1660046937088, + "updated": 1660047516755, + "notified": 1660046937088, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB7" + }, + "id": "6d76f0df-0ed7-e04e-1541-eb4692cc0def" + }, + { + "name": "466", + "index": 466, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1660047486289, + "updated": 1660047516755, + "notified": 1660047486289, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "d1976ab5-324d-22a7-8174-bfff344f1359" + }, + { + "name": "467", + "index": 467, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "leemixed", + "component_type": "file-systems", + "state": "closed", + "created": 1660054822380, + "updated": 1660061916466, + "notified": 1660054942911, + "summary": "File system 'leemixed' approaching space quota", + "description": "The 'leemixed' file system is at 93% of its space quota of 1.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.927910468075424", + "FileSystemName": "leemixed" + }, + "id": "77c01ef4-aa92-7a45-eed6-c99e72fe2223" + }, + { + "name": "468", + "index": 468, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1660146461935, + "updated": 1660203659892, + "notified": 1660146461935, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while discovering directory servers for the domain in DNS. The failure occurred while querying dns for _ldap._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover directory servers for the domain using the configured DNS domain and nameservers.\nTests for the Active Directory configuration only failed on one component (fm2, with address 10.225.112.73). It is possible that one component is mis-cabled, degraded, or being blocked by network firewalls that are not being applied to the other component. You may wish to verify the health of that component. If a single component is degraded, then clients may be impacted intermittently, and the system is at greater risk of an outage due to lack of redundancy.\nA health check failed while discovering kerberos servers for the domain in DNS. The failure occurred while querying dns for _kerberos._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover kerberos servers for the domain using the configured DNS domain and nameservers.\nTests for the Active Directory configuration only failed on one component (fm2, with address 10.225.112.73). It is possible that one component is mis-cabled, degraded, or being blocked by network firewalls that are not being applied to the other component. You may wish to verify the health of that component. If a single component is degraded, then clients may be impacted intermittently, and the system is at greater risk of an outage due to lack of redundancy.\nThis may be the result of a network disruption or DNS misconfiguration, and can impair communication with the domain that is needed to authenticate and authorize clients.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the DNS configuration on FlashBlade is correct and that there is no network outage that impacts DNS availability. If this issue persists when DNS is properly configured and available, please contact the group(s) that administer the DNS name servers to ensure that the domain has not had its service records removed unintentionally.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "dns-directory-server-discovery,dns-kerberos-server-discovery", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "26a4bd7a-1931-5897-c16a-dff44a5741ee" + }, + { + "name": "469", + "index": 469, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1660154505907, + "updated": 1660199794732, + "notified": 1660154505907, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB3" + }, + "id": "83e14a3e-a41f-1b3a-3d76-be26ba5b2c8d" + }, + { + "name": "470", + "index": 470, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1660154505907, + "updated": 1660199794733, + "notified": 1660154505907, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB4" + }, + "id": "d5585677-9d4d-85d0-8a04-f0670032021f" + }, + { + "name": "471", + "index": 471, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1660154505907, + "updated": 1660203862557, + "notified": 1660154505907, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB6" + }, + "id": "271ab023-7fae-118c-e3a4-18137c0fd21c" + }, + { + "name": "472", + "index": 472, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1660154505907, + "updated": 1660203862558, + "notified": 1660154505907, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB7" + }, + "id": "57b0dc9a-4165-373b-9cdf-245c180927a7" + }, + { + "name": "473", + "index": 473, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1660157684079, + "updated": 1660203862557, + "notified": 1660157684079, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB1" + }, + "id": "88caec70-92cf-1f21-4a11-b0ca33534b9f" + }, + { + "name": "474", + "index": 474, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1660157684079, + "updated": 1660203862557, + "notified": 1660157684079, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB2" + }, + "id": "98363e74-cb08-14d0-641a-856d1c37420b" + }, + { + "name": "475", + "index": 475, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1660157684079, + "updated": 1660203862557, + "notified": 1660157684079, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB5" + }, + "id": "330ea5b4-88d4-bbf7-f232-264680caf188" + }, + { + "name": "476", + "index": 476, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1660160141347, + "updated": 1660170955076, + "notified": 1660160141347, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "2d9db615-a981-9b49-103f-595a373b61a7" + }, + { + "name": "477", + "index": 477, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1660170955076, + "updated": 1660201277094, + "notified": 1660170955076, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "5b1a2099-931d-043d-ad3f-94f6b4166737" + }, + { + "name": "478", + "index": 478, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1660178123721, + "updated": 1660203942488, + "notified": 1660178123721, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "e5a63546-dfac-5a01-65ef-5f3aa720caf8" + }, + { + "name": "479", + "index": 479, + "flagged": true, + "code": 1006, + "severity": "warning", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1660190099308, + "updated": 1660201247161, + "notified": 1660190099308, + "summary": "Data Protocol needs attention", + "description": "Data Protocol needs attention. The nfs service may be stopped or unhealthy due to internal error. Other enabled protocols may also be impacted. Please manually check NFS, SMB, HTTP, S3 for issues. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": {}, + "id": "7f576b85-551c-bde5-7475-47d0cd36ea45" + }, + { + "name": "480", + "index": 480, + "flagged": false, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines01", + "component_type": "array-connections", + "state": "closed", + "created": 1660294390282, + "updated": 1660893308200, + "notified": 1660813002189, + "summary": "An array connection to fbstaines01 requires attention", + "description": "The array connection to fbstaines01 is not fully connected; replication address: 192.168.4.250. 8 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines01 is \"connecting\" - \"Unable to communicate with remote.\"\nFile replication connection to fbstaines01 is \"connecting\"\nFile replication connection from fbstaines01 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "ed3e4beb-fcc5-20ae-c4d2-4b7c04d6acc5" + }, + "id": "2dc997ef-4258-2eb6-dc3b-8ac3b04dcd9c" + }, + { + "name": "481", + "index": 481, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1660834592548, + "updated": 1660973632600, + "notified": 1660921079885, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all IP addresses associated with the computer account's FQDNs resolve to network interfaces on the array. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but are registered in DNS to IP addresses that do not match any network interfaces on the array: fbstaines02-data-net5, fbstaines02-data-net5.uklab.purestorage.com\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-interface-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "fdef095a-6f58-3bed-cb8f-8477a928ed07" + }, + { + "name": "482", + "index": 482, + "flagged": false, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1660894383216, + "updated": 1660894923733, + "notified": 1660894383216, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.amazonaws.com; The detailed error is: No route found. Please check remote connectivity. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "613e7c16-758b-995d-7d46-04bc823dc502" + }, + "id": "40005ef1-7496-084b-7288-8d2fc7da7173" + }, + { + "name": "483", + "index": 483, + "flagged": false, + "code": 1112, + "severity": "warning", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1660894449195, + "updated": 1660894569404, + "notified": 1660894449195, + "summary": "The file system replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connected\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "237dc723-4517-a76d-4aa3-e1c9fc3897c7" + }, + "id": "f4fd7ef4-181a-3b61-d3cd-7432caf4b445" + }, + { + "name": "484", + "index": 484, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "z-oracle_orabkup", + "component_type": "file-systems", + "state": "closed", + "created": 1660917853927, + "updated": 1661051687749, + "notified": 1661004454156, + "summary": "File system 'z-oracle_orabkup' exceeded space quota", + "description": "The 'z-oracle_orabkup' file system is at 309% of its space quota of 1.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "3.09127112478018", + "FileSystemName": "z-oracle_orabkup" + }, + "id": "c4606935-e9fa-5509-bd55-a017564bd85c" + }, + { + "name": "485", + "index": 485, + "flagged": true, + "code": 1112, + "severity": "warning", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1660981958360, + "updated": 1660981958360, + "notified": 1660981958360, + "summary": "The file system replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connected\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "af9c83da-ee98-197b-d384-79cd45457393" + }, + "id": "b6dd7fe9-4cc2-e5a3-2305-2c658e396604" + }, + { + "name": "486", + "index": 486, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1661317212791, + "updated": 1661348801073, + "notified": 1661348801073, + "summary": "An array connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connecting\" - \"Internal error.\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "fdc4f3b6-2d6b-0589-01af-e2798d9ee2c0" + }, + "id": "7e04048d-45b5-f4e6-1b84-8ddcd1dd6280" + }, + { + "name": "487", + "index": 487, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "lee-fiolibnfs-1", + "component_type": "file-systems", + "state": "closed", + "created": 1661451702834, + "updated": 1661475324732, + "notified": 1661452183758, + "summary": "File system 'lee-fiolibnfs-1' exceeded space quota", + "description": "The 'lee-fiolibnfs-1' file system is at 393% of its space quota of 5.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "3.92578563839197", + "FileSystemName": "lee-fiolibnfs-1" + }, + "id": "83fa15cc-9791-f1b0-782c-bf2426b4fc9b" + }, + { + "name": "488", + "index": 488, + "flagged": true, + "code": 1100, + "severity": "warning", + "component_name": "fbstaines02", + "component_type": "arrays/space", + "state": "closed", + "created": 1661457957278, + "updated": 1661475374366, + "notified": 1661462221377, + "summary": "Storage consumption has reached 100% of usable capacity", + "description": "Storage consumption has exceeded 90% of usable capacity of 29.87 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1100", + "action": "Consider increasing capacity by adding a storage blade, or reducing consumption.", + "variables": { + "CurrentUtilization": "0.997075099773097", + "Capacity": "32838747282910" + }, + "id": "ed3c698f-94ad-cebf-5094-8b8bd4103553" + }, + { + "name": "489", + "index": 489, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1661472318139, + "updated": 1661475264605, + "notified": 1661472318139, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800070444345474", + "FileSystemName": "vertica-datagen" + }, + "id": "7f0fce93-4510-4c9c-9440-fba7d173f409" + }, + { + "name": "490", + "index": 490, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1661498796690, + "updated": 1661590630778, + "notified": 1661585225242, + "summary": "An array connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.254. 2 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connecting\" - \"Unable to communicate with remote.\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connected\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "fdc4f3b6-2d6b-0589-01af-e2798d9ee2c0" + }, + "id": "9f31f37b-99f7-e3ba-c01a-403966910457" + }, + { + "name": "491", + "index": 491, + "flagged": true, + "code": 1114, + "severity": "warning", + "component_name": "dca24879-26aa-b887-19dd-51d1498709a9 -> lee-repl-2", + "component_type": "policies", + "state": "closed", + "created": 1661684345296, + "updated": 1662022705461, + "notified": 1661943770574, + "summary": "Policy 15mins1Hr for file system lee-repl-2 requires attention", + "description": "The scheduled replication from lee-repl-2 to fbstaines03:lee-repl-2 for policy 15mins1Hr has delayed more than 3d 22h 15m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "dca24879-26aa-b887-19dd-51d1498709a9", + "file_system_replica_link_id": "7c758c77-918b-41e8-5f88-746c0f5579a6", + "remote_name": "fbstaines03", + "local_file_system_id": "a13e9881-8851-ae44-e664-215ab6819bee", + "remote_id": "3b4076b0-1bfd-47a2-8d19-648fac6b19f4", + "remote_file_system_id": "5517402c-25ef-69e2-b647-bdeb942efe46", + "replication_policy_period": "15m" + }, + "id": "352b4e4d-630c-4032-3ae8-459bc6e3a834" + }, + { + "name": "492", + "index": 492, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1662022773746, + "updated": 1662027228549, + "notified": 1662022773746, + "summary": "Ethernet connector CH1.FM1.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "d06f5783-9ce2-4f1e-874f-41ef3c9c8f11" + }, + { + "name": "493", + "index": 493, + "flagged": false, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1662022773746, + "updated": 1662027258630, + "notified": 1662022773746, + "summary": "Ethernet connector CH1.FM1.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "0177e3f6-595a-cb50-df9a-02bdd75190cc" + }, + { + "name": "494", + "index": 494, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1662022803991, + "updated": 1662025362340, + "notified": 1662022803991, + "summary": "Ethernet connector CH1.FM2.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "f886a754-334f-1f22-9b2d-f9fb79d42744" + }, + { + "name": "495", + "index": 495, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1662022803991, + "updated": 1662025362340, + "notified": 1662022803991, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "5a97d145-2d1d-43cd-e771-ee8febb8d67b" + }, + { + "name": "496", + "index": 496, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1662022803991, + "updated": 1662025362340, + "notified": 1662022803991, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "9dc5fc76-3a1b-e894-4178-7dcb560e47e3" + }, + { + "name": "497", + "index": 497, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1662022803991, + "updated": 1662025362340, + "notified": 1662022803991, + "summary": "Ethernet connector CH1.FM2.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "d1017562-b5e2-3bf6-3a74-415b66ff0613" + }, + { + "name": "498", + "index": 498, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1662022834363, + "updated": 1662027228549, + "notified": 1662022834363, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "9e49f737-6dac-2045-f0a9-0fb768ddbfcc" + }, + { + "name": "499", + "index": 499, + "flagged": false, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1662022834363, + "updated": 1662027258630, + "notified": 1662022834363, + "summary": "Ethernet connector CH1.FM1.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "6b96d9a8-00dc-d222-12af-a8a9909c0d15" + }, + { + "name": "500", + "index": 500, + "flagged": false, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1662022836747, + "updated": 1662028604164, + "notified": 1662022836747, + "summary": "The file system replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. 2 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connected\"\nFile replication connection to fbstaines03 is \"connected\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "fdc4f3b6-2d6b-0589-01af-e2798d9ee2c0" + }, + "id": "28b6e9ed-150a-5a9f-8860-653eef4d770b" + }, + { + "name": "501", + "index": 501, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1662023156089, + "updated": 1662025330190, + "notified": 1662023156089, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while discovering directory servers for the domain in DNS. The failure occurred while querying dns for _ldap._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover directory servers for the domain using the configured DNS domain and nameservers.\nA health check failed while discovering kerberos servers for the domain in DNS. The failure occurred while querying dns for _kerberos._tcp.dc._msdcs.uklab.purestorage.com.\nUnable to discover kerberos servers for the domain using the configured DNS domain and nameservers.\nThis may be the result of a network disruption or DNS misconfiguration, and can impair communication with the domain that is needed to authenticate and authorize clients.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the DNS configuration on FlashBlade is correct and that there is no network outage that impacts DNS availability. If this issue persists when DNS is properly configured and available, please contact the group(s) that administer the DNS name servers to ensure that the domain has not had its service records removed unintentionally.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "dns-directory-server-discovery,dns-kerberos-server-discovery", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "50ecec59-f7fc-d72f-9021-97ca1baf8b3f" + }, + { + "name": "502", + "index": 502, + "flagged": false, + "code": 1114, + "severity": "warning", + "component_name": "dca24879-26aa-b887-19dd-51d1498709a9 -> lee-repl-2", + "component_type": "policies", + "state": "closed", + "created": 1662029307580, + "updated": 1662083748388, + "notified": 1662029307580, + "summary": "Policy 15mins1Hr for file system lee-repl-2 requires attention", + "description": "The scheduled replication from lee-repl-2 to fbstaines03:lee-repl-2 for policy 15mins1Hr has delayed more than 4d 15h 12m. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1114", + "action": "Check the status of the file system replica link, health of the network, replication bandwidth throttle setting, and file system load. Consider relaxing the rule on the affected policy. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "policy_id": "dca24879-26aa-b887-19dd-51d1498709a9", + "file_system_replica_link_id": "7c758c77-918b-41e8-5f88-746c0f5579a6", + "remote_name": "fbstaines03", + "local_file_system_id": "a13e9881-8851-ae44-e664-215ab6819bee", + "remote_id": "3b4076b0-1bfd-47a2-8d19-648fac6b19f4", + "remote_file_system_id": "5517402c-25ef-69e2-b647-bdeb942efe46", + "replication_policy_period": "15m" + }, + "id": "7d4dc1a7-de0e-1a92-2698-fbb54f970fcc" + }, + { + "name": "503", + "index": 503, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "z-oracle_orabkup", + "component_type": "file-systems", + "state": "closed", + "created": 1662114619423, + "updated": 1662119847750, + "notified": 1662114619423, + "summary": "File system 'z-oracle_orabkup' approaching space quota", + "description": "The 'z-oracle_orabkup' file system is at 89% of its space quota of 5.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.892241333238781", + "FileSystemName": "z-oracle_orabkup" + }, + "id": "4531e868-f31e-6ee4-1203-c68b17a64a5c" + }, + { + "name": "504", + "index": 504, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws-lee", + "component_type": "targets", + "state": "closed", + "created": 1662558217120, + "updated": 1662558697580, + "notified": 1662558217120, + "summary": "A connection to target aws-lee requires attention", + "description": "The connection to aws-lee is not connected; target address: s3.amazonaws.com; The detailed error is: No route found. Please check remote connectivity. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "3df2c018-aced-d5c1-466f-f12d3f839d3c" + }, + "id": "e0a23031-d230-9b87-8054-4e63410718aa" + }, + { + "name": "505", + "index": 505, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "AWS", + "component_type": "targets", + "state": "closed", + "created": 1662558937842, + "updated": 1662558998016, + "notified": 1662558937842, + "summary": "A connection to target AWS requires attention", + "description": "The connection to AWS is not connected; target address: s3.amazonaws.com; The detailed error is: No route found. Please check remote connectivity. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "c5e956aa-7f7a-0937-b6c6-ea3079b65ebc" + }, + "id": "34205763-d469-2731-7430-06b52b04be91" + }, + { + "name": "506", + "index": 506, + "flagged": true, + "code": 1115, + "severity": "critical", + "component_name": "aws", + "component_type": "targets", + "state": "closed", + "created": 1662559898963, + "updated": 1662691969063, + "notified": 1662691969063, + "summary": "A connection to target aws requires attention", + "description": "The connection to aws is not connected; target address: s3.eu-east-1.amazonaws.com; The detailed error is: Remote hostname could not be resolved. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1115", + "action": "Please check your network connection and the correctness of the target address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "7921eda7-fe32-66f3-1e4f-7999d602e3c1" + }, + "id": "15ff5b84-af9a-614f-2763-c2774d39f2c1" + }, + { + "name": "507", + "index": 507, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "z-oracle_orabkup", + "component_type": "file-systems", + "state": "closed", + "created": 1662564977915, + "updated": 1664281939457, + "notified": 1662564977915, + "summary": "File system 'z-oracle_orabkup' approaching space quota", + "description": "The 'z-oracle_orabkup' file system is at 86% of its space quota of 10.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.856811175402254", + "FileSystemName": "z-oracle_orabkup" + }, + "id": "70d40da5-d3db-32c3-9d34-02cccdec218e" + }, + { + "name": "508", + "index": 508, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "lee-repl-2 --> fbstaines03:lee-repl-2", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1662635693173, + "updated": 1662635753391, + "notified": 1662635693173, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-2 --> fbstaines03:lee-repl-2 is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-2", + "remote_name": "fbstaines03", + "local_file_system_id": "a13e9881-8851-ae44-e664-215ab6819bee", + "remote_id": "3b4076b0-1bfd-47a2-8d19-648fac6b19f4", + "remote_file_system_name": "lee-repl-2", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "5517402c-25ef-69e2-b647-bdeb942efe46", + "id": "7c758c77-918b-41e8-5f88-746c0f5579a6" + }, + "id": "f6ea755f-e2a3-cc33-356b-54f3aa086139" + }, + { + "name": "509", + "index": 509, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1662721716990, + "updated": 1662725801496, + "notified": 1662721716990, + "summary": "An array connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.25. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connecting\" - \"Unable to communicate with remote.\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "1b538ff7-af94-5ca4-2540-d2191cce285d" + }, + "id": "c00d59c5-23d0-a40a-6bbc-18512701f5cf" + }, + { + "name": "510", + "index": 510, + "flagged": true, + "code": 1124, + "severity": "critical", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1662906365319, + "updated": 1662906365319, + "notified": 1662906365319, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that the computer account configuration is the same locally and within the domain. The failure occurred while checking the result of an LDAP search in ldaps://ad.uklab.purestorage.com:636.\nUnable to initialize kerberized communication with ad.uklab.purestorage.com as the configured computer account. Please verify that the account has not been reset and is allowed to authenticate with this server in the domain.\nTests for the Active Directory configuration only failed on one component (fm1, with address 10.225.112.72). It is possible that one component is mis-cabled, degraded, or being blocked by network firewalls that are not being applied to the other component. You may wish to verify the health of that component. If a single component is degraded, then clients may be impacted intermittently, and the system is at greater risk of an outage due to lack of redundancy.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the Active Directory configuration on FlashBlade is correct, and contact the group(s) that administer the domain to ensure that FlashBlade's computer account within the domain has not been modified, moved, reset, or overwritten. If changes were made in the domain that are desired, please update the configuration on FlashBlade to match what is configured in the domain.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "account-consistency-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "4a54d9c9-6776-c86d-3754-1df10e6f1bda" + }, + { + "name": "511", + "index": 511, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-1 --> fbstaines03:lee-repl-1", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1662953178596, + "updated": 1662959127366, + "notified": 1662953178596, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-1 --> fbstaines03:lee-repl-1 is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-1", + "remote_name": "fbstaines03", + "local_file_system_id": "1984e015-5012-75d5-4c72-38ca585a28bd", + "remote_id": "b9f92cf6-489c-46ff-8c43-39ef18790875", + "remote_file_system_name": "lee-repl-1", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "98650bfc-6e97-855e-d17b-0fd171a7f5da", + "id": "73f8e439-3af7-c3a2-ff03-6277f17f614c" + }, + "id": "78bc6386-3006-4dd1-11c7-495611f2c1f7" + }, + { + "name": "512", + "index": 512, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-2 --> fbstaines03:lee-repl-2", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1662953178596, + "updated": 1662959307625, + "notified": 1662953178596, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-2 --> fbstaines03:lee-repl-2 is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-2", + "remote_name": "fbstaines03", + "local_file_system_id": "a13e9881-8851-ae44-e664-215ab6819bee", + "remote_id": "b9f92cf6-489c-46ff-8c43-39ef18790875", + "remote_file_system_name": "lee-repl-2", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "6df5154e-7961-a2ef-6c37-254f6b8816da", + "id": "f50a136f-d275-9828-7320-0e7bdb1bbae8" + }, + "id": "2b8c62c5-d0d2-9592-6e9c-54053ef61de3" + }, + { + "name": "513", + "index": 513, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-4 <-- fbstaines03:lee-repl-4", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1662955222081, + "updated": 1662958586622, + "notified": 1662955222081, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-4 <-- fbstaines03:lee-repl-4 is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-4", + "remote_name": "fbstaines03", + "local_file_system_id": "18091616-d54e-277a-10d1-46591a9e03f2", + "remote_id": "b9f92cf6-489c-46ff-8c43-39ef18790875", + "remote_file_system_name": "lee-repl-4", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "d35075d6-3c64-9051-c6bd-60d253046fdc", + "id": "366f11cc-7559-a29f-dcc8-b6bfae738035" + }, + "id": "574ef1f1-3d9e-5395-1ebf-e1a496777683" + }, + { + "name": "514", + "index": 514, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-3 --> fbstaines03:lee-repl-3", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1662960088662, + "updated": 1662970784088, + "notified": 1662960088662, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-3 --> fbstaines03:lee-repl-3 is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-3", + "remote_name": "fbstaines03", + "local_file_system_id": "57c6907a-5b75-9ff6-35f7-ef346ed832bb", + "remote_id": "b9f92cf6-489c-46ff-8c43-39ef18790875", + "remote_file_system_name": "lee-repl-3", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "f339f6fa-b2f6-ce0f-5965-be4944c5717e", + "id": "459ced59-b2a5-117b-df5c-a668f412361d" + }, + "id": "d8e0643d-cc21-7718-f2d1-0d17e5682c29" + }, + { + "name": "515", + "index": 515, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "lee-file-size", + "component_type": "file-systems", + "state": "closed", + "created": 1663049220953, + "updated": 1663121065670, + "notified": 1663049220953, + "summary": "File system 'lee-file-size' approaching space quota", + "description": "The 'lee-file-size' file system is at 82% of its space quota of 1.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.817219662480056", + "FileSystemName": "lee-file-size" + }, + "id": "a578fe68-56ff-28dd-ee4a-69267bbbb958" + }, + { + "name": "516", + "index": 516, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1663051290005, + "updated": 1664292519896, + "notified": 1663569833152, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "a2805ee8-24ec-ec53-1b23-2bd41eb0bd03" + }, + { + "name": "517", + "index": 517, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1663051290005, + "updated": 1664292519896, + "notified": 1663569833152, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "182b9370-007a-9e18-d88d-3d574a684fa4" + }, + { + "name": "518", + "index": 518, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "lee-fio", + "component_type": "file-systems", + "state": "closed", + "created": 1663694735862, + "updated": 1666022551238, + "notified": 1664213484672, + "summary": "File system 'lee-fio' exceeded space quota", + "description": "The 'lee-fio' file system is at 867% of its space quota of 1.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "8.67402563616633", + "FileSystemName": "lee-fio" + }, + "id": "8e193b4f-3ff9-f15c-0df5-617613d49132" + }, + { + "name": "519", + "index": 519, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "z-rac_demo", + "component_type": "file-systems", + "state": "closed", + "created": 1664289331883, + "updated": 1664353654325, + "notified": 1664289692653, + "summary": "File system 'z-rac_demo' exceeded space quota", + "description": "The 'z-rac_demo' file system is at 166% of its space quota of 3.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.66103309734414", + "FileSystemName": "z-rac_demo" + }, + "id": "37f7bb20-7284-80c7-e6d6-0e1139a73fcd" + }, + { + "name": "520", + "index": 520, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "z-rac_demo", + "component_type": "file-systems", + "state": "closed", + "created": 1664547058796, + "updated": 1664871845775, + "notified": 1664807720437, + "summary": "File system 'z-rac_demo' approaching space quota", + "description": "The 'z-rac_demo' file system is at 97% of its space quota of 10.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.965325978025794", + "FileSystemName": "z-rac_demo" + }, + "id": "a6883737-5bcd-303a-f0a8-3e7a1cefc4c8" + }, + { + "name": "521", + "index": 521, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1664593445730, + "updated": 1664595067560, + "notified": 1664593445730, + "summary": "The file system replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. 2 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connected\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "1b538ff7-af94-5ca4-2540-d2191cce285d" + }, + "id": "632333f8-8ac3-8397-006f-1afa24fdf0ec" + }, + { + "name": "522", + "index": 522, + "flagged": false, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1665477497926, + "updated": 1671009639060, + "notified": 1665995966918, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "85ec69d1-dcec-5534-1c4f-114b4d08a893" + }, + { + "name": "523", + "index": 523, + "flagged": false, + "code": 1106, + "severity": "critical", + "component_name": "users of user-quotas", + "component_type": "usage/users", + "state": "closed", + "created": 1666022784640, + "updated": 1666023117311, + "notified": 1666022784640, + "summary": "One user has reached or exceeded 100% of their quota on file system user-quotas", + "description": "One user has reached or exceeded 100% of their allotted write size limitation on file system user-quotas. ", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1106", + "action": "Either the quota assigned to the user must be increased, or the space usage must be reduced.", + "variables": { + "File System Name": "user-quotas", + "Number Of Users Between 80%-90% Usage": "0", + "Number Of Users Above 100% Usage": "1", + "Number Of Users Between 90%-100% Usage": "0" + }, + "id": "887a6e17-d8f8-0cac-6904-24f7da5eb0a1" + }, + { + "name": "524", + "index": 524, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1666101865504, + "updated": 1666102165910, + "notified": 1666101865504, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstaines02data-vlan4-1, fbstaines02data-vlan4-1.uklab.purestorage.com\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "29b76903-b33a-28b0-0172-c703422485c7" + }, + { + "name": "525", + "index": 525, + "flagged": true, + "code": 1103, + "severity": "info", + "component_name": "Global Snapshot Limit", + "component_type": "file-system-snapshots", + "state": "closed", + "created": 1666741424307, + "updated": 1667466098898, + "notified": 1666741424307, + "summary": "Number of snapshots is approaching the array limit", + "description": "The number of snapshots on the array is approaching the limit of the array. 40254 snapshots exist; the limit is 50000 snapshots. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1103", + "action": "No action is required at this time. However, continued creation of snapshots without removal may result in the inability to take more if the limit is reached.", + "variables": { + "Number of Snapshots Existing": "40254", + "Array Snapshot Limit": "50000" + }, + "id": "deae0dfb-b645-2a78-026b-e63640ce139f" + }, + { + "name": "526", + "index": 526, + "flagged": true, + "code": 1116, + "severity": "critical", + "component_name": "lee-repl-4 <-- fbstaines03:lee-repl-4", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1667569741329, + "updated": 1667570462219, + "notified": 1667569741329, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-4 <-- fbstaines03:lee-repl-4 is not healthy with error: The target file system was destroyed. Replicated work will be lost if the file system is not recovered before it is eradicated. The file system will be automatically eradicated 24 hours after it was destroyed. This may be the expected result of an intentional action. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1116", + "action": "Recover the destroyed file system on the target array. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-4", + "remote_name": "fbstaines03", + "local_file_system_id": "18091616-d54e-277a-10d1-46591a9e03f2", + "remote_id": "b9f92cf6-489c-46ff-8c43-39ef18790875", + "remote_file_system_name": "lee-repl-4", + "error_code": "Target file system is destroyed.", + "remote_file_system_id": "d35075d6-3c64-9051-c6bd-60d253046fdc", + "id": "366f11cc-7559-a29f-dcc8-b6bfae738035" + }, + "id": "a2a3db18-e9f3-10b3-f684-475f14239ea1" + }, + { + "name": "527", + "index": 527, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575046390, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "b677f010-d677-9e07-c185-38826d8533c4" + }, + { + "name": "528", + "index": 528, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575016292, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "87477e71-acef-801c-fd81-ef87a0b0e309" + }, + { + "name": "529", + "index": 529, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575046390, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM2.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "73fe2da4-f013-3eed-6279-f66952c6cdc4" + }, + { + "name": "530", + "index": 530, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575016292, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM1.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "5db1116b-0b23-b41e-0d4b-16f605e96d21" + }, + { + "name": "531", + "index": 531, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575046390, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM2.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "c84dae5b-b7df-4095-200e-4fbc8ab28adc" + }, + { + "name": "532", + "index": 532, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575016292, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM1.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "c63fd832-5785-a2ac-f787-84d194ea85ae" + }, + { + "name": "533", + "index": 533, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575016292, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM1.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "3685da45-97c2-911c-cb96-6ec380701511" + }, + { + "name": "534", + "index": 534, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1667574804965, + "updated": 1667575046390, + "notified": 1667574804965, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "cd286f79-88e8-7244-9dd3-271d7858d015" + }, + { + "name": "535", + "index": 535, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1667574844319, + "updated": 1667575272640, + "notified": 1667574844319, + "summary": "The file system replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. 1 file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connected\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "1b538ff7-af94-5ca4-2540-d2191cce285d" + }, + "id": "e8503cbf-33c6-ff1c-350c-a6aaa8128518" + }, + { + "name": "536", + "index": 536, + "flagged": false, + "code": 1123, + "severity": "warning", + "component_name": "pureuser", + "component_type": "security", + "state": "closed", + "created": 1667575565158, + "updated": 1667587269342, + "notified": 1667575565158, + "summary": "Insecure Default pureuser Password", + "description": "The user pureuser is configured with the default password. There will be notifications weekly.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1123", + "action": "Please change the user pureuser's password now. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": {}, + "id": "941a4b7a-22f9-d1bd-1e2c-606086c0d240" + }, + { + "name": "537", + "index": 537, + "flagged": false, + "code": 1123, + "severity": "warning", + "component_name": "pureuser", + "component_type": "security", + "state": "open", + "created": 1667589574871, + "updated": 1682296150278, + "notified": 1682108888761, + "summary": "Insecure Default pureuser Password", + "description": "The user pureuser is configured with the default password. There will be notifications weekly.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1123", + "action": "Please change the user pureuser's password now. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": {}, + "id": "37128cd7-14fd-8d18-06c9-dafd2f5f889d" + }, + { + "name": "538", + "index": 538, + "flagged": true, + "code": 1112, + "severity": "warning", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1667994905765, + "updated": 1670596221267, + "notified": 1668781592483, + "summary": "The file system replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connected\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "b2886a1a-f0d9-2bcc-3d10-86e5e6b8c5ca" + }, + "id": "ed15255d-9dae-b1c2-5321-3ffda71567c3" + }, + { + "name": "539", + "index": 539, + "flagged": true, + "code": 1124, + "severity": "critical", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1668088921591, + "updated": 1668088921591, + "notified": 1668088921591, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that the computer account configuration is the same locally and within the domain. The failure occurred while checking the result of an LDAP search in ldaps://ad.uklab.purestorage.com:636.\nUnable to initialize kerberized communication with ad.uklab.purestorage.com as the configured computer account. Please verify that the account has not been reset and is allowed to authenticate with this server in the domain.\nTests for the Active Directory configuration only failed on one component (fm1, with address 10.225.112.72). It is possible that one component is mis-cabled, degraded, or being blocked by network firewalls that are not being applied to the other component. You may wish to verify the health of that component. If a single component is degraded, then clients may be impacted intermittently, and the system is at greater risk of an outage due to lack of redundancy.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the Active Directory configuration on FlashBlade is correct, and contact the group(s) that administer the domain to ensure that FlashBlade's computer account within the domain has not been modified, moved, reset, or overwritten. If changes were made in the domain that are desired, please update the configuration on FlashBlade to match what is configured in the domain.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "account-consistency-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "fc81e13e-5077-0d9b-3afe-0d6b02057f26" + }, + { + "name": "540", + "index": 540, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781836564, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "90a6caf8-2976-4443-1e5c-74d28eb85645" + }, + { + "name": "541", + "index": 541, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781806405, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "55c9bf02-4d94-21b2-f7a6-5e4bd2ed2cad" + }, + { + "name": "542", + "index": 542, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781836564, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM2.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "b20afade-a9cb-c1b0-c7b9-2678fe79b46c" + }, + { + "name": "543", + "index": 543, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781806405, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM1.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "bbd592a8-cb07-a05e-420e-9ac182bf846d" + }, + { + "name": "544", + "index": 544, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781836564, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM2.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "a59c847f-08d8-e2cd-b9b5-5489677a1ddd" + }, + { + "name": "545", + "index": 545, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781806405, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM1.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "b78eeae9-3d34-d9f9-2f6d-4ae1bf750bcb" + }, + { + "name": "546", + "index": 546, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781806405, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM1.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "911ce7e3-c3d4-0010-9796-9be6b66ed92a" + }, + { + "name": "547", + "index": 547, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1668781595053, + "updated": 1668781836564, + "notified": 1668781595053, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "873c0e3a-ae2a-51c9-af61-0f07a9dd8641" + }, + { + "name": "548", + "index": 548, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "lee_prd <-- fbstaines03:lee_prd", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1670599641557, + "updated": 1670601503783, + "notified": 1670599641557, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee_prd <-- fbstaines03:lee_prd is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee_prd", + "remote_name": "fbstaines03", + "local_file_system_id": "bbf88c4e-b64b-403a-b69b-fb9e8f348780", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_file_system_name": "lee_prd", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "b90b868f-d1d4-9d19-71c9-8189b4ba9e7e", + "id": "953683c3-6a3d-f500-b418-4339458098ee" + }, + "id": "c8d64907-dbbb-1f46-5d62-9a384e59faa5" + }, + { + "name": "549", + "index": 549, + "flagged": false, + "code": 1120, + "severity": "critical", + "component_name": "lee_prod <-- fbstaines03:lee_prod", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1670852228664, + "updated": 1671009418607, + "notified": 1670938672622, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee_prod <-- fbstaines03:lee_prod is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee_prod", + "remote_name": "fbstaines03", + "local_file_system_id": "24aeae28-18d4-1c4d-1baa-91191b8b350d", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_file_system_name": "lee_prod", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "43389ca6-ee01-ba8a-3561-0b3b23b504ee", + "id": "eae52877-110d-ff9c-fc9c-852d691bef83" + }, + "id": "011348bf-bf16-a793-ccf7-9833b37a1ac6" + }, + { + "name": "550", + "index": 550, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1671010298395, + "updated": 1671010298395, + "notified": 1671010298395, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "a5c1d9c5-4bb6-221c-18ae-564c38b3fb5c" + }, + { + "name": "551", + "index": 551, + "flagged": false, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1671010341166, + "updated": 1671011981725, + "notified": 1671010341166, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "9a8299d1-9d69-942c-596c-e1271ea0ade7" + }, + { + "name": "552", + "index": 552, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1671010531356, + "updated": 1671010531356, + "notified": 1671010531356, + "summary": "Blade CH1.FB2 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB2" + }, + "id": "407cd9c2-4d78-0a30-142f-5c70bb910467" + }, + { + "name": "553", + "index": 553, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1671010714247, + "updated": 1671010714247, + "notified": 1671010714247, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB3" + }, + "id": "1396daa8-87fd-e747-1c3a-adf9108e995d" + }, + { + "name": "554", + "index": 554, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1671010951845, + "updated": 1671010951845, + "notified": 1671010951845, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB4" + }, + "id": "c8808811-1060-9f9d-7cbf-187357376c90" + }, + { + "name": "555", + "index": 555, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1671011159209, + "updated": 1671011159209, + "notified": 1671011159209, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "60f940d3-faea-a0ad-e862-c87ad6e55dcc" + }, + { + "name": "556", + "index": 556, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1671011394820, + "updated": 1671011394820, + "notified": 1671011394820, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "0c8d0eb6-a6b5-12d3-9941-3dfb4fabbe4c" + }, + { + "name": "557", + "index": 557, + "flagged": false, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1671011579351, + "updated": 1671011579351, + "notified": 1671011579351, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB7" + }, + "id": "98b14e2a-e8a2-78f3-2a52-33fb085c0556" + }, + { + "name": "558", + "index": 558, + "flagged": false, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1671011923808, + "updated": 1671012015928, + "notified": 1671011923808, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "03ef334e-dcc2-df9c-58b4-aa1cd5b7a160" + }, + { + "name": "559", + "index": 559, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "lee-repl-bloomberg <-- fbstaines03:lee-repl-bloomberg", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1671706107131, + "updated": 1671711094533, + "notified": 1671706107131, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-repl-bloomberg <-- fbstaines03:lee-repl-bloomberg is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-repl-bloomberg", + "remote_name": "fbstaines03", + "local_file_system_id": "96f9184b-639a-5b4e-b3aa-9569886ca693", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_file_system_name": "lee-repl-bloomberg", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "1624d47a-424b-3235-03bd-5d09485d02cd", + "id": "0020db9e-4aa8-8083-68c5-2698d08f17eb" + }, + "id": "a8739843-8def-c181-37e5-de00d123bcef" + }, + { + "name": "560", + "index": 560, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB8", + "component_type": "blades", + "state": "closed", + "created": 1672834128601, + "updated": 1673328840044, + "notified": 1673328416884, + "summary": "Blade CH1.FB8 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB8" + }, + "id": "c0a3f100-2e03-78cc-1b13-0d2bc123829c" + }, + { + "name": "561", + "index": 561, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB9", + "component_type": "blades", + "state": "closed", + "created": 1672834148868, + "updated": 1672834269900, + "notified": 1672834148868, + "summary": "Blade CH1.FB9 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB9" + }, + "id": "a111ca36-e078-b1dd-b01c-8933ff732593" + }, + { + "name": "562", + "index": 562, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB10", + "component_type": "blades", + "state": "closed", + "created": 1672834189269, + "updated": 1672834320280, + "notified": 1672834189269, + "summary": "Blade CH1.FB10 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB10" + }, + "id": "6aebb5b1-052c-09fa-af81-4e2a87f74df2" + }, + { + "name": "563", + "index": 563, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1673005346768, + "updated": 1673008652122, + "notified": 1673005346768, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstaines02data-vlan4-2\nA health check failed while checking that all IP addresses associated with the computer account's FQDNs resolve to network interfaces on the array. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but are registered in DNS to IP addresses that do not match any network interfaces on the array: fbstaines02data-vlan4-2.uklab.purestorage.com\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check,network-interface-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "cccc74a3-5e8f-adf3-adc8-6d6abc3e03c2" + }, + { + "name": "564", + "index": 564, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB10", + "component_type": "blades", + "state": "closed", + "created": 1673274437389, + "updated": 1673274437389, + "notified": 1673274437389, + "summary": "Blade CH1.FB10 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB10" + }, + "id": "96003118-f57d-b9cf-f47e-aae3f78a8001" + }, + { + "name": "565", + "index": 565, + "flagged": false, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB8", + "component_type": "blades", + "state": "closed", + "created": 1673621712088, + "updated": 1676635302717, + "notified": 1674140252053, + "summary": "Blade CH1.FB8 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB8" + }, + "id": "8f78ba26-737e-b7ec-5049-3442e724d952" + }, + { + "name": "566", + "index": 566, + "flagged": false, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1674104532953, + "updated": 1674107839508, + "notified": 1674104532953, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstaines02data-vlan4-3\nA health check failed while checking that all IP addresses associated with the computer account's FQDNs resolve to network interfaces on the array. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but are registered in DNS to IP addresses that do not match any network interfaces on the array: fbstaines02data-vlan4-3.uklab.purestorage.com\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check,network-interface-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "0bd7c5e5-55d5-8736-3f1f-7134a8bfd604" + }, + { + "name": "567", + "index": 567, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1674466591553, + "updated": 1675854001800, + "notified": 1674985095630, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "d106a4fa-30c8-cfe0-5117-c65bd0cc3dc6" + }, + { + "name": "568", + "index": 568, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1674570336111, + "updated": 1674570336111, + "notified": 1674570336111, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while obtaining kerberos credentials by authenticating with the domain using the computer account. The failure occurred while requesting credentials from ad.uklab.purestorage.com:88.\nUnable to get a kerberos client ticket to communicate with the domain. Ensure that the computer account has not been deleted or reset, and that the domain is reachable, and try again.\nThis may cause users to be unable to access files even if mounting succeeds, due to inability to resolve their group membership information and authorize them.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "If the domain was recently joined, or if the server contacted was newly added, this can be the result of changes not having propagated throughout the domain and may be temporary. If this is not the case, please work with the team that administers the Active Directory domain to correct the authentication issues.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "kerberos-initialization", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "03efc9fa-60b3-d779-588b-54bf42555a5d" + }, + { + "name": "569", + "index": 569, + "flagged": true, + "code": 1112, + "severity": "warning", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1674580924956, + "updated": 1674625798472, + "notified": 1674580924956, + "summary": "The file system replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connected\"\nFile replication connection to fbstaines03 is \"connected\"\nFile replication connection from fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "b2886a1a-f0d9-2bcc-3d10-86e5e6b8c5ca" + }, + "id": "ea38624d-8c29-d836-75d6-66cb1727910f" + }, + { + "name": "570", + "index": 570, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1674640691109, + "updated": 1674658299282, + "notified": 1674640691109, + "summary": "Ethernet connector CH1.FM2.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.1" + }, + "id": "aa280802-fd75-68da-af76-951605864c31" + }, + { + "name": "571", + "index": 571, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1674640691109, + "updated": 1674658299282, + "notified": 1674640691109, + "summary": "Ethernet connector CH1.FM1.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "6b7bad61-ed80-893b-1e49-b8a97d8b476a" + }, + { + "name": "572", + "index": 572, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1674640691109, + "updated": 1674658299282, + "notified": 1674640691109, + "summary": "Ethernet connector CH1.FM1.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "27488359-7ac1-2f3d-c0c3-fe7153c4adf0" + }, + { + "name": "573", + "index": 573, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1674640691109, + "updated": 1674658299282, + "notified": 1674640691109, + "summary": "Ethernet connector CH1.FM2.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.4" + }, + "id": "1d4e81f4-a18e-fbe8-c06d-c7e0af14100c" + }, + { + "name": "574", + "index": 574, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1674640691109, + "updated": 1674658299282, + "notified": 1674640691109, + "summary": "Ethernet connector CH1.FM1.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "789c2c30-ebb5-8bfb-4503-a7221a736b18" + }, + { + "name": "575", + "index": 575, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1674640691109, + "updated": 1674669330758, + "notified": 1674640691109, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "b66cf79e-018e-45b0-4f73-dcfc3987bdfa" + }, + { + "name": "576", + "index": 576, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1674640691109, + "updated": 1674658299282, + "notified": 1674640691109, + "summary": "Ethernet connector CH1.FM2.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.2" + }, + "id": "d09b0d02-21ec-067f-5af9-ccd46196e21d" + }, + { + "name": "577", + "index": 577, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "myfirst --> fbstaines03:myfirstreplica", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1675080524932, + "updated": 1675080705872, + "notified": 1675080524932, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket myfirst to bucket myfirstreplica on fbstaines03 is unhealthy. The detailed error is: The access key Id you provided does not exist in our records.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "The access key Id you provided does not exist in our records.", + "remote_name": "fbstaines03", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_bucket_name": "myfirstreplica", + "id": "93b0c1b8-f098-1444-0fe2-946c31081b6c", + "local_bucket_name": "myfirst", + "local_bucket_id": "b3bb27d0-0ebc-4111-738c-1e366d278c54" + }, + "id": "81b35eb6-31d0-5f34-a4a0-12b3ce3fcd23" + }, + { + "name": "578", + "index": 578, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "myfirst --> fbstaines03:first-replica", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1675081608615, + "updated": 1675081668817, + "notified": 1675081608615, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket myfirst to bucket first-replica on fbstaines03 is unhealthy. The detailed error is: Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Replica link set-up issue. Please enable versioning on the target bucket. Refer to the PutBucketVersioning S3 REST API.", + "remote_name": "fbstaines03", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_bucket_name": "first-replica", + "id": "9d33f71f-c395-919d-f680-ade1a074592b", + "local_bucket_name": "myfirst", + "local_bucket_id": "b3bb27d0-0ebc-4111-738c-1e366d278c54" + }, + "id": "645ccacb-ec44-7f76-d40c-632c005e5918" + }, + { + "name": "579", + "index": 579, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1675099288645, + "updated": 1675099288645, + "notified": 1675099288645, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "cb5aa3b5-8348-2f05-12e5-96faf379ed09" + }, + { + "name": "580", + "index": 580, + "flagged": false, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM2", + "component_type": "hardware", + "state": "closed", + "created": 1675224711003, + "updated": 1675224757032, + "notified": 1675224711003, + "summary": "Fabric Module CH1.FM2 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM2", + "details": "peer not responsive" + }, + "id": "10419937-5c9d-5c25-42e5-90618588e199" + }, + { + "name": "581", + "index": 581, + "flagged": false, + "code": 1106, + "severity": "critical", + "component_name": "users of jbtfs", + "component_type": "usage/users", + "state": "closed", + "created": 1675249330201, + "updated": 1675266329090, + "notified": 1675249330201, + "summary": "One user has reached or exceeded 100% of their quota on file system jbtfs", + "description": "One user has reached or exceeded 100% of their allotted write size limitation on file system jbtfs. ", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1106", + "action": "Either the quota assigned to the user must be increased, or the space usage must be reduced.", + "variables": { + "File System Name": "jbtfs", + "Number Of Users Between 80%-90% Usage": "0", + "Number Of Users Above 100% Usage": "1", + "Number Of Users Between 90%-100% Usage": "0" + }, + "id": "26114662-2bc2-1b32-1f65-5801081d68d7" + }, + { + "name": "582", + "index": 582, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "myfirst --> fbstaines03:first-replica", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1675347387129, + "updated": 1677517987442, + "notified": 1675866085879, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket myfirst to bucket first-replica on fbstaines03 is unhealthy. The detailed error is: Detected object being replicated to its source cluster. Please remove this invalid rule.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Detected object being replicated to its source cluster. Please remove this invalid rule.", + "remote_name": "fbstaines03", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_bucket_name": "first-replica", + "id": "9d33f71f-c395-919d-f680-ade1a074592b", + "local_bucket_name": "myfirst", + "local_bucket_id": "b3bb27d0-0ebc-4111-738c-1e366d278c54" + }, + "id": "94130b94-5ce5-31c3-33b0-b485ba5698d8" + }, + { + "name": "583", + "index": 583, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1675486911228, + "updated": 1675503662331, + "notified": 1675486911228, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "97e6256b-74b7-9f38-9e0c-73f8ba475b1d" + }, + { + "name": "584", + "index": 584, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1675684885361, + "updated": 1675684885361, + "notified": 1675684885361, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "436d87e8-c47a-3abb-b689-e860f6b9e7b6" + }, + { + "name": "585", + "index": 585, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1675958030673, + "updated": 1676467236810, + "notified": 1676391120135, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "8380b188-1464-8a09-c45d-89ace72f492e" + }, + { + "name": "586", + "index": 586, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1676084509833, + "updated": 1676084509833, + "notified": 1676084509833, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "32c5b4be-8984-5942-7e8b-230e068bdf01" + }, + { + "name": "587", + "index": 587, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1676223119462, + "updated": 1676223119462, + "notified": 1676223119462, + "summary": "Ethernet connector CH1.FM2.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH1.3" + }, + "id": "0ca97fd0-b460-338b-f1f4-f6df6201718c" + }, + { + "name": "588", + "index": 588, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1676380837620, + "updated": 1676381738987, + "notified": 1676380837620, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstaineso2data-vlan5-0\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "f025a407-d731-3a15-7604-23634f288f5b" + }, + { + "name": "589", + "index": 589, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1676482195735, + "updated": 1676482379534, + "notified": 1676482195735, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "c6cf2f29-f60b-6b92-90b5-e60fc2ead026" + }, + { + "name": "590", + "index": 590, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1676482205932, + "updated": 1676482379534, + "notified": 1676482205932, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "af45e6f7-35c4-ba03-6c6a-09b00bcbb870" + }, + { + "name": "591", + "index": 591, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1676482216279, + "updated": 1676482379534, + "notified": 1676482216279, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB3" + }, + "id": "6c16abba-01cc-be98-96d7-06155ac20ed7" + }, + { + "name": "592", + "index": 592, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1676482226616, + "updated": 1676482379534, + "notified": 1676482226616, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB4" + }, + "id": "21ae3eac-1f0a-78dd-eb6d-f98fa4c3789c" + }, + { + "name": "593", + "index": 593, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1676482257446, + "updated": 1676482379534, + "notified": 1676482257446, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB5" + }, + "id": "4c5b16af-ea18-ddbb-60cf-5f90a9ea3c11" + }, + { + "name": "594", + "index": 594, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1676482267768, + "updated": 1676482379534, + "notified": 1676482267768, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB6" + }, + "id": "bd1f987b-8338-586d-1bfe-f0ab97035e20" + }, + { + "name": "595", + "index": 595, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1676482277973, + "updated": 1676482379534, + "notified": 1676482277973, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB7" + }, + "id": "bcce2bbf-62b3-7d28-6f2e-739b0b213b12" + }, + { + "name": "596", + "index": 596, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "stfc-repl <-- fbstaines03:stfc-repl", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1676629313920, + "updated": 1676633878841, + "notified": 1676629313920, + "summary": "A file system replica link requires attention", + "description": "The file system replica link stfc-repl <-- fbstaines03:stfc-repl is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "stfc-repl", + "remote_name": "fbstaines03", + "local_file_system_id": "7058f162-e5d8-8c3d-0a26-e82bf3d238a9", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_file_system_name": "stfc-repl", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "5c7d44ef-80f3-110f-c12f-26b28791a226", + "id": "e0142fd3-3ec4-d17c-d599-d2b98091e54a" + }, + "id": "78fd444c-44a5-c4cb-8fce-83b0f865bccd" + }, + { + "name": "597", + "index": 597, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB10", + "component_type": "blades", + "state": "closed", + "created": 1676635310675, + "updated": 1676635310675, + "notified": 1676635310675, + "summary": "Blade CH1.FB10 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB10" + }, + "id": "a56a3e6e-c846-ea22-4261-a964bffadc2d" + }, + { + "name": "598", + "index": 598, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB9", + "component_type": "blades", + "state": "closed", + "created": 1676635310675, + "updated": 1676635310675, + "notified": 1676635310675, + "summary": "Blade CH1.FB9 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB9" + }, + "id": "7dd49a8d-5349-405d-9941-9d44315404a4" + }, + { + "name": "599", + "index": 599, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB8", + "component_type": "blades", + "state": "closed", + "created": 1676635321269, + "updated": 1676635321269, + "notified": 1676635321269, + "summary": "Blade CH1.FB8 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB8" + }, + "id": "09fe4634-2b21-4b0a-f313-612b953092c1" + }, + { + "name": "600", + "index": 600, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1676643809895, + "updated": 1676643932055, + "notified": 1676643809895, + "summary": "Blade CH1.FB1 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB1" + }, + "id": "6851e675-71a4-7b10-fbaa-eec208dd9832" + }, + { + "name": "601", + "index": 601, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1676643809896, + "updated": 1676643932055, + "notified": 1676643809896, + "summary": "Blade CH1.FB2 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB2" + }, + "id": "a68c1886-220d-5146-44af-48713543c7f2" + }, + { + "name": "602", + "index": 602, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1676643809896, + "updated": 1676643932055, + "notified": 1676643809896, + "summary": "Blade CH1.FB3 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB3" + }, + "id": "da131eb9-2ea1-311f-5e11-f0aad41e83a5" + }, + { + "name": "603", + "index": 603, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1676643809896, + "updated": 1676643932055, + "notified": 1676643809896, + "summary": "Blade CH1.FB4 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB4" + }, + "id": "4b9c0219-1e9b-0b7c-f2e2-fc9812241598" + }, + { + "name": "604", + "index": 604, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1676643809896, + "updated": 1676643932055, + "notified": 1676643809896, + "summary": "Blade CH1.FB5 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB5" + }, + "id": "c8b74db1-a663-85c0-0991-30d30a0af2a2" + }, + { + "name": "605", + "index": 605, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1676643809896, + "updated": 1676643932056, + "notified": 1676643809896, + "summary": "Blade CH1.FB6 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB6" + }, + "id": "50ed6c5c-92ca-c9fb-9c29-39bb51df5788" + }, + { + "name": "606", + "index": 606, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1676643809896, + "updated": 1676644029483, + "notified": 1676643809896, + "summary": "Blade CH1.FB7 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB7" + }, + "id": "da354d1e-0bd7-ea46-023c-cc453869d9df" + }, + { + "name": "607", + "index": 607, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3.1", + "component_type": "hardware", + "state": "closed", + "created": 1676643907130, + "updated": 1676643937629, + "notified": 1676643907130, + "summary": "Ethernet connector CH1.FM1.ETH3.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3.1" + }, + "id": "7ab0827d-29ef-c348-55fb-5552c8d6b2db" + }, + { + "name": "608", + "index": 608, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.1", + "component_type": "hardware", + "state": "closed", + "created": 1676643907130, + "updated": 1676643937629, + "notified": 1676643907130, + "summary": "Ethernet connector CH1.FM1.ETH1.1 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.1" + }, + "id": "c46a87fb-f0be-39aa-3036-0a06ad91e55c" + }, + { + "name": "609", + "index": 609, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.2", + "component_type": "hardware", + "state": "closed", + "created": 1676643907130, + "updated": 1676643937629, + "notified": 1676643907130, + "summary": "Ethernet connector CH1.FM1.ETH1.2 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.2" + }, + "id": "8cd0a839-d728-1cc6-c4c4-96c1468ecc84" + }, + { + "name": "610", + "index": 610, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.4", + "component_type": "hardware", + "state": "closed", + "created": 1676643907130, + "updated": 1676643937629, + "notified": 1676643907130, + "summary": "Ethernet connector CH1.FM1.ETH1.4 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.4" + }, + "id": "8ddb521c-c60a-7822-1861-88a1d5dc260f" + }, + { + "name": "611", + "index": 611, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH1.3", + "component_type": "hardware", + "state": "closed", + "created": 1676643907131, + "updated": 1676643937629, + "notified": 1676643907131, + "summary": "Ethernet connector CH1.FM1.ETH1.3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH1.3" + }, + "id": "b8f2c704-8b51-0ec1-b487-8a5f633c7f94" + }, + { + "name": "612", + "index": 612, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1676644046998, + "updated": 1677079878744, + "notified": 1677076135256, + "summary": "Ethernet connector CH1.FM2.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "5f32d55f-65ec-fb2f-a3ab-1ec8ba1c6375" + }, + { + "name": "613", + "index": 613, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1676644137640, + "updated": 1677089837966, + "notified": 1677076225569, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "1dfe3d71-9753-4675-0930-f2d51608562c" + }, + { + "name": "614", + "index": 614, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB8", + "component_type": "blades", + "state": "closed", + "created": 1676897272924, + "updated": 1676980522322, + "notified": 1676900014323, + "summary": "Blade CH1.FB8 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB8" + }, + "id": "7ac0a17b-15a1-f747-2d85-406c54c9614e" + }, + { + "name": "615", + "index": 615, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB9", + "component_type": "blades", + "state": "closed", + "created": 1676897272925, + "updated": 1676903331398, + "notified": 1676903007182, + "summary": "Blade CH1.FB9 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB9" + }, + "id": "3de8073c-999a-f4cd-9734-15a291e51191" + }, + { + "name": "616", + "index": 616, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB10", + "component_type": "blades", + "state": "closed", + "created": 1676897293265, + "updated": 1676917042981, + "notified": 1676897293265, + "summary": "Blade CH1.FB10 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB10" + }, + "id": "a9a9e514-51f2-f57a-1e66-5ee866f50fed" + }, + { + "name": "617", + "index": 617, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB11", + "component_type": "blades", + "state": "closed", + "created": 1676897758923, + "updated": 1676916636861, + "notified": 1676916636861, + "summary": "Blade CH1.FB11 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB11" + }, + "id": "4e5a7e64-3ef0-9fa1-0ea8-74f7e532fbde" + }, + { + "name": "618", + "index": 618, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB12", + "component_type": "blades", + "state": "closed", + "created": 1676897769159, + "updated": 1676898176904, + "notified": 1676898166275, + "summary": "Blade CH1.FB12 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB12" + }, + "id": "49700ef3-1d8f-1c99-c5ec-85cbee671b9a" + }, + { + "name": "619", + "index": 619, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB13", + "component_type": "blades", + "state": "closed", + "created": 1676897769160, + "updated": 1676919660221, + "notified": 1676919660221, + "summary": "Blade CH1.FB13 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB13" + }, + "id": "4ef05101-768f-81a7-0dd7-4c385b71eae2" + }, + { + "name": "620", + "index": 620, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB14", + "component_type": "blades", + "state": "closed", + "created": 1676897769160, + "updated": 1676903484602, + "notified": 1676897769160, + "summary": "Blade CH1.FB14 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB14" + }, + "id": "128d37c8-96b3-d254-cf35-51c41f0c3c36" + }, + { + "name": "621", + "index": 621, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB15", + "component_type": "blades", + "state": "closed", + "created": 1676897779795, + "updated": 1676982784267, + "notified": 1676982784267, + "summary": "Blade CH1.FB15 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB15" + }, + "id": "56513302-3b18-8898-e646-fc12d47b36d9" + }, + { + "name": "622", + "index": 622, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB14", + "component_type": "blades", + "state": "closed", + "created": 1676903329706, + "updated": 1676903329706, + "notified": 1676903329706, + "summary": "Blade CH1.FB14 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB14" + }, + "id": "d6c78681-ee64-bfbf-0bd3-4d5221154c94" + }, + { + "name": "623", + "index": 623, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB15", + "component_type": "blades", + "state": "closed", + "created": 1676903339894, + "updated": 1676903339894, + "notified": 1676903339894, + "summary": "Blade CH1.FB15 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB15" + }, + "id": "68afe6e9-6d18-36de-8de5-fdfa0bbcd93a" + }, + { + "name": "624", + "index": 624, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1676979690673, + "updated": 1676980171843, + "notified": 1676979690673, + "summary": "The object replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. 1 bucket replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connecting\" - \"Unmatched source/target Object SafeMode configurations\"\nFile replication connection to fbstaines03 is \"connected\"\nFile replication connection from fbstaines03 is \"connected\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "b2886a1a-f0d9-2bcc-3d10-86e5e6b8c5ca" + }, + "id": "7400b8ad-a020-e7a7-2eeb-be192dc3a5da" + }, + { + "name": "625", + "index": 625, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB10", + "component_type": "blades", + "state": "closed", + "created": 1677068053442, + "updated": 1677172800950, + "notified": 1677159006312, + "summary": "Blade CH1.FB10 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB10" + }, + "id": "379b4bf3-c6bc-2738-0aa4-def228af09f9" + }, + { + "name": "626", + "index": 626, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB9", + "component_type": "blades", + "state": "closed", + "created": 1677068285273, + "updated": 1677172800950, + "notified": 1677156701862, + "summary": "Blade CH1.FB9 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB9" + }, + "id": "8b975010-4be8-e762-64b9-45c245f516bb" + }, + { + "name": "627", + "index": 627, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB15", + "component_type": "blades", + "state": "closed", + "created": 1677070811323, + "updated": 1677079878326, + "notified": 1677079878326, + "summary": "Blade CH1.FB15 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB15" + }, + "id": "321a925d-362a-b7a0-cf8b-c846695fc5c3" + }, + { + "name": "628", + "index": 628, + "flagged": true, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1677070928255, + "updated": 1677248012651, + "notified": 1677070928255, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800157381296158", + "FileSystemName": "vertica-datagen" + }, + "id": "56d3bd87-2e39-679f-bb1e-bc08eb3b5478" + }, + { + "name": "629", + "index": 629, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1677071145254, + "updated": 1677089830384, + "notified": 1677089830384, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB4" + }, + "id": "cd7d57a6-8598-bf19-0179-48114ba4752f" + }, + { + "name": "630", + "index": 630, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1677071145255, + "updated": 1677089819966, + "notified": 1677079878327, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB6" + }, + "id": "7b4a3c9f-cf11-b27f-3d04-5e6d1df4e630" + }, + { + "name": "631", + "index": 631, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1677071155767, + "updated": 1677089830384, + "notified": 1677075537471, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB5" + }, + "id": "e0ae7906-52f5-2baa-add5-7d7cab37fb03" + }, + { + "name": "632", + "index": 632, + "flagged": true, + "code": 1000, + "severity": "warning", + "component_name": "CH1.FB14", + "component_type": "blades", + "state": "closed", + "created": 1677071451205, + "updated": 1677126272137, + "notified": 1677071451205, + "summary": "Blade CH1.FB14 is unhealthy", + "description": "A blade is unhealthy. No data has been lost, but performance may be impacted and additional wear may be occurring. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB14" + }, + "id": "2c84c5d6-4e16-3468-d3ff-e8d2607bea85" + }, + { + "name": "633", + "index": 633, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1677074753834, + "updated": 1677079878326, + "notified": 1677076978107, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Evacuating", + "Blade": "CH1.FB3" + }, + "id": "2ed06dca-eafb-66b4-eed7-80cf1dae2f2a" + }, + { + "name": "634", + "index": 634, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1677074774402, + "updated": 1677089819966, + "notified": 1677079878326, + "summary": "Blade CH1.FB2 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB2" + }, + "id": "e2251989-2bc5-cd4e-9934-549b86c1363a" + }, + { + "name": "635", + "index": 635, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB13", + "component_type": "blades", + "state": "closed", + "created": 1677078229888, + "updated": 1677089830384, + "notified": 1677078229888, + "summary": "Blade CH1.FB13 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB13" + }, + "id": "1b2fa6a2-3dc3-9f3d-5598-ea8245d38440" + }, + { + "name": "636", + "index": 636, + "flagged": true, + "code": 1006, + "severity": "critical", + "component_name": null, + "component_type": null, + "state": "closed", + "created": 1677078522969, + "updated": 1677096759497, + "notified": 1677079293838, + "summary": "Data Protocol is in critical condition", + "description": "NFS service is in critical condition and other enabled protocols may also be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1006", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": {}, + "id": "999966dc-d653-d738-623e-a5e939fb108e" + }, + { + "name": "637", + "index": 637, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1677078676920, + "updated": 1677089830384, + "notified": 1677079756318, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB1" + }, + "id": "9d712b6e-5166-bf5b-36ff-7948b3d1cb66" + }, + { + "name": "638", + "index": 638, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1677078676921, + "updated": 1677089830384, + "notified": 1677089830384, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not healthy: Code 2", + "Blade": "CH1.FB7" + }, + "id": "7345cba7-6ca3-b4f6-5035-e732abceacaf" + }, + { + "name": "639", + "index": 639, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB8", + "component_type": "blades", + "state": "closed", + "created": 1677079878327, + "updated": 1677172800950, + "notified": 1677166521544, + "summary": "Blade CH1.FB8 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB8" + }, + "id": "5b479e98-63f2-0d6c-edb3-d8c3495cc122" + }, + { + "name": "640", + "index": 640, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB12", + "component_type": "blades", + "state": "closed", + "created": 1677080375567, + "updated": 1677155095428, + "notified": 1677089819965, + "summary": "Blade CH1.FB12 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB12" + }, + "id": "91218e00-a7e5-e589-238d-c4811cb02812" + }, + { + "name": "641", + "index": 641, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB11", + "component_type": "blades", + "state": "closed", + "created": 1677089809545, + "updated": 1677147586679, + "notified": 1677089809545, + "summary": "Blade CH1.FB11 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB11" + }, + "id": "7360949e-533d-0a9b-cdc0-775ba9b9486e" + }, + { + "name": "642", + "index": 642, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB8", + "component_type": "blades", + "state": "closed", + "created": 1677154488447, + "updated": 1677154488447, + "notified": 1677154488447, + "summary": "Blade CH1.FB8 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB8" + }, + "id": "2ac44b2b-a05f-c48d-d557-1796ff07de6a" + }, + { + "name": "643", + "index": 643, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB10", + "component_type": "blades", + "state": "closed", + "created": 1677154690104, + "updated": 1677154690104, + "notified": 1677154690104, + "summary": "Blade CH1.FB10 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB10" + }, + "id": "300643ee-801f-403b-eec2-163ec3d0ead3" + }, + { + "name": "644", + "index": 644, + "flagged": true, + "code": 1001, + "severity": "critical", + "component_name": "CH1.FB12", + "component_type": "blades", + "state": "closed", + "created": 1677156377572, + "updated": 1677156377572, + "notified": 1677156377572, + "summary": "Blade CH1.FB12 was removed", + "description": "A blade has been removed. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1001", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "Blade": "CH1.FB12" + }, + "id": "d9d7bb9c-fead-7d7f-e823-35dd1526dfd3" + }, + { + "name": "645", + "index": 645, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB11", + "component_type": "blades", + "state": "closed", + "created": 1677241956104, + "updated": 1677248045892, + "notified": 1677242594271, + "summary": "Blade CH1.FB11 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Evacuating", + "Blade": "CH1.FB11" + }, + "id": "78625762-9c50-0e6b-e621-750b706aadd2" + }, + { + "name": "646", + "index": 646, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB11", + "component_type": "blades", + "state": "closed", + "created": 1677495976957, + "updated": 1677505814672, + "notified": 1677495976957, + "summary": "Blade CH1.FB11 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is down", + "Blade": "CH1.FB11" + }, + "id": "aa2565fe-6ccc-1fd1-5749-54483863e25c" + }, + { + "name": "647", + "index": 647, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "vertica-datagen", + "component_type": "file-systems", + "state": "closed", + "created": 1677498657473, + "updated": 1677505273197, + "notified": 1677498657473, + "summary": "File system 'vertica-datagen' approaching space quota", + "description": "The 'vertica-datagen' file system is at 80% of its space quota of 400.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.800175229310989", + "FileSystemName": "vertica-datagen" + }, + "id": "892452a5-7530-7a83-1f6a-f08da18206bb" + }, + { + "name": "648", + "index": 648, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB10", + "component_type": "blades", + "state": "closed", + "created": 1677499532455, + "updated": 1677504701797, + "notified": 1677503811288, + "summary": "Blade CH1.FB10 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Evacuating", + "Blade": "CH1.FB10" + }, + "id": "453c8368-a44b-0fbf-1813-1caf7dc23013" + }, + { + "name": "649", + "index": 649, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB9", + "component_type": "blades", + "state": "closed", + "created": 1677499532455, + "updated": 1677517944689, + "notified": 1677503811288, + "summary": "Blade CH1.FB9 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "device powered off", + "Blade": "CH1.FB9" + }, + "id": "be69ece6-705a-099f-b06b-7f8311ee8966" + }, + { + "name": "650", + "index": 650, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB5", + "component_type": "blades", + "state": "closed", + "created": 1677499542765, + "updated": 1677517058844, + "notified": 1677517028136, + "summary": "Blade CH1.FB5 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "Software process is not running.", + "Blade": "CH1.FB5" + }, + "id": "618566e4-2aaf-7fb7-519f-2f4f01de862c" + }, + { + "name": "651", + "index": 651, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB3", + "component_type": "blades", + "state": "closed", + "created": 1677514875592, + "updated": 1677516602320, + "notified": 1677514875592, + "summary": "Blade CH1.FB3 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "device powered off", + "Blade": "CH1.FB3" + }, + "id": "c4d5ceac-70a3-018e-3ede-12f585541a40" + }, + { + "name": "652", + "index": 652, + "flagged": true, + "code": 1002, + "severity": "critical", + "component_name": "CH1.FM1", + "component_type": "hardware", + "state": "closed", + "created": 1677515653579, + "updated": 1677515714008, + "notified": 1677515653579, + "summary": "Fabric Module CH1.FM1 requires attention", + "description": "A fabric module's status is critical. No data has been lost, but performance may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1002", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "FabricModule": "CH1.FM1", + "details": "peer not responsive" + }, + "id": "dcad181f-5366-635f-7d46-0b03ed983f8b" + }, + { + "name": "653", + "index": 653, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB1", + "component_type": "blades", + "state": "closed", + "created": 1677516094901, + "updated": 1677516115812, + "notified": 1677516094901, + "summary": "Blade CH1.FB1 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "device powered off, Software process is not healthy: Code 2", + "Blade": "CH1.FB1" + }, + "id": "6283130e-657f-4d70-44d0-7f7fec06b1ed" + }, + { + "name": "654", + "index": 654, + "flagged": true, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1677516125248, + "updated": 1677518000699, + "notified": 1677516125248, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "30ff0156-a879-a36f-85b6-979fb58d7fd9" + }, + { + "name": "655", + "index": 655, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB2", + "component_type": "blades", + "state": "closed", + "created": 1677516348593, + "updated": 1677516379168, + "notified": 1677516348593, + "summary": "Blade CH1.FB2 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": null, + "Blade": "CH1.FB2" + }, + "id": "29e57dc9-9ee3-bd5b-ec6d-33d80b3827c6" + }, + { + "name": "656", + "index": 656, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB4", + "component_type": "blades", + "state": "closed", + "created": 1677516804422, + "updated": 1677516824732, + "notified": 1677516804422, + "summary": "Blade CH1.FB4 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "device powered off", + "Blade": "CH1.FB4" + }, + "id": "28509d2c-0c8b-0c8b-b729-408e8d6d34ba" + }, + { + "name": "657", + "index": 657, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB6", + "component_type": "blades", + "state": "closed", + "created": 1677517272665, + "updated": 1677517282899, + "notified": 1677517272665, + "summary": "Blade CH1.FB6 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "device powered off", + "Blade": "CH1.FB6" + }, + "id": "816eaaf7-e7f7-06de-1c2a-a80edf348ee7" + }, + { + "name": "658", + "index": 658, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB7", + "component_type": "blades", + "state": "closed", + "created": 1677517486956, + "updated": 1677517517504, + "notified": 1677517486956, + "summary": "Blade CH1.FB7 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "device powered off, Software process is not running.", + "Blade": "CH1.FB7" + }, + "id": "8efabb45-8e45-1c9d-513a-f9a8c3f48811" + }, + { + "name": "659", + "index": 659, + "flagged": true, + "code": 1000, + "severity": "critical", + "component_name": "CH1.FB8", + "component_type": "blades", + "state": "closed", + "created": 1677517721165, + "updated": 1677517721165, + "notified": 1677517721165, + "summary": "Blade CH1.FB8 requires attention", + "description": "A blade's status is critical. No data has been lost, but performance/parity may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1000", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "details": "device powered off", + "Blade": "CH1.FB8" + }, + "id": "800895a3-d465-3800-3d67-20b4a992f79e" + }, + { + "name": "660", + "index": 660, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "myfirst --> fbstaines03:first-replica", + "component_type": "bucket-replica-links", + "state": "closed", + "created": 1677604497657, + "updated": 1677850956423, + "notified": 1677777356217, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket myfirst to bucket first-replica on fbstaines03 is unhealthy. The detailed error is: Detected object being replicated to its source cluster. Please remove this invalid rule.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Detected object being replicated to its source cluster. Please remove this invalid rule.", + "remote_name": "fbstaines03", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_bucket_name": "first-replica", + "id": "9d33f71f-c395-919d-f680-ade1a074592b", + "local_bucket_name": "myfirst", + "local_bucket_id": "b3bb27d0-0ebc-4111-738c-1e366d278c54" + }, + "id": "a55b4fb5-cbb0-fe03-53ae-917a4b6feca9" + }, + { + "name": "661", + "index": 661, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM2.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1677838579002, + "updated": 1677838579002, + "notified": 1677838579002, + "summary": "Ethernet connector CH1.FM2.ETH3 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM2.ETH3" + }, + "id": "5815fba8-d9de-8540-3db2-3e332bc729d6" + }, + { + "name": "662", + "index": 662, + "flagged": true, + "code": 1005, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "closed", + "created": 1677838579002, + "updated": 1677838579002, + "notified": 1677838579002, + "summary": "Ethernet connector CH1.FM1.ETH3 removed", + "description": "An Ethernet connector has been removed or disabled. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1005", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "6eb7c45b-6d7b-def6-3b3e-01b3750e435e" + }, + { + "name": "663", + "index": 663, + "flagged": true, + "code": 1007, + "severity": "critical", + "component_name": "CH1.PWR4", + "component_type": "hardware", + "state": "closed", + "created": 1677844638483, + "updated": 1677844834528, + "notified": 1677844638483, + "summary": "Power supply CH1.PWR4 requires attention", + "description": "A power supply's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1007", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "PSUIndex": "CH1.PWR4", + "details": "PSU POWER_GOOD is asserted" + }, + "id": "9bfdf289-ef9d-36cf-f314-8b35ae0270e1" + }, + { + "name": "664", + "index": 664, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1677851061412, + "updated": 1677855026018, + "notified": 1677851061412, + "summary": "An array connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.250. 1 bucket replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nObject replication connection to fbstaines03 is \"connecting\" - \"No route found. Please check remote connectivity.\"\nFile replication connection to fbstaines03 is \"connecting\"\nFile replication connection from fbstaines03 is \"connected\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "b2886a1a-f0d9-2bcc-3d10-86e5e6b8c5ca" + }, + "id": "f0d29463-ae05-d0bd-ddc9-a8151c5e1898" + }, + { + "name": "665", + "index": 665, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1677856538555, + "updated": 1678029946545, + "notified": 1678029645125, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstaines02-vlan4\nA health check failed while checking that all IP addresses associated with the computer account's FQDNs resolve to network interfaces on the array. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but are registered in DNS to IP addresses that do not match any network interfaces on the array: fbstaines02-vlan4.uklab.purestorage.com\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check,network-interface-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "5bcf2a1c-4c58-2ee7-9a3e-6d57de7825ff" + }, + { + "name": "666", + "index": 666, + "flagged": true, + "code": 1112, + "severity": "critical", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1678702670667, + "updated": 1678702850991, + "notified": 1678702670667, + "summary": "An array connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.177. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines03 is \"connecting\"\nObject replication connection to fbstaines03 is \"connecting\" - \"No route found. Please check remote connectivity.\"\nFile replication connection to fbstaines03 is \"connecting\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "b2886a1a-f0d9-2bcc-3d10-86e5e6b8c5ca" + }, + "id": "6de3acf2-56ee-e91e-dc0c-60af094a1bc8" + }, + { + "name": "667", + "index": 667, + "flagged": true, + "code": 1007, + "severity": "critical", + "component_name": "CH1.PWR4", + "component_type": "hardware", + "state": "closed", + "created": 1678705323595, + "updated": 1678705399071, + "notified": 1678705323595, + "summary": "Power supply CH1.PWR4 requires attention", + "description": "A power supply's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1007", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "PSUIndex": "CH1.PWR4", + "details": "PSU POWER_GOOD is asserted" + }, + "id": "2909509c-a8b2-7e33-1f45-14b43e12bbb9" + }, + { + "name": "668", + "index": 668, + "flagged": true, + "code": 1124, + "severity": "warning", + "component_name": "fbstaines02data", + "component_type": "active-directory", + "state": "closed", + "created": 1679421213354, + "updated": 1681226005483, + "notified": 1679940594432, + "summary": "An active directory configuration (fbstaines02data) in domain uklab.purestorage.com is unhealthy and requires attention", + "description": "Health checks for the Active Directory configuration fbstaines02data, which corresponds to the computer fbstaines02data in the uklab.purestorage.com domain, have failed. Clients attempting to mount and perform file operations over any version of the nfs or smb protocol may be impacted.\nA health check failed while checking that all FQDNs associated with the computer account resolve to IP addresses. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but do not map to any IP addresses in DNS: fbstaines02-data-net5\nA health check failed while checking that all IP addresses associated with the computer account's FQDNs resolve to network interfaces on the array. The failure occurred while querying dns for the FQDNs configured on our computer account in ldaps://ad.uklab.purestorage.com:636.\nThe following FQDNs are configured on the account but are registered in DNS to IP addresses that do not match any network interfaces on the array: fbstaines02-data-net5.uklab.purestorage.com\nThis will cause clients to fail to mount file systems if they attempt to mount using an unresolvable or improperly resolvable FQDN. If any of the FQDNs are properly configured in DNS, then clients attempting to mount using those will not be impacted.\nThere will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1124", + "action": "Please verify that the FQDNs configured for the Active Directory configuration on FlashBlade are the ones that clients should use when mounting file systems. If they are not, please update the configuration on FlashBlade to use the FQDNs that clients will use when mounting. If they are correct, please contact the group(s) that administer the DNS name server to ensure that the impacted FQDNs are properly registered and resolve to data network addresses on FlashBlade.\nAttempting to verify resolution of the issue or checking its status may be done by logging in to FlashBlade and testing the Active Directory configuration. This is possible via ssh and the command line interface, the web UI, or the REST APIs.\nPure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "computer_name": "fbstaines02data", + "domain": "uklab.purestorage.com", + "name": "fbstaines02data", + "failed_test_stages": "network-resolution-check,network-interface-check", + "id": "8e8736e7-baba-4f10-90ec-5ba69b112a41" + }, + "id": "29e64ba4-846c-bf5b-ef09-a300e51af2d2" + }, + { + "name": "669", + "index": 669, + "flagged": true, + "code": 1112, + "severity": "warning", + "component_name": "fbstaines03", + "component_type": "array-connections", + "state": "closed", + "created": 1679518899317, + "updated": 1679518899317, + "notified": 1679518899317, + "summary": "The object replication connection to fbstaines03 requires attention", + "description": "The array connection to fbstaines03 is not fully connected; replication address: 192.168.4.177. No bucket or file system replica link(s) associated with this connection will be impacted and alerts for those links will not be sent. There will be daily notifications for 7 days.\n\nConnection Path Details:\nFile replication connection from fbstaines03 is \"connected\"\nObject replication connection to fbstaines03 is \"connecting\"\nFile replication connection to fbstaines03 is \"connected\"", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1112", + "action": "Please check your network connection and the correctness of the replication address. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "id": "b2886a1a-f0d9-2bcc-3d10-86e5e6b8c5ca" + }, + "id": "d596b7e5-c7a5-b69a-b01c-f03a8dcaabb4" + }, + { + "name": "670", + "index": 670, + "flagged": false, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "open", + "created": 1679526139129, + "updated": 1682296321507, + "notified": 1680044674151, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "dfeaf277-3202-07bf-39c1-d51c9efba445" + }, + { + "name": "671", + "index": 671, + "flagged": true, + "code": 1101, + "severity": "warning", + "component_name": "hbeeck", + "component_type": "file-systems", + "state": "closed", + "created": 1680850761967, + "updated": 1680850882381, + "notified": 1680850761967, + "summary": "File system 'hbeeck' exceeded space quota", + "description": "The 'hbeeck' file system is at 120% of its space quota of 2.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.20380115509033", + "FileSystemName": "hbeeck" + }, + "id": "1708b8a6-a409-7a09-ed99-c1e729f8839e" + }, + { + "name": "672", + "index": 672, + "flagged": false, + "code": 1007, + "severity": "critical", + "component_name": "CH1.PWR2", + "component_type": "hardware", + "state": "open", + "created": 1681205344630, + "updated": 1682296341392, + "notified": 1681723795204, + "summary": "Power supply CH1.PWR2 requires attention", + "description": "A power supply's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1007", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "PSUIndex": "CH1.PWR2", + "details": "PSU POWER_GOOD is asserted" + }, + "id": "8062016d-2d91-a3fd-9d64-f4cc57852be4" + }, + { + "name": "673", + "index": 673, + "flagged": true, + "code": 1128, + "severity": "critical", + "component_name": "mm-repl-bucket", + "component_type": "object-store", + "state": "closed", + "created": 1681755786242, + "updated": 1681755966655, + "notified": 1681755786242, + "summary": "S3 Bucket 'mm-repl-bucket' exceeded space quota", + "description": "The 'mm-repl-bucket' S3 Bucket is at 104% of its space quota of 250.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1128", + "action": "Remove data from the S3 Bucket or increase its space quota.", + "variables": { + "CurrentUtilization": "1.03982925605774", + "S3BucketName": "mm-repl-bucket" + }, + "id": "1cc0e762-7057-1d5f-fa70-04a54390347d" + }, + { + "name": "674", + "index": 674, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "lee-vm-repl-test <-- fbstaines03:lee-vm-repl-test", + "component_type": "file-system-replica-links", + "state": "closed", + "created": 1681896427274, + "updated": 1681977599086, + "notified": 1681896427274, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-vm-repl-test <-- fbstaines03:lee-vm-repl-test is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-vm-repl-test", + "remote_name": "fbstaines03", + "local_file_system_id": "333c91b3-4d36-b19f-37ec-dd6d861b1f4d", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_file_system_name": "lee-vm-repl-test", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "2c2f1cc8-0b62-544d-4a29-27db5e5eb453", + "id": "0c8a297e-87d5-5858-e292-1b7ec88f0448" + }, + "id": "c92cf6b7-48d7-3687-50b2-9440f7898a81" + }, + { + "name": "675", + "index": 675, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "bloom-bi-dir-classic --> fbstaines03:bloom-bi-dir-classic", + "component_type": "bucket-replica-links", + "state": "open", + "created": 1682090330799, + "updated": 1682296326373, + "notified": 1682263224995, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket bloom-bi-dir-classic to bucket bloom-bi-dir-classic on fbstaines03 is unhealthy. The detailed error is: Detected object being replicated to its source cluster. Please remove this invalid rule.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Detected object being replicated to its source cluster. Please remove this invalid rule.", + "remote_name": "fbstaines03", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_bucket_name": "bloom-bi-dir-classic", + "id": "85b7afc1-39e7-9bbf-7403-232123e015ee", + "local_bucket_name": "bloom-bi-dir-classic", + "local_bucket_id": "8a36e97c-b2df-4d98-ac3e-73c41da114a5" + }, + "id": "f329ec6c-1fa1-a912-6857-5aa56faa4e13" + }, + { + "name": "676", + "index": 676, + "flagged": true, + "code": 1120, + "severity": "critical", + "component_name": "lee-vm-repl-test <-- fbstaines03:lee-vm-repl-test", + "component_type": "file-system-replica-links", + "state": "closing", + "created": 1682244913981, + "updated": 1682253147488, + "notified": 1682244913981, + "summary": "A file system replica link requires attention", + "description": "The file system replica link lee-vm-repl-test <-- fbstaines03:lee-vm-repl-test is not healthy with error: Both file systems are promoted, this is an expected temporary state during failover. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1120", + "action": "Demote the file system that is the desired replication target. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "local_file_system_name": "lee-vm-repl-test", + "remote_name": "fbstaines03", + "local_file_system_id": "333c91b3-4d36-b19f-37ec-dd6d861b1f4d", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_file_system_name": "lee-vm-repl-test", + "error_code": "Target file system is promoted.", + "remote_file_system_id": "2c2f1cc8-0b62-544d-4a29-27db5e5eb453", + "id": "0c8a297e-87d5-5858-e292-1b7ec88f0448" + }, + "id": "d3293666-4072-d0b3-7a63-1f23478063ca" + } + ] +} diff --git a/test/data/alerts_open.json b/test/data/alerts_open.json new file mode 100644 index 0000000..51dfbb4 --- /dev/null +++ b/test/data/alerts_open.json @@ -0,0 +1,229 @@ +{ + "continuation_token": null, + "total_item_count": 10, + "items": [ + { + "name": "218", + "index": 218, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "AIRI", + "component_type": "file-systems", + "state": "open", + "created": 1627892727562, + "updated": 1682296234185, + "notified": 1631814626487, + "summary": "File system 'AIRI' approaching space quota", + "description": "The 'AIRI' file system is at 89% of its space quota of 170.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.893411406348733", + "FileSystemName": "AIRI" + }, + "id": "3b0f5e48-81e4-e3db-40b6-d172f74ed927" + }, + { + "name": "219", + "index": 219, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "cmeidam", + "component_type": "file-systems", + "state": "open", + "created": 1627892727562, + "updated": 1682296234185, + "notified": 1628411385171, + "summary": "File system 'cmeidam' exceeded space quota", + "description": "The 'cmeidam' file system is at 254% of its space quota of 20.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "2.53854904174805", + "FileSystemName": "cmeidam" + }, + "id": "74e83522-c993-bcc7-d958-44957524134b" + }, + { + "name": "220", + "index": 220, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03", + "component_type": "file-systems", + "state": "open", + "created": 1627892727562, + "updated": 1682296234185, + "notified": 1628411385171, + "summary": "File system 'k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03' approaching space quota", + "description": "The 'k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03' file system is at 91% of its space quota of 1.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.908089637756348", + "FileSystemName": "k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03" + }, + "id": "70a623fa-4f09-28df-f8bf-fb6b5a4baa6c" + }, + { + "name": "221", + "index": 221, + "flagged": false, + "code": 1101, + "severity": "warning", + "component_name": "pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0", + "component_type": "file-systems", + "state": "open", + "created": 1627892727563, + "updated": 1682296234185, + "notified": 1628411385171, + "summary": "File system 'pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0' exceeded space quota", + "description": "The 'pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0' file system is at 118% of its space quota of 30.00 G. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "1.1788641611735", + "FileSystemName": "pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0" + }, + "id": "e2aa41b3-3dcb-5309-576b-ab791cfea9b6" + }, + { + "name": "222", + "index": 222, + "flagged": false, + "code": 1101, + "severity": "info", + "component_name": "z-fbhosts_docker_root", + "component_type": "file-systems", + "state": "open", + "created": 1627892727563, + "updated": 1682296234185, + "notified": 1627892727563, + "summary": "File system 'z-fbhosts_docker_root' approaching space quota", + "description": "The 'z-fbhosts_docker_root' file system is at 83% of its space quota of 4.00 T. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com. As an INFO-level alert, there will be no reminder notifications unless the issue worsens.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1101", + "action": "Remove data from the file system or increase its space quota.", + "variables": { + "CurrentUtilization": "0.829510927316733", + "FileSystemName": "z-fbhosts_docker_root" + }, + "id": "db9f67e1-59dc-c246-5cd2-8ce38d581029" + }, + { + "name": "224", + "index": 224, + "flagged": false, + "code": 1106, + "severity": "critical", + "component_name": "users of z-k8s-datahub", + "component_type": "usage/users", + "state": "open", + "created": 1627892940031, + "updated": 1682296086843, + "notified": 1628412315035, + "summary": "One user has reached or exceeded 100% of their quota on file system z-k8s-datahub", + "description": "One user has reached or exceeded 100% of their allotted write size limitation on file system z-k8s-datahub. ", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1106", + "action": "Either the quota assigned to the user must be increased, or the space usage must be reduced.", + "variables": { + "File System Name": "z-k8s-datahub", + "Number Of Users Between 80%-90% Usage": "0", + "Number Of Users Above 100% Usage": "1", + "Number Of Users Between 90%-100% Usage": "0" + }, + "id": "30f9662d-be30-c3b7-6257-80e0711b64a5" + }, + { + "name": "537", + "index": 537, + "flagged": false, + "code": 1123, + "severity": "warning", + "component_name": "pureuser", + "component_type": "security", + "state": "open", + "created": 1667589574871, + "updated": 1682296150278, + "notified": 1682108888761, + "summary": "Insecure Default pureuser Password", + "description": "The user pureuser is configured with the default password. There will be notifications weekly.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1123", + "action": "Please change the user pureuser's password now. Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": {}, + "id": "37128cd7-14fd-8d18-06c9-dafd2f5f889d" + }, + { + "name": "670", + "index": 670, + "flagged": false, + "code": 1004, + "severity": "warning", + "component_name": "CH1.FM1.ETH3", + "component_type": "hardware", + "state": "open", + "created": 1679526139129, + "updated": 1682296261352, + "notified": 1680044674151, + "summary": "Ethernet connector CH1.FM1.ETH3 is unhealthy", + "description": "An Ethernet connector's status is unhealthy. Performance or availability may be impacted. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1004", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "EthernetConnector": "CH1.FM1.ETH3" + }, + "id": "dfeaf277-3202-07bf-39c1-d51c9efba445" + }, + { + "name": "672", + "index": 672, + "flagged": false, + "code": 1007, + "severity": "critical", + "component_name": "CH1.PWR2", + "component_type": "hardware", + "state": "open", + "created": 1681205344630, + "updated": 1682296281194, + "notified": 1681723795204, + "summary": "Power supply CH1.PWR2 requires attention", + "description": "A power supply's status is critical. There will be daily notifications for 7 days.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1007", + "action": "This alert should automatically generate a support case. Please review your support case status by logging into Pure1 at https://pure1.purestorage.com/.", + "variables": { + "PSUIndex": "CH1.PWR2", + "details": "PSU POWER_GOOD is asserted" + }, + "id": "8062016d-2d91-a3fd-9d64-f4cc57852be4" + }, + { + "name": "675", + "index": 675, + "flagged": true, + "code": 1111, + "severity": "critical", + "component_name": "bloom-bi-dir-classic --> fbstaines03:bloom-bi-dir-classic", + "component_type": "bucket-replica-links", + "state": "open", + "created": 1682090330799, + "updated": 1682296266324, + "notified": 1682263224995, + "summary": "A bucket replica link requires attention", + "description": "The bucket replica link from bucket bloom-bi-dir-classic to bucket bloom-bi-dir-classic on fbstaines03 is unhealthy. The detailed error is: Detected object being replicated to its source cluster. Please remove this invalid rule.", + "knowledge_base_url": "https://support.purestorage.com/?cid=Alert_1111", + "action": "Pure Storage Support is not notified of this alert. If you would like assistance from our support team, you can open a case by emailing support@purestorage.com.", + "variables": { + "error_summary": "Detected object being replicated to its source cluster. Please remove this invalid rule.", + "remote_name": "fbstaines03", + "remote_id": "2f9a55ec-18a7-4863-b3dd-7c645256e914", + "remote_bucket_name": "bloom-bi-dir-classic", + "id": "85b7afc1-39e7-9bbf-7403-232123e015ee", + "local_bucket_name": "bloom-bi-dir-classic", + "local_bucket_id": "8a36e97c-b2df-4d98-ac3e-73c41da114a5" + }, + "id": "f329ec6c-1fa1-a912-6857-5aa56faa4e13" + } + ] +} diff --git a/test/data/array_s3performance.json b/test/data/array_s3performance.json new file mode 100644 index 0000000..523c755 --- /dev/null +++ b/test/data/array_s3performance.json @@ -0,0 +1,21 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "read_buckets_per_sec": 12, + "write_buckets_per_sec": 0, + "read_objects_per_sec": 0, + "write_objects_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_bucket_op": 23936, + "usec_per_write_bucket_op": 0, + "usec_per_read_object_op": 0, + "usec_per_write_object_op": 0, + "usec_per_other_op": 0, + "time": 1682688045000, + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f" + } + ] +} diff --git a/test/data/arrays.json b/test/data/arrays.json new file mode 100644 index 0000000..d058b80 --- /dev/null +++ b/test/data/arrays.json @@ -0,0 +1,38 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "os": "Purity//FB", + "revision": "4007aea5", + "version": "4.1.2", + "time_zone": "Europe/London", + "banner": null, + "idle_timeout": 10800000, + "ntp_servers": [ + "0.uk.pool.ntp.org", + "1.uk.pool.ntp.org", + "2.uk.pool.ntp.org" + ], + "smb_mode": "native", + "product_type": "FlashBlade", + "eradication_config": { + "manual_eradication": "all-enabled", + "eradication_delay": 86400000 + }, + "security_update": null, + "encryption": { + "data_at_rest": { + "algorithms": [ + "AES-256-CTR" + ], + "entropy_source": "rdseed", + "enabled": true + } + }, + "_as_of": 1682619711927 + } + ] +} diff --git a/test/data/arrays_http_performance.json b/test/data/arrays_http_performance.json new file mode 100644 index 0000000..26b00c0 --- /dev/null +++ b/test/data/arrays_http_performance.json @@ -0,0 +1,21 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "read_dirs_per_sec": 0, + "write_dirs_per_sec": 0, + "read_files_per_sec": 0, + "write_files_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_dir_op": 0, + "usec_per_write_dir_op": 0, + "usec_per_read_file_op": 0, + "usec_per_write_file_op": 0, + "usec_per_other_op": 0, + "time": 1682298981000, + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f" + } + ] +} diff --git a/test/data/arrays_nfs_performance.json b/test/data/arrays_nfs_performance.json new file mode 100644 index 0000000..98853d0 --- /dev/null +++ b/test/data/arrays_nfs_performance.json @@ -0,0 +1,59 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "accesses_per_sec": 0, + "creates_per_sec": 0, + "fsinfos_per_sec": 0, + "fsstats_per_sec": 0, + "getattrs_per_sec": 0, + "links_per_sec": 0, + "lookups_per_sec": 0, + "mkdirs_per_sec": 0, + "pathconfs_per_sec": 0, + "reads_per_sec": 17, + "readdirs_per_sec": 0, + "readdirpluses_per_sec": 0, + "readlinks_per_sec": 0, + "removes_per_sec": 0, + "renames_per_sec": 0, + "rmdirs_per_sec": 0, + "setattrs_per_sec": 0, + "symlinks_per_sec": 0, + "writes_per_sec": 2, + "usec_per_access_op": 0, + "usec_per_create_op": 0, + "usec_per_fsinfo_op": 0, + "usec_per_fsstat_op": 0, + "usec_per_getattr_op": 0, + "usec_per_link_op": 0, + "usec_per_lookup_op": 0, + "usec_per_mkdir_op": 0, + "usec_per_pathconf_op": 0, + "usec_per_read_op": 267.6470588235294, + "usec_per_readdir_op": 0, + "usec_per_readdirplus_op": 0, + "usec_per_readlink_op": 0, + "usec_per_remove_op": 0, + "usec_per_rename_op": 0, + "usec_per_rmdir_op": 0, + "usec_per_setattr_op": 0, + "usec_per_symlink_op": 0, + "usec_per_write_op": 611.5, + "aggregate_file_metadata_creates_per_sec": 0, + "aggregate_file_metadata_modifies_per_sec": 0, + "aggregate_file_metadata_reads_per_sec": 0, + "aggregate_other_per_sec": 0, + "aggregate_share_metadata_reads_per_sec": 0, + "aggregate_usec_per_file_metadata_create_op": 0, + "aggregate_usec_per_file_metadata_modify_op": 0, + "aggregate_usec_per_file_metadata_read_op": 0, + "aggregate_usec_per_other_op": 0, + "aggregate_usec_per_share_metadata_read_op": 0, + "time": 1682299386000, + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f" + } + ] +} diff --git a/test/data/arrays_performance_replication.json b/test/data/arrays_performance_replication.json new file mode 100644 index 0000000..743ad93 --- /dev/null +++ b/test/data/arrays_performance_replication.json @@ -0,0 +1,29 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "periodic": { + "received_bytes_per_sec": 54.7, + "transmitted_bytes_per_sec": 56.1 + }, + "continuous": { + "received_bytes_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "object_backlog": { + "put_ops_count": 1306, + "delete_ops_count": 0, + "other_ops_count": 0, + "bytes_count": 105241081310 + } + }, + "aggregate": { + "received_bytes_per_sec": 54.7, + "transmitted_bytes_per_sec": 56.1 + }, + "time": 1682619030000, + "name": "fbstaines02" + } + ] +} diff --git a/test/data/arrays_space.json b/test/data/arrays_space.json new file mode 100644 index 0000000..5bfc7dd --- /dev/null +++ b/test/data/arrays_space.json @@ -0,0 +1,20 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "time": 1682625900000, + "capacity": 89314175302419, + "parity": 1, + "space": { + "virtual": 42052675694490, + "unique": 23104433867945, + "snapshots": 30041741112, + "data_reduction": 1.8201128, + "total_physical": 23134475609057 + } + } + ] +} diff --git a/test/data/arrays_space_array.json b/test/data/arrays_space_array.json new file mode 100644 index 0000000..87e33ea --- /dev/null +++ b/test/data/arrays_space_array.json @@ -0,0 +1,20 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "time": 1682626080000, + "capacity": 89314175302419, + "parity": 1, + "space": { + "virtual": 42052675693978, + "unique": 23104431794552, + "snapshots": 30041741112, + "data_reduction": 1.820113, + "total_physical": 23134473535664 + } + } + ] +} diff --git a/test/data/arrays_space_filesystem.json b/test/data/arrays_space_filesystem.json new file mode 100644 index 0000000..7510e5a --- /dev/null +++ b/test/data/arrays_space_filesystem.json @@ -0,0 +1,20 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "time": 1682626140000, + "capacity": 89314175302419, + "parity": 1, + "space": { + "virtual": 31229729723392, + "unique": 16114891884224, + "snapshots": 30041741112, + "data_reduction": 1.9379423, + "total_physical": 16144933625336 + } + } + ] +} diff --git a/test/data/arrays_space_object_store.json b/test/data/arrays_space_object_store.json new file mode 100644 index 0000000..da09217 --- /dev/null +++ b/test/data/arrays_space_object_store.json @@ -0,0 +1,20 @@ +{ + "continuation_token": null, + "total_item_count": 1, + "items": [ + { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "time": 1682626200000, + "capacity": 89314175302419, + "parity": 1, + "space": { + "virtual": 10822945970586, + "unique": 6989539778324, + "snapshots": 0, + "data_reduction": 1.548449, + "total_physical": 6989539778324 + } + } + ] +} diff --git a/test/data/blades.json b/test/data/blades.json new file mode 100644 index 0000000..ba73de3 --- /dev/null +++ b/test/data/blades.json @@ -0,0 +1,150 @@ +{ + "total": { + "raw_capacity": 193514046488576, + "details": null, + "name": null, + "id": null, + "progress": null, + "status": null, + "target": null + }, + "continuation_token": null, + "total_item_count": 15, + "items": [ + { + "raw_capacity": 17592186044416, + "details": null, + "name": "CH1.FB1", + "id": "9905b158-c52c-7255-cb86-ae259dd77abb", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB10", + "id": "29778dac-d832-c057-2694-5215c77f2ec7", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB11", + "id": "e1862971-d992-fdec-7eda-f995a76abfaa", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB12", + "id": "eaf9bbb7-a4a3-99ec-b8c7-dbeeefb16896", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB13", + "id": "0f2a2e9b-b005-4cf4-39b9-15fee65420e0", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 17592186044416, + "details": null, + "name": "CH1.FB14", + "id": "426ae55d-41a8-6423-1fc0-c8a0321a7441", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 17592186044416, + "details": null, + "name": "CH1.FB15", + "id": "b1ce7ca4-98cf-be7a-78ec-e197f26e2c4f", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB2", + "id": "68670094-e3d3-3845-304d-33c6c385dad5", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 17592186044416, + "details": null, + "name": "CH1.FB3", + "id": "79ff40c9-eff9-0cd1-2934-89fad84bb47a", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 17592186044416, + "details": null, + "name": "CH1.FB4", + "id": "8bb54e58-67f1-1bf6-1fc7-8149751ae1d9", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 17592186044416, + "details": null, + "name": "CH1.FB5", + "id": "ec8946bf-095d-724c-f7cf-578041a9dcc2", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB6", + "id": "bb5c2591-e4d9-301f-83b8-0bf81295e447", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 17592186044416, + "details": null, + "name": "CH1.FB7", + "id": "59396d25-6d64-f22a-af84-f0d36bb95f95", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB8", + "id": "046c6e05-b99d-5053-dfcf-c6e1b6649e3a", + "progress": null, + "status": "healthy", + "target": null + }, + { + "raw_capacity": 8796093022208, + "details": null, + "name": "CH1.FB9", + "id": "a31cc41d-77c3-2dd0-6ee9-74fec5b7a286", + "progress": null, + "status": "healthy", + "target": null + } + ] +} diff --git a/test/data/buckets.json b/test/data/buckets.json new file mode 100644 index 0000000..e549943 --- /dev/null +++ b/test/data/buckets.json @@ -0,0 +1,3354 @@ +{ + "total": { + "name": null, + "created": null, + "account": { + "name": null, + "id": null, + "resource_type": null + }, + "destroyed": null, + "time_remaining": null, + "space": { + "virtual": 10822945970583, + "unique": 6989539778298, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 6989539778298, + "total_provisioned": 1099511627776 + }, + "object_count": 138869475, + "versioning": null, + "bucket_type": null, + "id": null, + "quota_limit": null, + "hard_limit_enabled": null, + "retention_lock": null, + "eradication_config": { + "manual_eradication": null, + "eradication_delay": null + }, + "object_lock_config": { + "enabled": null, + "freeze_locked_objects": null, + "default_retention": null, + "default_retention_mode": null + } + }, + "continuation_token": null, + "total_item_count": 92, + "items": [ + { + "name": "1mil", + "created": 1656450180000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1264189934080, + "unique": 21512447423, + "snapshots": 0, + "data_reduction": 58.8, + "total_physical": 21512447423, + "total_provisioned": null + }, + "object_count": 15467642, + "versioning": "enabled", + "bucket_type": "classic", + "id": "74a3a782-ebf1-0986-a834-9a780fc7296a", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "acme6orgadmin", + "created": 1664372745000, + "account": { + "name": "f158aeca-bb21-4f6f-a653-523106ca1294", + "id": "2e9de7dc-a48a-5c28-5f62-9810227ca41f", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 62662, + "unique": 62662, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 62662, + "total_provisioned": null + }, + "object_count": 7, + "versioning": "none", + "bucket_type": "classic", + "id": "dd2a8f10-6906-f9c6-587d-c6a05039d09e", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "acme7catalog", + "created": 1664383217000, + "account": { + "name": "8db18e81-10aa-43fe-9260-cc960ee01280", + "id": "bcbb7278-7dee-1764-284d-6664f3605b6f", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1406534144, + "unique": 1396645132, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 1396645132, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "c31132f1-a1b9-96b3-36dd-2eab97220521", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "acme7defaultid", + "created": 1664381552000, + "account": { + "name": "8db18e81-10aa-43fe-9260-cc960ee01280", + "id": "bcbb7278-7dee-1764-284d-6664f3605b6f", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 512, + "unique": 137, + "snapshots": 0, + "data_reduction": 3.7, + "total_physical": 137, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "d5bb6c32-4918-3479-5040-a13525e45528", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "acme7orguser", + "created": 1664444861000, + "account": { + "name": "8db18e81-10aa-43fe-9260-cc960ee01280", + "id": "bcbb7278-7dee-1764-284d-6664f3605b6f", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 21048, + "unique": 21048, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 21048, + "total_provisioned": null + }, + "object_count": 2, + "versioning": "none", + "bucket_type": "classic", + "id": "0adc3085-536a-f74b-d9f5-7999135e806c", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "adf-bucket-01", + "created": 1582302616000, + "account": { + "name": "azure-data-factory", + "id": "88c471b6-305c-570a-ac66-e9933fe3040c", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1059849182720, + "unique": 400323995809, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 400323995809, + "total_provisioned": null + }, + "object_count": 1390, + "versioning": "none", + "bucket_type": "classic", + "id": "6125113f-0306-5390-2591-8730f5c8b588", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "alex", + "created": 1591174414000, + "account": { + "name": "alex", + "id": "5888a1b8-0fda-7b92-3436-4b9baa798075", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "3c212d50-c058-0290-45a2-683300571322", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "alias-failover", + "created": 1654326679000, + "account": { + "name": "fbstaines02", + "id": "4e2da6ce-19cd-774d-af1e-c9c8cefc8960", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 12372393, + "unique": 12372393, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 12372393, + "total_provisioned": null + }, + "object_count": 2000, + "versioning": "enabled", + "bucket_type": "classic", + "id": "3e0d8eb0-fb77-5bc3-c628-06c0f52092ae", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "anthosdemo", + "created": 1593899478000, + "account": { + "name": "anthos", + "id": "aba8d1ee-1cca-8b02-0473-be186660ab07", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 496269646336, + "unique": 259995746472, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 259995746472, + "total_provisioned": null + }, + "object_count": 220, + "versioning": "none", + "bucket_type": "classic", + "id": "830a4df3-8f36-bfa8-66c9-7b95537bbb05", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "app", + "created": 1638262711000, + "account": { + "name": "semih-px", + "id": "db732280-4628-3689-8935-02c11a308177", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 2560, + "unique": 2355, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 2355, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "16a7075c-8623-7fb3-14a7-3040327f6755", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "ash-bucket", + "created": 1621698916000, + "account": { + "name": "ashtest", + "id": "b27ca6ce-658f-75a8-0012-7236cc639e91", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 116022272, + "unique": 4127793, + "snapshots": 0, + "data_reduction": 28.1, + "total_physical": 4127793, + "total_provisioned": null + }, + "object_count": 54, + "versioning": "none", + "bucket_type": "classic", + "id": "16a7f6b1-ae2f-d61a-93a0-9e0e7d5e2e85", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "backup", + "created": 1634544143000, + "account": { + "name": "semih-px", + "id": "db732280-4628-3689-8935-02c11a308177", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 38362112, + "unique": 25390773, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 25390773, + "total_provisioned": null + }, + "object_count": 77, + "versioning": "none", + "bucket_type": "classic", + "id": "f40edc98-eb40-725a-584c-2ffcf092e886", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "backups", + "created": 1633522742000, + "account": { + "name": "semih-px", + "id": "db732280-4628-3689-8935-02c11a308177", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 80504832, + "unique": 57328034, + "snapshots": 0, + "data_reduction": 1.4, + "total_physical": 57328034, + "total_provisioned": null + }, + "object_count": 104, + "versioning": "none", + "bucket_type": "classic", + "id": "cf836d0d-1a49-0780-6430-e6ce5a56d1c8", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "bbbb", + "created": 1595919226000, + "account": { + "name": "mwamrep", + "id": "eaafc05d-8e3f-9dcc-5cec-c69f95f64bb9", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 2912081920, + "unique": 2814923639, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 2814923639, + "total_provisioned": null + }, + "object_count": 10, + "versioning": "enabled", + "bucket_type": "classic", + "id": "cd69064c-7559-858a-67a3-6e132448e593", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "bc-kafka-queue", + "created": 1621333197000, + "account": { + "name": "bcatic", + "id": "ba3be33c-9733-10da-dcad-e8480854f696", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 3080508, + "unique": 3080508, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 3080508, + "total_provisioned": null + }, + "object_count": 212, + "versioning": "enabled", + "bucket_type": "classic", + "id": "5e4d0cf1-3b5f-00f3-7fa8-e6c4b64bd7ff", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "bigdata", + "created": 1584536682000, + "account": { + "name": "oracle", + "id": "e20e09f2-8ead-cd8e-4ce3-0b361f125cba", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 277314048, + "unique": 64722090, + "snapshots": 0, + "data_reduction": 4.3, + "total_physical": 64722090, + "total_provisioned": null + }, + "object_count": 4, + "versioning": "none", + "bucket_type": "classic", + "id": "1bcc5864-63df-edae-2fca-bb6b20113ad5", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "bloom-bi-dir-classic", + "created": 1682077285000, + "account": { + "name": "bloom-bidir", + "id": "df3c4d5f-792a-22a1-5f31-5214e5656e28", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 263105164800, + "unique": 123247013426, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 123247013426, + "total_provisioned": null + }, + "object_count": 1305, + "versioning": "enabled", + "bucket_type": "classic", + "id": "8a36e97c-b2df-4d98-ac3e-73c41da114a5", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "chemicalx", + "created": 1670579167000, + "account": { + "name": "b7b9c540-538f-4b71-b86b-df39b59dc596", + "id": "9bf477e0-1d2b-c455-20c4-18075f04120e", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "enabled", + "bucket_type": "classic", + "id": "ca41f444-2c7a-e79d-1acb-1100cbc99a41", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "data", + "created": 1638280747000, + "account": { + "name": "semih-px", + "id": "db732280-4628-3689-8935-02c11a308177", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 125981696, + "unique": 47487524, + "snapshots": 0, + "data_reduction": 2.7, + "total_physical": 47487524, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "5133670d-88e6-87e6-e74d-5a2af8bb2268", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "datev", + "created": 1586269544000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 413088133021, + "unique": 413088133021, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 413088133021, + "total_provisioned": null + }, + "object_count": 100122908, + "versioning": "none", + "bucket_type": "classic", + "id": "996bd62a-e9b6-351f-3108-87054096ca71", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "deleteme-go-plumb-bucket-go-plumbing-fb02-fppjf", + "created": 1674657072000, + "account": { + "name": "deleteme-go-plumb-account-go-plumbing-fb02-fppjf", + "id": "4bf05eea-e8f9-fb66-81ce-92365abe31b0", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 151320938, + "unique": 151320938, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 151320938, + "total_provisioned": null + }, + "object_count": 18, + "versioning": "none", + "bucket_type": "classic", + "id": "ab5502cd-81bf-d061-7794-39a36614b492", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "dmbucket", + "created": 1671018873000, + "account": { + "name": "dmiller", + "id": "a8f23a74-e2ae-504f-ac90-1cdd3f40e606", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 140639232, + "unique": 101403566, + "snapshots": 0, + "data_reduction": 1.4, + "total_physical": 101403566, + "total_provisioned": null + }, + "object_count": 236, + "versioning": "enabled", + "bucket_type": "classic", + "id": "50114bb8-63e7-2994-7013-bbf53a40bbc8", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "ef-data", + "created": 1670854759000, + "account": { + "name": "2d8224d1-d728-44b9-91e8-9aad3204389b", + "id": "6d428a54-964c-9a2f-192f-106e65051ec1", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 8664061, + "unique": 8664061, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 8664061, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "enabled", + "bucket_type": "classic", + "id": "c3971092-f9d2-531b-75dc-c261e122ed96", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "es-snaprepo-ke-elastic", + "created": 1606128840000, + "account": { + "name": "datapipeline", + "id": "b3d1332f-7f0c-885e-6330-6baacd87b403", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 948047413760, + "unique": 874440391743, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 874440391743, + "total_provisioned": null + }, + "object_count": 43171, + "versioning": "none", + "bucket_type": "classic", + "id": "892eb759-a599-292d-4c06-6517416da681", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "flashblade-rclone-bucket", + "created": 1655523168000, + "account": { + "name": "rclone-test", + "id": "9b883e56-ba9d-5bfe-bc9d-4ce5e3a22380", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 167894702687, + "unique": 79113035810, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 79113035810, + "total_provisioned": null + }, + "object_count": 84695, + "versioning": "enabled", + "bucket_type": "classic", + "id": "b9ea8761-fc2b-755e-8aef-40fc8803c34f", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "flashrecover", + "created": 1653509699000, + "account": { + "name": "plumbing", + "id": "499e4bdd-24f1-6d35-2e7e-23bee82e2c1b", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 128807075840, + "unique": 114255242820, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 114255242820, + "total_provisioned": null + }, + "object_count": 174, + "versioning": "none", + "bucket_type": "classic", + "id": "05f27368-a151-8915-094f-b4748abb40b4", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "fsf", + "created": 1662720559000, + "account": { + "name": "mmeppen2", + "id": "5f18583b-9518-0794-c0b1-ae3264b94a55", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "7cfaf9f4-a49a-1216-b15e-9b0133267f1f", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "gse-fb02-s3-source", + "created": 1587467106000, + "account": { + "name": "gse-s3-test-migration", + "id": "c3f45a45-1fbc-d088-47b2-598bca488b1a", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 314576384, + "unique": 230672, + "snapshots": 0, + "data_reduction": 1363.7, + "total_physical": 230672, + "total_provisioned": null + }, + "object_count": 9, + "versioning": "none", + "bucket_type": "classic", + "id": "fbffae68-5187-c66e-44a4-58f77c581fb1", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "gse-fb02-s3-target", + "created": 1587470221000, + "account": { + "name": "gse-s3-test-migration", + "id": "c3f45a45-1fbc-d088-47b2-598bca488b1a", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 314576384, + "unique": 227355, + "snapshots": 0, + "data_reduction": 1383.6, + "total_physical": 227355, + "total_provisioned": null + }, + "object_count": 9, + "versioning": "none", + "bucket_type": "classic", + "id": "6b49220a-36e2-87a2-9b5a-98cca6ad0bab", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "gwillett-px-backup", + "created": 1639651747000, + "account": { + "name": "gwillett-px-backup", + "id": "95a39da8-0cde-c256-0ef5-dbe6813c9cfe", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 110592, + "unique": 43988, + "snapshots": 0, + "data_reduction": 2.5, + "total_physical": 43988, + "total_provisioned": null + }, + "object_count": 48, + "versioning": "none", + "bucket_type": "classic", + "id": "adcf4d9c-0a48-6e2e-8b6d-19cddf649999", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "jbtbucket", + "created": 1590327085000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 41978292, + "unique": 41548810, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 41548810, + "total_provisioned": null + }, + "object_count": 33, + "versioning": "none", + "bucket_type": "classic", + "id": "24bc0d2c-9974-3eaa-a5df-85eaf8a97d29", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "jbtdata", + "created": 1583412156000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1740590447104, + "unique": 773184256996, + "snapshots": 0, + "data_reduction": 2.3, + "total_physical": 773184256996, + "total_provisioned": null + }, + "object_count": 21799681, + "versioning": "none", + "bucket_type": "classic", + "id": "586728c7-a730-6d58-20e5-f5787495cfa5", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "kafka-tiered-storage", + "created": 1606215643000, + "account": { + "name": "datapipeline", + "id": "b3d1332f-7f0c-885e-6330-6baacd87b403", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 3407668019200, + "unique": 3366726476664, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 3366726476664, + "total_provisioned": null + }, + "object_count": 173877, + "versioning": "none", + "bucket_type": "classic", + "id": "2b807f89-c5ea-46de-9f65-04cc9b7e3176", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "kompriserepo", + "created": 1582211184000, + "account": { + "name": "jwps", + "id": "70cf93fa-5327-9a90-4567-853fb3e982f5", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "d1ecbcf9-4bf7-496c-887c-9f6626f936f8", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "lee-sql-fb02", + "created": 1676475517000, + "account": { + "name": "lee-sql-fb02", + "id": "c5b2d70c-495e-b93f-8c39-b2fed83570a0", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "enabled", + "bucket_type": "classic", + "id": "2a86e1cb-734b-6b0b-6753-a679669fcd44", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "lee-virtualhost", + "created": 1672987311000, + "account": { + "name": "lee-virtualhost", + "id": "19acfd13-755b-be4f-753d-3bbe3f08928c", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 31744, + "unique": 12958, + "snapshots": 0, + "data_reduction": 2.4, + "total_physical": 12958, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "cebe620b-a993-27bf-f4e3-fe9d2dc5cc8c", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "lock7days", + "created": 1681468109000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 4096, + "unique": 686, + "snapshots": 0, + "data_reduction": 6, + "total_physical": 686, + "total_provisioned": null + }, + "object_count": 7, + "versioning": "none", + "bucket_type": "classic", + "id": "b721f6a4-278d-0b06-d42d-9154423a464d", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": true, + "freeze_locked_objects": true, + "default_retention": 604800000, + "default_retention_mode": "compliance" + } + }, + { + "name": "lock7dayversion", + "created": 1681468374000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 5632, + "unique": 957, + "snapshots": 0, + "data_reduction": 5.9, + "total_physical": 957, + "total_provisioned": null + }, + "object_count": 7, + "versioning": "enabled", + "bucket_type": "classic", + "id": "7168a739-c5e4-8da5-2f8a-378d90a6f13c", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": true, + "freeze_locked_objects": false, + "default_retention": 604800000, + "default_retention_mode": "compliance" + } + }, + { + "name": "london-smart-meter", + "created": 1587325838000, + "account": { + "name": "azure-data-factory", + "id": "88c471b6-305c-570a-ac66-e9933fe3040c", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 18207618560, + "unique": 3606911052, + "snapshots": 0, + "data_reduction": 5, + "total_physical": 3606911052, + "total_provisioned": null + }, + "object_count": 455, + "versioning": "none", + "bucket_type": "classic", + "id": "5d0e6215-4d33-5fee-1a24-fea33579b018", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "lucatestbrepst2", + "created": 1624969709000, + "account": { + "name": "luca", + "id": "b260fc84-6770-dce6-2c52-2c62d6c5442c", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 35840, + "unique": 8396, + "snapshots": 0, + "data_reduction": 4.3, + "total_physical": 8396, + "total_provisioned": null + }, + "object_count": 18, + "versioning": "enabled", + "bucket_type": "classic", + "id": "722980d3-fb94-ba8d-ef78-c1508663bae8", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "makadmeh-px-backup-bucket-fb", + "created": 1675495172000, + "account": { + "name": "makadmeh-fb", + "id": "bef6fd5d-cec8-2bb1-142d-0f9069a4dfb8", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 443233792, + "unique": 119436430, + "snapshots": 0, + "data_reduction": 3.7, + "total_physical": 119436430, + "total_provisioned": null + }, + "object_count": 401, + "versioning": "none", + "bucket_type": "classic", + "id": "d2b5de8c-f203-9305-7ffd-82e3082b11d0", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "matzes-bucket", + "created": 1665420294000, + "account": { + "name": "b6f55c98-5f44-40d2-8097-19db7294bdc9", + "id": "1cfc549f-a75e-7fbd-608c-1e606bdaab13", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 5125632, + "unique": 5084144, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 5084144, + "total_provisioned": null + }, + "object_count": 2, + "versioning": "enabled", + "bucket_type": "classic", + "id": "094b238a-b9ba-2738-0427-e129d5a972be", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "me-k8s-clusters-px-backup-bucket", + "created": 1663082372000, + "account": { + "name": "me-k8s-clusters-px-backup-user", + "id": "8ec0948f-ba09-8b80-1f90-6dc3b6ae2f27", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 2760214016, + "unique": 2182487444, + "snapshots": 0, + "data_reduction": 1.3, + "total_physical": 2182487444, + "total_provisioned": null + }, + "object_count": 3571, + "versioning": "none", + "bucket_type": "classic", + "id": "b1075f2d-0c5f-7686-3e13-f68d69ca3214", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "me-k8s-clusters-px-backup-fb2-bucket", + "created": 1659000356000, + "account": { + "name": "me-k8s-clusters-px-backup-fb2-user", + "id": "f96edcf4-4904-0581-93d7-41348fc08be2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 865469440, + "unique": 215678135, + "snapshots": 0, + "data_reduction": 4, + "total_physical": 215678135, + "total_provisioned": null + }, + "object_count": 724, + "versioning": "none", + "bucket_type": "classic", + "id": "d938473b-1cdf-0dc5-745a-a60814ab1c32", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "me-k8s-clusters-px-backup-fb2-bucket2", + "created": 1662400325000, + "account": { + "name": "me-k8s-clusters-px-backup-fb2-user", + "id": "f96edcf4-4904-0581-93d7-41348fc08be2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 115316736, + "unique": 31383954, + "snapshots": 0, + "data_reduction": 3.7, + "total_physical": 31383954, + "total_provisioned": null + }, + "object_count": 93, + "versioning": "none", + "bucket_type": "classic", + "id": "b2ebb68c-833b-1b26-0cd2-2943f0dd5430", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "me-k8s-clusters-px-backup-fb2-bucket3", + "created": 1662980336000, + "account": { + "name": "me-k8s-clusters-px-backup-fb2-user", + "id": "f96edcf4-4904-0581-93d7-41348fc08be2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "2d4cdc40-a60a-a2eb-fe15-2eded03ef07c", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "mm-repl-bucket", + "created": 1681753802000, + "account": { + "name": "mm-repl-test", + "id": "552004d2-f1b0-c851-83a0-73690cde7b78", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 512, + "unique": 129, + "snapshots": 0, + "data_reduction": 4, + "total_physical": 129, + "total_provisioned": 1099511627776 + }, + "object_count": 0, + "versioning": "enabled", + "bucket_type": "multi-site-writable", + "id": "b859894e-f5da-47f7-7f5e-4a5fcb8178c2", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "mwamrep", + "created": 1595498667000, + "account": { + "name": "mwamrep", + "id": "eaafc05d-8e3f-9dcc-5cec-c69f95f64bb9", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 206158430208, + "unique": 124220391083, + "snapshots": 0, + "data_reduction": 1.7, + "total_physical": 124220391083, + "total_provisioned": null + }, + "object_count": 259, + "versioning": "enabled", + "bucket_type": "classic", + "id": "86898095-326e-ddf0-e394-84ec3aa62242", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "myfirst", + "created": 1675079892000, + "account": { + "name": "heinb-acct", + "id": "5bdcf72d-2cc6-3e38-538f-7299529515c2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 22551040, + "unique": 9900508, + "snapshots": 0, + "data_reduction": 2.3, + "total_physical": 9900508, + "total_provisioned": null + }, + "object_count": 15, + "versioning": "enabled", + "bucket_type": "classic", + "id": "b3bb27d0-0ebc-4111-738c-1e366d278c54", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "ngc4889", + "created": 1584537512000, + "account": { + "name": "object3in", + "id": "e543642a-51ca-7f7e-7bb6-7b6d7f36000b", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 21149147648, + "unique": 20314763761, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 20314763761, + "total_provisioned": null + }, + "object_count": 1523, + "versioning": "none", + "bucket_type": "classic", + "id": "974dd667-7145-22fd-d832-e06e9dc8b031", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "og-test", + "created": 1594385440000, + "account": { + "name": "matze", + "id": "75b8c954-02cf-a18b-ffc2-e01d16a76257", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 152823180864, + "unique": 7189133949, + "snapshots": 0, + "data_reduction": 21.3, + "total_physical": 7189133949, + "total_provisioned": null + }, + "object_count": 1000005, + "versioning": "none", + "bucket_type": "classic", + "id": "f4d16270-f2e5-6977-3f4e-8016f863ea2d", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "onurbucket", + "created": 1653329147000, + "account": { + "name": "onurac", + "id": "bc908edd-a34d-4a82-615f-14cbaffc1922", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "0acbeca3-0e4f-37e0-0ebf-7d606f97d840", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "ora-bucket", + "created": 1657795514000, + "account": { + "name": "ron", + "id": "bffd9ec2-417e-7cc8-8ef4-b9ea06e22ad0", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 14231040, + "unique": 7205275, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 7205275, + "total_provisioned": null + }, + "object_count": 4, + "versioning": "none", + "bucket_type": "classic", + "id": "cff21635-a039-5ae5-0e36-55fcc228a52b", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "petclinic2", + "created": 1625053810000, + "account": { + "name": "jo-backup", + "id": "56950292-7052-747c-5af5-a042506947c5", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 66010112, + "unique": 48219806, + "snapshots": 0, + "data_reduction": 1.4, + "total_physical": 48219806, + "total_provisioned": null + }, + "object_count": 71, + "versioning": "enabled", + "bucket_type": "classic", + "id": "8883b7c9-2db3-c0ee-8003-43465984b2d8", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "pumarep", + "created": 1601019375000, + "account": { + "name": "mwamrep", + "id": "eaafc05d-8e3f-9dcc-5cec-c69f95f64bb9", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 2844160, + "unique": 2837202, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 2837202, + "total_provisioned": null + }, + "object_count": 2, + "versioning": "enabled", + "bucket_type": "classic", + "id": "f33036bd-63bc-65e9-bcf0-4015ce2988fb", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "px-backup-bucket", + "created": 1677718271000, + "account": { + "name": "egrosso", + "id": "bb4973c3-dee8-0554-f4b3-46f1df424283", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "80503818-f53c-a1a2-f36b-e3f9b3d2a3d4", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "px-backup-demo", + "created": 1656602794000, + "account": { + "name": "egrosso", + "id": "bb4973c3-dee8-0554-f4b3-46f1df424283", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "6f4ed846-9b46-7170-272d-e9cd27415acd", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "px-os-b84b2a3a-0316-474d-90ca-d3d018b39bd3", + "created": 1671132676000, + "account": { + "name": "me-k8s-clusters-px-backup-fb2-user", + "id": "f96edcf4-4904-0581-93d7-41348fc08be2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 14336, + "unique": 2038, + "snapshots": 0, + "data_reduction": 7, + "total_physical": 2038, + "total_provisioned": null + }, + "object_count": 28, + "versioning": "none", + "bucket_type": "classic", + "id": "39b0ca96-c877-b48d-9a42-10d6f2ece378", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "px-snapshots", + "created": 1676642538000, + "account": { + "name": "egrosso", + "id": "bb4973c3-dee8-0554-f4b3-46f1df424283", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "31a6dd88-3cda-7e11-68c0-f4678263f7c3", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "rd-bucket", + "created": 1634230006000, + "account": { + "name": "remko1", + "id": "866198fe-7cb3-a3a1-5159-6d1655cf31bf", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 512, + "unique": 130, + "snapshots": 0, + "data_reduction": 3.9, + "total_physical": 130, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "enabled", + "bucket_type": "classic", + "id": "059839cd-a33e-10a1-d64e-100a611f8ad9", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "repl-t", + "created": 1617132807000, + "account": { + "name": "matze", + "id": "75b8c954-02cf-a18b-ffc2-e01d16a76257", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 12286075, + "unique": 12286075, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 12286075, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "enabled", + "bucket_type": "classic", + "id": "334b8303-2e82-44a5-260c-b791665ffbe0", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "repl-test2", + "created": 1623308030000, + "account": { + "name": "matze", + "id": "75b8c954-02cf-a18b-ffc2-e01d16a76257", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1157120, + "unique": 267643, + "snapshots": 0, + "data_reduction": 4.3, + "total_physical": 267643, + "total_provisioned": null + }, + "object_count": 6, + "versioning": "enabled", + "bucket_type": "classic", + "id": "6b9fb349-0a67-c4e8-7680-9c8b775d6e3a", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "repl-uni-drr-test-classic", + "created": 1682055450000, + "account": { + "name": "bloom", + "id": "758689f4-7474-3d06-ab17-cb916878a6aa", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 210484131840, + "unique": 98596449691, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 98596449691, + "total_provisioned": null + }, + "object_count": 653, + "versioning": "enabled", + "bucket_type": "classic", + "id": "bb6d43b4-a85c-25f9-671f-6819a4f04c3e", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "s3fs-bucket", + "created": 1656162357000, + "account": { + "name": "rclone-test", + "id": "9b883e56-ba9d-5bfe-bc9d-4ce5e3a22380", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 10737522176, + "unique": 8531956, + "snapshots": 0, + "data_reduction": 1258.5, + "total_physical": 8531956, + "total_provisioned": null + }, + "object_count": 201, + "versioning": "none", + "bucket_type": "classic", + "id": "d3855adf-bf3d-41b7-79a5-e701c7efce64", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "s3select-demo", + "created": 1660643695000, + "account": { + "name": "ron", + "id": "bffd9ec2-417e-7cc8-8ef4-b9ea06e22ad0", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1024, + "unique": 486, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 486, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "2e7ab155-5869-248c-6471-f2396c8e0076", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "s3versions", + "created": 1680095080000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 63243264, + "unique": 678213, + "snapshots": 0, + "data_reduction": 93.2, + "total_physical": 678213, + "total_provisioned": null + }, + "object_count": 1010, + "versioning": "enabled", + "bucket_type": "classic", + "id": "31f4a153-dd9c-1c14-c653-b330aeb9569b", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "sec-1", + "created": 1630396901000, + "account": { + "name": "mmeppen2", + "id": "5f18583b-9518-0794-c0b1-ae3264b94a55", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 9413, + "unique": 3117, + "snapshots": 0, + "data_reduction": 3, + "total_physical": 3117, + "total_provisioned": null + }, + "object_count": 6, + "versioning": "enabled", + "bucket_type": "classic", + "id": "ee5c6dd6-b164-16f2-c7a6-4447abbdf695", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "sec-2", + "created": 1630401231000, + "account": { + "name": "mmeppen2", + "id": "5f18583b-9518-0794-c0b1-ae3264b94a55", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 3584, + "unique": 1408, + "snapshots": 0, + "data_reduction": 2.5, + "total_physical": 1408, + "total_provisioned": null + }, + "object_count": 3, + "versioning": "enabled", + "bucket_type": "classic", + "id": "17047d87-a9ec-9939-bfc0-b9baee68aa17", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "sedemo", + "created": 1585654099000, + "account": { + "name": "sedemo", + "id": "fe12f3c5-2f9a-b3c5-afcc-a7da47db02f3", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 73011712, + "unique": 47604929, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 47604929, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "enabled", + "bucket_type": "classic", + "id": "f1ff0fab-c759-5ac9-6f16-88f1ccba4ee9", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "tbucker1", + "created": 1645551278000, + "account": { + "name": "taccount", + "id": "a5871533-41e3-edd2-12d5-a2640350bd6f", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 56572295, + "unique": 55252388, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 55252388, + "total_provisioned": null + }, + "object_count": 8, + "versioning": "enabled", + "bucket_type": "classic", + "id": "9a30210b-4746-4fb6-8e66-f732029595ff", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "tescobucket1", + "created": 1645631722000, + "account": { + "name": "tesco", + "id": "d1efd111-0597-c7f4-ca14-f44de3e67234", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "enabled", + "bucket_type": "classic", + "id": "24f7adcc-372f-19fa-2823-18802cf8430e", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "test", + "created": 1681480580000, + "account": { + "name": "0bc7c9a9-c448-4630-ac12-837d6c77ffbd", + "id": "17c77948-98b7-4852-1c0e-804ddbd0678d", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 123904, + "unique": 110632, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 110632, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "11a6c83d-033b-a2d3-ebc7-7e654e70bc5a", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "test-for-minio", + "created": 1662413674000, + "account": { + "name": "jbt", + "id": "665a6ba4-749b-f1c7-159c-3e1bb1afdc92", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 2560, + "unique": 274, + "snapshots": 0, + "data_reduction": 9.3, + "total_physical": 274, + "total_provisioned": null + }, + "object_count": 4, + "versioning": "enabled", + "bucket_type": "classic", + "id": "2f357013-4c1a-5e0a-5fcd-84ad1b5443bb", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "test3", + "created": 1618992937000, + "account": { + "name": "matze", + "id": "75b8c954-02cf-a18b-ffc2-e01d16a76257", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "c8d8e287-a4c7-dd32-62a8-67df3c7e819b", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "testcatalog", + "created": 1664444535000, + "account": { + "name": "2316bb83-50dc-4cc4-adad-a15c5e89207c", + "id": "9ce06a4a-9f55-4f1d-312c-463733ac0c09", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "9d3c4ce4-f1d0-bb50-6634-a29eaee171be", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "testorgadmin", + "created": 1664444333000, + "account": { + "name": "2316bb83-50dc-4cc4-adad-a15c5e89207c", + "id": "9ce06a4a-9f55-4f1d-312c-463733ac0c09", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 96768, + "unique": 79216, + "snapshots": 0, + "data_reduction": 1.2, + "total_physical": 79216, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "a4872867-ebd4-bd0b-56d1-3d3bb5d08eb3", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "testorguser", + "created": 1664444187000, + "account": { + "name": "2316bb83-50dc-4cc4-adad-a15c5e89207c", + "id": "9ce06a4a-9f55-4f1d-312c-463733ac0c09", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 39025, + "unique": 39025, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 39025, + "total_provisioned": null + }, + "object_count": 4, + "versioning": "none", + "bucket_type": "classic", + "id": "79c717da-0439-0a86-201e-00441f69045a", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "tirastel", + "created": 1595436671000, + "account": { + "name": "matze", + "id": "75b8c954-02cf-a18b-ffc2-e01d16a76257", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 10266244608, + "unique": 9518426414, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 9518426414, + "total_provisioned": null + }, + "object_count": 156, + "versioning": "none", + "bucket_type": "classic", + "id": "64787e1f-178b-d513-8cc1-b7ef8b7f104f", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "twitter", + "created": 1650670698000, + "account": { + "name": "egrosso", + "id": "bb4973c3-dee8-0554-f4b3-46f1df424283", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 207872, + "unique": 126407, + "snapshots": 0, + "data_reduction": 1.6, + "total_physical": 126407, + "total_provisioned": null + }, + "object_count": 10, + "versioning": "none", + "bucket_type": "classic", + "id": "e1898706-c815-a62a-63a8-07616693ce7c", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "vcd-vapp-40f10fa6ff4cf41f3d57f647cad5bc7e", + "created": 1664383830000, + "account": { + "name": "8db18e81-10aa-43fe-9260-cc960ee01280", + "id": "bcbb7278-7dee-1764-284d-6664f3605b6f", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1523743232, + "unique": 1510358179, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 1510358179, + "total_provisioned": null + }, + "object_count": 1, + "versioning": "none", + "bucket_type": "classic", + "id": "b2dce25f-dbcc-b6b6-86f2-ad6af1087729", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "veeam-fb", + "created": 1667904489000, + "account": { + "name": "veeam-fb", + "id": "39f986f6-a361-952b-d4d2-c0037034e745", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 3, + "versioning": "enabled", + "bucket_type": "classic", + "id": "8ec6a60b-92ce-8e84-21e2-16a238f47f46", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "veeam-fb-no-ver", + "created": 1667904526000, + "account": { + "name": "veeam-fb", + "id": "39f986f6-a361-952b-d4d2-c0037034e745", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 80071464960, + "unique": 79803051188, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 79803051188, + "total_provisioned": null + }, + "object_count": 139977, + "versioning": "none", + "bucket_type": "classic", + "id": "43a5397b-6135-a686-b7bb-4635043100df", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "veeam-vmo2", + "created": 1647239525000, + "account": { + "name": "veeam-s3-test", + "id": "2d924cad-a6ae-cea0-43e5-dc1e3911d2e5", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 3, + "versioning": "none", + "bucket_type": "classic", + "id": "fd131293-1dcc-85ff-7f0e-c750dedf639b", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "veeamv11", + "created": 1668431699000, + "account": { + "name": "veeamv11", + "id": "e566eb41-f920-37a3-59b9-dd3d3daf8605", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 3, + "versioning": "none", + "bucket_type": "classic", + "id": "8b0fc901-827a-4c8d-9d6b-89295367d8bc", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "vertica-eon", + "created": 1662632540000, + "account": { + "name": "repl-dbadmin", + "id": "a0e74251-9df8-293e-d6d2-d8fc721512c5", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 4167168, + "unique": 4080583, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 4080583, + "total_provisioned": null + }, + "object_count": 18, + "versioning": "enabled", + "bucket_type": "classic", + "id": "1c3fb65f-a9e4-9d66-7a1e-83ed03d8c209", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "vesbucket1", + "created": 1645606027000, + "account": { + "name": "ves", + "id": "bd71a2e5-c260-cfc1-f5fc-8c3caa9be5f7", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 6656, + "unique": 1644, + "snapshots": 0, + "data_reduction": 4, + "total_physical": 1644, + "total_provisioned": null + }, + "object_count": 4, + "versioning": "enabled", + "bucket_type": "classic", + "id": "84e4bb5e-e792-72e7-9259-b2b83bcc7f2a", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-backup", + "created": 1605084640000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "7b423564-6622-a470-89c6-c3b8940cb359", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-datasets", + "created": 1605084648000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "6a483e2c-b959-0931-b883-a447f0d5b2c8", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-other", + "created": 1605084655000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "e70752d6-d92a-904e-4d2a-a50f637e8b0b", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-pxbckup-site1", + "created": 1605881110000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1228288000, + "unique": 1088006642, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 1088006642, + "total_provisioned": null + }, + "object_count": 603, + "versioning": "enabled", + "bucket_type": "classic", + "id": "c8ba4da4-a4ee-f012-3977-02f929fcb5bf", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-pxbckup-site1rep", + "created": 1605858416000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 210082410789, + "unique": 210082410789, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 210082410789, + "total_provisioned": null + }, + "object_count": 21636, + "versioning": "enabled", + "bucket_type": "classic", + "id": "fdbe1e58-e89a-9ada-2952-567eef2d7818", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-pxbckup-site2", + "created": 1605858408000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 253844480, + "unique": 242209700, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 242209700, + "total_provisioned": null + }, + "object_count": 85, + "versioning": "none", + "bucket_type": "classic", + "id": "6da23cb8-5096-ddb4-edc8-9ded233a5219", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + } + ] +} diff --git a/test/data/buckets_for_perf.json b/test/data/buckets_for_perf.json new file mode 100644 index 0000000..877ec33 --- /dev/null +++ b/test/data/buckets_for_perf.json @@ -0,0 +1,222 @@ +{ + "total": { + "name": null, + "created": null, + "account": { + "name": null, + "id": null, + "resource_type": null + }, + "destroyed": null, + "time_remaining": null, + "space": { + "virtual": 10822945970583, + "unique": 6989539778298, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 6989539778298, + "total_provisioned": 1099511627776 + }, + "object_count": 138869475, + "versioning": null, + "bucket_type": null, + "id": null, + "quota_limit": null, + "hard_limit_enabled": null, + "retention_lock": null, + "eradication_config": { + "manual_eradication": null, + "eradication_delay": null + }, + "object_lock_config": { + "enabled": null, + "freeze_locked_objects": null, + "default_retention": null, + "default_retention_mode": null + } + }, + "continuation_token": null, + "total_item_count": 5, + "items": [ + { + "name": "z-da-backup", + "created": 1605084640000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "7b423564-6622-a470-89c6-c3b8940cb359", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-datasets", + "created": 1605084648000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "6a483e2c-b959-0931-b883-a447f0d5b2c8", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-other", + "created": 1605084655000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0, + "total_provisioned": null + }, + "object_count": 0, + "versioning": "none", + "bucket_type": "classic", + "id": "e70752d6-d92a-904e-4d2a-a50f637e8b0b", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-pxbckup-site1", + "created": 1605881110000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 1228288000, + "unique": 1088006642, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 1088006642, + "total_provisioned": null + }, + "object_count": 603, + "versioning": "enabled", + "bucket_type": "classic", + "id": "c8ba4da4-a4ee-f012-3977-02f929fcb5bf", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + }, + { + "name": "z-da-pxbckup-site2", + "created": 1605858408000, + "account": { + "name": "z-da", + "id": "64e11762-c6ea-362c-3dae-6fbc27dfdda2", + "resource_type": "object-store-accounts" + }, + "destroyed": false, + "time_remaining": null, + "space": { + "virtual": 253844480, + "unique": 242209700, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 242209700, + "total_provisioned": null + }, + "object_count": 85, + "versioning": "none", + "bucket_type": "classic", + "id": "6da23cb8-5096-ddb4-edc8-9ded233a5219", + "quota_limit": null, + "hard_limit_enabled": false, + "retention_lock": "unlocked", + "eradication_config": { + "manual_eradication": "enabled", + "eradication_delay": 86400000 + }, + "object_lock_config": { + "enabled": false, + "freeze_locked_objects": false, + "default_retention": null, + "default_retention_mode": null + } + } + ] +} diff --git a/test/data/buckets_performance.json b/test/data/buckets_performance.json new file mode 100644 index 0000000..fd348a7 --- /dev/null +++ b/test/data/buckets_performance.json @@ -0,0 +1,104 @@ +{ + "total": [ + { + "name": null, + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682684010000, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0, + "id": null + } + ], + "continuation_token": null, + "total_item_count": 5, + "items": [ + { + "name": "z-da-backup", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 1.1, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682684010000, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0, + "id": "7b423564-6622-a470-89c6-c3b8940cb359" + }, + { + "name": "z-da-datasets", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682684010000, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0, + "id": "6a483e2c-b959-0931-b883-a447f0d5b2c8" + }, + { + "name": "z-da-other", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682684010000, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0, + "id": "e70752d6-d92a-904e-4d2a-a50f637e8b0b" + }, + { + "name": "z-da-pxbckup-site1", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682684010000, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0, + "id": "c8ba4da4-a4ee-f012-3977-02f929fcb5bf" + }, + { + "name": "z-da-pxbckup-site2", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682684010000, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0, + "id": "6da23cb8-5096-ddb4-edc8-9ded233a5219" + } + ] +} diff --git a/test/data/buckets_s3performance.json b/test/data/buckets_s3performance.json new file mode 100644 index 0000000..9a6e3f1 --- /dev/null +++ b/test/data/buckets_s3performance.json @@ -0,0 +1,98 @@ +{ + "total": [ + { + "name": null, + "read_buckets_per_sec": 0, + "write_buckets_per_sec": 0, + "read_objects_per_sec": 0, + "write_objects_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_bucket_op": 0, + "usec_per_write_bucket_op": 0, + "usec_per_read_object_op": 0, + "usec_per_write_object_op": 0, + "usec_per_other_op": 0, + "time": 1682687430000, + "id": null + } + ], + "continuation_token": null, + "total_item_count": 5, + "items": [ + { + "name": "z-da-backup", + "read_buckets_per_sec": 0, + "write_buckets_per_sec": 0, + "read_objects_per_sec": 0, + "write_objects_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_bucket_op": 0, + "usec_per_write_bucket_op": 0, + "usec_per_read_object_op": 0, + "usec_per_write_object_op": 0, + "usec_per_other_op": 0, + "time": 1682687430000, + "id": "7b423564-6622-a470-89c6-c3b8940cb359" + }, + { + "name": "z-da-datasets", + "read_buckets_per_sec": 0, + "write_buckets_per_sec": 0, + "read_objects_per_sec": 0, + "write_objects_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_bucket_op": 0, + "usec_per_write_bucket_op": 0, + "usec_per_read_object_op": 0, + "usec_per_write_object_op": 0, + "usec_per_other_op": 0, + "time": 1682687430000, + "id": "6a483e2c-b959-0931-b883-a447f0d5b2c8" + }, + { + "name": "z-da-other", + "read_buckets_per_sec": 0, + "write_buckets_per_sec": 0, + "read_objects_per_sec": 0, + "write_objects_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_bucket_op": 0, + "usec_per_write_bucket_op": 0, + "usec_per_read_object_op": 0, + "usec_per_write_object_op": 0, + "usec_per_other_op": 0, + "time": 1682687430000, + "id": "e70752d6-d92a-904e-4d2a-a50f637e8b0b" + }, + { + "name": "z-da-pxbckup-site1", + "read_buckets_per_sec": 0, + "write_buckets_per_sec": 0, + "read_objects_per_sec": 0, + "write_objects_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_bucket_op": 0, + "usec_per_write_bucket_op": 0, + "usec_per_read_object_op": 0, + "usec_per_write_object_op": 0, + "usec_per_other_op": 0, + "time": 1682687430000, + "id": "c8ba4da4-a4ee-f012-3977-02f929fcb5bf" + }, + { + "name": "z-da-pxbckup-site2", + "read_buckets_per_sec": 0, + "write_buckets_per_sec": 0, + "read_objects_per_sec": 0, + "write_objects_per_sec": 0, + "others_per_sec": 0, + "usec_per_read_bucket_op": 0, + "usec_per_write_bucket_op": 0, + "usec_per_read_object_op": 0, + "usec_per_write_object_op": 0, + "usec_per_other_op": 0, + "time": 1682687430000, + "id": "6da23cb8-5096-ddb4-edc8-9ded233a5219" + } + ] +} diff --git a/test/data/clients_performance.json b/test/data/clients_performance.json new file mode 100644 index 0000000..acb2691 --- /dev/null +++ b/test/data/clients_performance.json @@ -0,0 +1,8183 @@ +{ + "total": [ + { + "name": null, + "writes_per_sec": 2.463710214409376, + "reads_per_sec": 9.255559994673058, + "others_per_sec": 2.330536689306166, + "usec_per_write_op": 575.8378378378376, + "usec_per_read_op": 229.23021582733813, + "usec_per_other_op": 299.37142857142857, + "read_bytes_per_sec": 151643.0949527234, + "write_bytes_per_sec": 30679.118391263826, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 12452.405405405407, + "bytes_per_op": 15557.47159090909 + } + ], + "continuation_token": null, + "total_item_count": 544, + "items": [ + { + "name": "10.225.114.119:301", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "10.225.114.119:302", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "10.225.114.119:304", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "10.225.114.119:305", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "10.225.114.60:920", + "writes_per_sec": 0.4661073378612332, + "reads_per_sec": 0, + "others_per_sec": 2.1973631642029563, + "usec_per_write_op": 377.57142857142856, + "usec_per_read_op": 0, + "usec_per_other_op": 308.06060606060606, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 64.12305233719536, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 137.57142857142858, + "bytes_per_op": 137.57142857142858 + }, + { + "name": "10.225.114.75:668", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:1015", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:1020", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:716", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:747", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:748", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:792", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:814", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:831", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:844", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:876", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:891", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:899", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:921", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:960", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:970", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.1.34:986", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.12:817", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0.13317352510320948, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 156, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:20615", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:20626", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:20824", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:21014", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:21399", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:21730", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:21829", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.177:22133", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.196:865", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.231:964", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:10305", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:10687", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:13033", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:14591", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:14759", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:16251", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 208.25, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.4.2:16389", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:16433", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:16799", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:17525", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:17695", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:18381", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:18401", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:18851", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:23845", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:26121", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:27991", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:28291", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:30369", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:32451", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:32811", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:34129", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:34155", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:35431", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:37147", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:38463", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:38963", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:39121", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:40253", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:40649", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:40743", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:42845", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:42915", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:43395", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:43511", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:43707", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:45645", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:46121", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:46763", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:47063", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:47353", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:47441", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:47935", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:47945", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:48669", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:49225", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:49385", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:49805", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:50471", + "writes_per_sec": 0.1997602876548142, + "reads_per_sec": 0.4661073378612332, + "others_per_sec": 0, + "usec_per_write_op": 585.3333333333334, + "usec_per_read_op": 248.71428571428572, + "usec_per_other_op": 0, + "read_bytes_per_sec": 7636.702623518445, + "write_bytes_per_sec": 3272.872552936476, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.4.2:50633", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:51475", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:51777", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:52879", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:54029", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:55275", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:55837", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:56131", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:56517", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:56691", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:59107", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:60057", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:61173", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:62069", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:62851", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:62991", + "writes_per_sec": 0, + "reads_per_sec": 0.1997602876548142, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 258, + "usec_per_other_op": 0, + "read_bytes_per_sec": 3272.872552936476, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.4.2:63745", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:64333", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:64623", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.2:868", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:10017", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:10879", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:11745", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:12077", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:14797", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:15389", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:16021", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:17289", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:18491", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:19275", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:21243", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:23773", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:23873", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.06658676255160474, + "others_per_sec": 0, + "usec_per_write_op": 571, + "usec_per_read_op": 261, + "usec_per_other_op": 0, + "read_bytes_per_sec": 1090.957517645492, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.4.3:23917", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:24313", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:26023", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:26067", + "writes_per_sec": 0.1997602876548142, + "reads_per_sec": 0.7990411506192568, + "others_per_sec": 0, + "usec_per_write_op": 621.3333333333334, + "usec_per_read_op": 218.33333333333334, + "usec_per_other_op": 0, + "read_bytes_per_sec": 13091.490211745904, + "write_bytes_per_sec": 3272.872552936476, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.4.3:27321", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:27343", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:27615", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:2945", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:29885", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:30107", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:32683", + "writes_per_sec": 0, + "reads_per_sec": 0.1997602876548142, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 186.66666666666666, + "usec_per_other_op": 0, + "read_bytes_per_sec": 3272.872552936476, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.4.3:33071", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:33657", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:34599", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:34629", + "writes_per_sec": 0, + "reads_per_sec": 0.1997602876548142, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 240, + "usec_per_other_op": 0, + "read_bytes_per_sec": 3272.872552936476, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.4.3:35723", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:36889", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:37217", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:37289", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:39685", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:40409", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:40437", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:41205", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:44023", + "writes_per_sec": 0.06658676255160474, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 1120, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 34.09242242642163, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 512, + "bytes_per_op": 512 + }, + { + "name": "192.168.4.3:46417", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:47455", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:47609", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:47829", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:48241", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:49175", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:49441", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:52113", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:52989", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:54329", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:57485", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:60081", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:60515", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:61191", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:61829", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:62311", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:62853", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:63203", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:63927", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:64327", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:64739", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:64884", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.3:971", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.4.6:772", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:10423", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:10473", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:11041", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:11705", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:11751", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:11783", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:12011", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:14023", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:15535", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:15981", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:16477", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:16631", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:16819", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:16903", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:17285", + "writes_per_sec": 0, + "reads_per_sec": 0.1997602876548142, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 183, + "usec_per_other_op": 0, + "read_bytes_per_sec": 3272.872552936476, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.5.2:17679", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:18805", + "writes_per_sec": 0.1997602876548142, + "reads_per_sec": 0.4661073378612332, + "others_per_sec": 0, + "usec_per_write_op": 645, + "usec_per_read_op": 206.85714285714286, + "usec_per_other_op": 0, + "read_bytes_per_sec": 7636.702623518445, + "write_bytes_per_sec": 3272.872552936476, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.5.2:19295", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:19527", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:19597", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:24817", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:25837", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:26283", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:27005", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:29253", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:29525", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:30137", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:31647", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:33069", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:34193", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:34463", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:35287", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:36877", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:37573", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:39057", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:39297", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:40039", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:40955", + "writes_per_sec": 0, + "reads_per_sec": 0.1997602876548142, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 227.66666666666666, + "usec_per_other_op": 0, + "read_bytes_per_sec": 3272.872552936476, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.5.2:41083", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:41143", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:41871", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:43261", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:43415", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:43999", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:44079", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:44123", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:44531", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:45563", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:47037", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:47347", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:47703", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:49265", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:51141", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:51707", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:54591", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:54879", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:55711", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:56215", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:56901", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:57059", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:57481", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:61447", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:62251", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:63643", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:9099", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:9231", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:9449", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.2:9665", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:10929", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:11755", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:12121", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:15449", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:16303", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:16627", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:18155", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:18265", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:18595", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:18639", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:23275", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:23309", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:26195", + "writes_per_sec": 0.1997602876548142, + "reads_per_sec": 0.7990411506192568, + "others_per_sec": 0, + "usec_per_write_op": 645.6666666666666, + "usec_per_read_op": 177.33333333333334, + "usec_per_other_op": 0, + "read_bytes_per_sec": 13091.490211745904, + "write_bytes_per_sec": 3272.872552936476, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.5.3:29863", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:31795", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:32559", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:34457", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:35343", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:35713", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:35949", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:36493", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:37659", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:38631", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:39349", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:40131", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.13317352510320948, + "others_per_sec": 0, + "usec_per_write_op": 545.5, + "usec_per_read_op": 228.5, + "usec_per_other_op": 0, + "read_bytes_per_sec": 2181.915035290984, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.5.3:40511", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:40737", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 275.5, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.5.3:41201", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:43573", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:43909", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:44035", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:44303", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:44691", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:47147", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:48589", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:48923", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:49047", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:49727", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:49813", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:50955", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:53329", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:53833", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:56729", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:57321", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:57359", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:57977", + "writes_per_sec": 0.06658676255160474, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 873, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 34.09242242642163, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 512, + "bytes_per_op": 512 + }, + { + "name": "192.168.5.3:59341", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:59559", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:60701", + "writes_per_sec": 0, + "reads_per_sec": 0.1997602876548142, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 191.66666666666666, + "usec_per_other_op": 0, + "read_bytes_per_sec": 3272.872552936476, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.5.3:60963", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:61163", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:61595", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:62095", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:63129", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:63237", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:63343", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:63391", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:64395", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.5.3:64563", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:10343", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:10437", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:10641", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:10843", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:14381", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:16173", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:19471", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:21475", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:22333", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:25201", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:25447", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:25545", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:26601", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:27347", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:27419", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:27645", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:27757", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:29013", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:29029", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:29119", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:30427", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:31087", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:31603", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:32117", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:32615", + "writes_per_sec": 0, + "reads_per_sec": 0.1997602876548142, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 252, + "usec_per_other_op": 0, + "read_bytes_per_sec": 3272.872552936476, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.6.2:32670", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:32681", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:32967", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:33121", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:34239", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:34573", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:34599", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:35983", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:37957", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:38865", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:39627", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:42093", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:43095", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:43247", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:45851", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:45977", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.4661073378612332, + "others_per_sec": 0, + "usec_per_write_op": 606, + "usec_per_read_op": 263.14285714285717, + "usec_per_other_op": 0, + "read_bytes_per_sec": 7636.702623518445, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.6.2:46139", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:46873", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:47011", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:47393", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:48331", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:50213", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:50217", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:50267", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:50591", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:50601", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:52611", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:53395", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 267.5, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.6.2:53657", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:55209", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:56135", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:57247", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:58113", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:58117", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:58567", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:58731", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:58973", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:60749", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:60903", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:62007", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:63157", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:65485", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.2:9919", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:10665", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:12201", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:12315", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:13493", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:18177", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:18621", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:18744", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:19671", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.13317352510320948, + "others_per_sec": 0, + "usec_per_write_op": 504.5, + "usec_per_read_op": 310.5, + "usec_per_other_op": 0, + "read_bytes_per_sec": 2181.915035290984, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.6.3:22501", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:24435", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:25093", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:26137", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:26377", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:26481", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:27547", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:29165", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:29253", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:31231", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:31785", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:31943", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:32235", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:32789", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:33523", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:34477", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:35427", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:37367", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:38381", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:40125", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:40781", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:41103", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:43059", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:43173", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:43589", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:43961", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:45523", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:46945", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:47075", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 277.5, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.6.3:48055", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:49005", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 242.75, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.6.3:49009", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:49167", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:49995", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:50839", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:51129", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.7990411506192568, + "others_per_sec": 0, + "usec_per_write_op": 609, + "usec_per_read_op": 214.08333333333334, + "usec_per_other_op": 0, + "read_bytes_per_sec": 13091.490211745904, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.6.3:52115", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:52389", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:57663", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:57759", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:58275", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:58289", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:60815", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:62063", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:62405", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:62429", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:63315", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:64321", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:64865", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:64999", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.6.3:9019", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:11177", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 226.75, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.7.2:12001", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:12689", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:13177", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:13469", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 286.75, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.7.2:14173", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:15081", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:16381", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:16979", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:17335", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:18339", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:19103", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:19368", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:19759", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:19765", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:20631", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:21447", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:21895", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:23055", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:23659", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:24207", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:24271", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:25769", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:27475", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:27649", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:27845", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:28127", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:28135", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:28201", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:30803", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.4661073378612332, + "others_per_sec": 0, + "usec_per_write_op": 613.5, + "usec_per_read_op": 216.85714285714286, + "usec_per_other_op": 0, + "read_bytes_per_sec": 7636.702623518445, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.7.2:33355", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:3560", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:36925", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:37747", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:39317", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:39509", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:39655", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:40197", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:41505", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:41869", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:43083", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:43317", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:43503", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:46919", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:47831", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:48347", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:48387", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:48859", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:49747", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:51193", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:52207", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:53171", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:55353", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:57875", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:58423", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:58453", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:58775", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:59177", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:59551", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:60305", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:60383", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:60793", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:61001", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:62645", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:65179", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:9085", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:9317", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.2:9399", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:11183", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:13241", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:13679", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:14401", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:17949", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:18541", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:18715", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:18939", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:19945", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:21313", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:23263", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:23321", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:24039", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:24459", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:25113", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.7990411506192568, + "others_per_sec": 0, + "usec_per_write_op": 611, + "usec_per_read_op": 215.83333333333334, + "usec_per_other_op": 0, + "read_bytes_per_sec": 13091.490211745904, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.7.3:25717", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:27469", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:27863", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:29983", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:31323", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:32297", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:33049", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:34231", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:34463", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:34519", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:35825", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:37191", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:37813", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:37923", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:37983", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:39099", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:39893", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:39929", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:40543", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:40705", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 266.5, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.7.3:42251", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:44351", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:44725", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:44873", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:45413", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:45657", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:45886", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:46811", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:47821", + "writes_per_sec": 0.13317352510320948, + "reads_per_sec": 0.06658676255160474, + "others_per_sec": 0, + "usec_per_write_op": 528.5, + "usec_per_read_op": 208, + "usec_per_other_op": 0, + "read_bytes_per_sec": 1090.957517645492, + "write_bytes_per_sec": 2181.915035290984, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 16384, + "bytes_per_op": 16384 + }, + { + "name": "192.168.7.3:47987", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:49947", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:50303", + "writes_per_sec": 0, + "reads_per_sec": 0.26634705020641897, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 259.25, + "usec_per_other_op": 0, + "read_bytes_per_sec": 4363.830070581968, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 16384, + "bytes_per_write": 0, + "bytes_per_op": 16384 + }, + { + "name": "192.168.7.3:52395", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:52459", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:52877", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:54943", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:56273", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:56449", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:61405", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:62695", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:63943", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:64015", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:9217", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + }, + { + "name": "192.168.7.3:9977", + "writes_per_sec": 0, + "reads_per_sec": 0, + "others_per_sec": 0, + "usec_per_write_op": 0, + "usec_per_read_op": 0, + "usec_per_other_op": 0, + "read_bytes_per_sec": 0, + "write_bytes_per_sec": 0, + "time": 1682685292945, + "bytes_per_read": 0, + "bytes_per_write": 0, + "bytes_per_op": 0 + } + ] +} diff --git a/test/data/filesystems.json b/test/data/filesystems.json new file mode 100644 index 0000000..5c86359 --- /dev/null +++ b/test/data/filesystems.json @@ -0,0 +1,14848 @@ +{ + "total": { + "name": null, + "created": null, + "fast_remove_directory_enabled": null, + "snapshot_directory_enabled": null, + "destroyed": null, + "promotion_status": null, + "requested_promotion_state": null, + "writable": null, + "time_remaining": null, + "nfs": { + "rules": null, + "export_policy": null, + "v3_enabled": null, + "v4_1_enabled": null + }, + "smb": { + "enabled": null + }, + "http": { + "enabled": null + }, + "multi_protocol": { + "safeguard_acls": null, + "access_control_style": null + }, + "hard_limit_enabled": null, + "default_user_quota": null, + "default_group_quota": null, + "space": { + "virtual": 31134805601280, + "unique": 16061362982493, + "snapshots": 84356666672, + "data_reduction": 1.9, + "total_physical": 16145719649165 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": null, + "is_local": null, + "display_name": null + }, + "id": null, + "provisioned": 11691584889290752 + }, + "continuation_token": null, + "total_item_count": 269, + "items": [ + { + "name": "AAA", + "created": 1594304979000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 25295872, + "unique": 24025620, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 24025620 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "33490110-14e7-e258-f7d9-49b57ef30a70", + "provisioned": null + }, + { + "name": "AIRI", + "created": 1582275188000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 163079842816, + "unique": 159663070781, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 159663070781 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "23a12243-25b0-cf36-0080-f05ae0fb3705", + "provisioned": 182536110080 + }, + { + "name": "Alex", + "created": 1591174267000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": true + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "611cc601-2473-e602-3c29-62d61863203c", + "provisioned": 10737418240 + }, + { + "name": "all-protocols", + "created": 1671607236000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": true + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c74c76e6-5b73-8c0d-ec21-a11e1e37e367", + "provisioned": 1099511627776 + }, + { + "name": "ANEWFS", + "created": 1601457804000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5809c40c-76ae-8f08-a457-793388371659", + "provisioned": null + }, + { + "name": "bloom-sm-repl", + "created": 1679718661000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 2446632448, + "unique": 2451602838, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 2451602838 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "31794eea-787e-d6be-8d13-56433b0485cf", + "provisioned": null + }, + { + "name": "ca-ocp4-pvc-2bc92e91-485f-4f21-83b4-9ca73ca8401b", + "created": 1594205524000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1e1b01ff-6c58-1184-3c8f-f79dd8608258", + "provisioned": 2147483648 + }, + { + "name": "chs_test", + "created": 1649666778000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "efc26d59-4a18-c804-5584-d83fac3bae2e", + "provisioned": null + }, + { + "name": "cmeidam", + "created": 1621966225000, + "fast_remove_directory_enabled": true, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 54514925568, + "unique": 180732933, + "snapshots": 0, + "data_reduction": 301.6, + "total_physical": 180732933 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e598872a-e44a-7f4d-ea38-3b303b270c9a", + "provisioned": 21474836480 + }, + { + "name": "correlator-3d", + "created": 1675493066000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 33796259840, + "unique": 20027836540, + "snapshots": 0, + "data_reduction": 1.7, + "total_physical": 20027836540 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "dfdfc540-e8cd-5933-b528-03fc46df2e37", + "provisioned": 1099511627776 + }, + { + "name": "data2", + "created": 1662986182000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1024, + "unique": 149, + "snapshots": 0, + "data_reduction": 6.9, + "total_physical": 149 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "99e61b0c-7705-df45-301a-7fd755ca9700", + "provisioned": null + }, + { + "name": "dm", + "created": 1656414109000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "", + "export_policy": { + "name": "KNFS4", + "id": "2dcad5bf-3151-b404-5a04-ad20040107dd", + "resource_type": "nfs-export-policies" + }, + "v3_enabled": false, + "v4_1_enabled": true + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 10240, + "unique": 2852, + "snapshots": 0, + "data_reduction": 3.6, + "total_physical": 2852 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "609954f3-20f5-93fe-cde8-d8a4dec863dd", + "provisioned": 107374182400 + }, + { + "name": "dm-fp2", + "created": 1681996209000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f98bd0b2-648c-85cb-00c2-b07b109d602b", + "provisioned": 5497558138880 + }, + { + "name": "dm-hs2", + "created": 1681805142000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "nfs" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1024, + "unique": 301, + "snapshots": 0, + "data_reduction": 3.4, + "total_physical": 301 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "4c1ea032-af2d-8f8e-81a3-6c8fdaa6592f", + "provisioned": 5497558138880 + }, + { + "name": "dm2", + "created": 1657534925000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "036ad9bf-617b-2dc0-e78c-6b70adef9ff2", + "provisioned": 10737418240 + }, + { + "name": "eg-nfs01", + "created": 1656999524000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "73df0f7e-ab47-89d3-8a01-3cb15b700b2d", + "provisioned": null + }, + { + "name": "fbstaines02-config", + "created": 1658991848000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "b665d150-2cc7-ba0d-bc12-f59b8cff2359", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-hammerspace", + "created": 1659252233000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "dee87095-c657-b7dc-a3c8-b7ebaa5dd4cf", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm01", + "created": 1658717523000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 31232, + "unique": 6376, + "snapshots": 0, + "data_reduction": 4.9, + "total_physical": 6376 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "045c634c-1f92-e46e-f7fe-857574845e7c", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm01-smb", + "created": 1658983146000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 31232, + "unique": 6509, + "snapshots": 0, + "data_reduction": 4.8, + "total_physical": 6509 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "66e93c74-ddcf-528a-a819-ce618fd4ebe1", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm02", + "created": 1658717545000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 31232, + "unique": 6372, + "snapshots": 0, + "data_reduction": 4.9, + "total_physical": 6372 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "703ece5e-56ef-936b-1232-99ec69518105", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm02-smb", + "created": 1658983176000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 31232, + "unique": 6512, + "snapshots": 0, + "data_reduction": 4.8, + "total_physical": 6512 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "40179846-d1a4-3c0c-93e6-8d346fcc7685", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm03", + "created": 1658717573000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 31232, + "unique": 6374, + "snapshots": 0, + "data_reduction": 4.9, + "total_physical": 6374 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "bad49cf1-83ff-56fb-cbd9-1791a2473bc6", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm03-smb", + "created": 1658983314000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 31232, + "unique": 6507, + "snapshots": 0, + "data_reduction": 4.8, + "total_physical": 6507 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "659c3f11-deca-c009-9b15-158ebafc3ff9", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm04", + "created": 1658717590000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 142123443712, + "unique": 141478067950, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 141478067950 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "68c4f768-8b43-259c-e00d-75bfa7a4bc3c", + "provisioned": 1099511627776 + }, + { + "name": "fbstaines02-sm04-smb", + "created": 1658983235000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 31232, + "unique": 6509, + "snapshots": 0, + "data_reduction": 4.8, + "total_physical": 6509 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "96073cb9-1ebb-9df1-dcde-039bf2fcea4d", + "provisioned": 1099511627776 + }, + { + "name": "fiolibnfs", + "created": 1681912728000, + "fast_remove_directory_enabled": true, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "d5155ad6-1df7-732c-535a-5659382e2075", + "provisioned": 10737418240 + }, + { + "name": "FlashBlade-scale-out-SMB", + "created": 1647262326000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "6bf03cc1-0dce-595f-3e19-d506568c759f", + "provisioned": 1099511627776 + }, + { + "name": "Gamesys", + "created": 1584272226000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "881f978f-59eb-6af0-f43e-f4c39d75406c", + "provisioned": 1099511627776 + }, + { + "name": "gse-fb02-mix", + "created": 1585834711000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ae45b639-f026-18ff-24da-a08f4e71ad2f", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-nfs3-01", + "created": 1588323680000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 5986134016, + "unique": 6366060, + "snapshots": 0, + "data_reduction": 940.3, + "total_physical": 6366060 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "a623dfce-d44f-a25e-1fc4-eda5f721f3a8", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-nfs4-01", + "created": 1588323697000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "cbd020bc-463a-eba2-5926-311fbc50a3e3", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-nfsv3", + "created": 1585751793000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 5986138112, + "unique": 6401350, + "snapshots": 0, + "data_reduction": 935.1, + "total_physical": 6401350 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "adcad5a9-0f96-39b9-4e9d-a1b19f8989ea", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-nfsv4", + "created": 1585751808000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 5986136064, + "unique": 7206801, + "snapshots": 0, + "data_reduction": 830.6, + "total_physical": 7206801 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "961726b3-3d05-5159-b75e-20cc70a6c27b", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-smb01", + "created": 1585752462000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "independent" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3500796416, + "unique": 2215453515, + "snapshots": 0, + "data_reduction": 1.6, + "total_physical": 2215453515 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "a115131e-1d90-e868-cdfd-94f93bbc517f", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-smb03", + "created": 1585752523000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "independent" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3503478784, + "unique": 2215561623, + "snapshots": 0, + "data_reduction": 1.6, + "total_physical": 2215561623 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "7f1c7017-faf0-648b-40fd-b729ae4dea09", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-smb05", + "created": 1587131100000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "independent" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3500706304, + "unique": 2215411376, + "snapshots": 0, + "data_reduction": 1.6, + "total_physical": 2215411376 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f6ab518e-f818-6c4d-b56a-8bf77d4b6787", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-smb07", + "created": 1587135715000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "independent" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3500855808, + "unique": 2215515882, + "snapshots": 0, + "data_reduction": 1.6, + "total_physical": 2215515882 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "fbcc92bb-baea-8771-e33f-ed57f9df789f", + "provisioned": 53687091200 + }, + { + "name": "gse-fb02-smb09", + "created": 1588323625000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "independent" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3500957696, + "unique": 2215459268, + "snapshots": 0, + "data_reduction": 1.6, + "total_physical": 2215459268 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f56990f5-e205-4194-8507-7131afc739a6", + "provisioned": 53687091200 + }, + { + "name": "hammerspace-02", + "created": 1661691467000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 134868273664, + "unique": 134986866130, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 134986866130 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e8a2b845-5f27-9865-c166-7ae999a31fa1", + "provisioned": 1099511627776 + }, + { + "name": "hammerspace-03", + "created": 1662123507000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 512, + "unique": 250, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 250 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "beb28988-5d65-fb5b-20de-51e7ce52394f", + "provisioned": 1099511627776 + }, + { + "name": "hbeeck", + "created": 1680094731000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3122409984, + "unique": 2437272318, + "snapshots": 393530, + "data_reduction": 1.3, + "total_physical": 2437665848 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ad080be9-50a7-4441-fab3-3a512f374d60", + "provisioned": 1099511627776 + }, + { + "name": "huevos_rancheros-pso-db_0000000005", + "created": 1597999842000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "008ca375-7bd5-f86b-fd6e-5036b6a1478e", + "provisioned": 34359738368 + }, + { + "name": "huevos_rancheros-pso-db_0000000006", + "created": 1598066416000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "4e741517-adcc-ef59-af6f-969155c4e9d1", + "provisioned": 34359738368 + }, + { + "name": "huevosrancheros-pso-db_0000000000", + "created": 1597993653000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 37563392, + "unique": 8148062, + "snapshots": 0, + "data_reduction": 4.6, + "total_physical": 8148062 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "762dcac5-66df-9b8a-0424-e2db863d3f83", + "provisioned": 34359738368 + }, + { + "name": "iantest", + "created": 1646395557000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "dd61b60e-1b55-7cd6-17ed-893c480bf37d", + "provisioned": null + }, + { + "name": "iantest_target", + "created": 1645637674000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ed0a8d02-d37a-b9dd-cd5b-ef702da4fd66", + "provisioned": null + }, + { + "name": "jbes", + "created": 1632143336000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 26951411712, + "unique": 21364538505, + "snapshots": 0, + "data_reduction": 1.3, + "total_physical": 21364538505 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "230ecac5-4446-e6ce-fff2-01375f61782f", + "provisioned": 1099511627776 + }, + { + "name": "jbt-plogmetrics", + "created": 1674464850000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 185952238080, + "unique": 180858935961, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 180858935961 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ba02e6bd-68b5-f251-b9c5-fdbeda4a7918", + "provisioned": 536870912000 + }, + { + "name": "jbtfs", + "created": 1638876554000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 34235302912, + "unique": 33012998759, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 33012998759 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "a60a3e27-f8ab-53d6-84b9-c9befe0e1128", + "provisioned": 2199023255552 + }, + { + "name": "jbtrep", + "created": 1648218222000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 257014784, + "unique": 257525151, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 257525151 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "bb24a0af-a589-1c63-aba8-aeec6c0424e5", + "provisioned": null + }, + { + "name": "JHAH-Test-NFS", + "created": 1604994237000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1024, + "unique": 111, + "snapshots": 0, + "data_reduction": 9.2, + "total_physical": 111 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5a833729-2538-1b7e-534c-f0b366e35676", + "provisioned": null + }, + { + "name": "k8s-pvc-4271fb19-add7-4d80-9450-2217dfd4bb5a", + "created": 1606993682000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 23552, + "unique": 22886, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 22886 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1d4a6c21-9fec-7dd4-0e1c-fd24c6dfb862", + "provisioned": 10995116277760 + }, + { + "name": "k8s-pvc-5300d678-1060-4f97-abd8-800b10116061", + "created": 1591120263000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5e8fc087-7786-39b8-7512-c686ed3079a3", + "provisioned": 2147483648 + }, + { + "name": "k8s-pvc-72376fa5-99a6-407e-8b0d-fb9bc33b01aa", + "created": 1604571922000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 19615744, + "unique": 14886330, + "snapshots": 0, + "data_reduction": 1.3, + "total_physical": 14886330 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0eb5ad85-7a08-9f7c-9152-fe0bc628bc10", + "provisioned": 10995116277760 + }, + { + "name": "k8s-pvc-9abd42d9-7bbc-4ecf-bb93-200390eed018", + "created": 1591119882000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ca801b45-dc56-e0ce-ac9d-055c198daf73", + "provisioned": 2147483648 + }, + { + "name": "k8s-pvc-a42ed01f-91c5-47ab-b646-ffd26ff00a0c", + "created": 1604510027000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "6b2c4b63-573f-132c-b33d-5c2008f4fdb5", + "provisioned": 1099511627776 + }, + { + "name": "k8s-pvc-a8bffb5a-5373-4a32-9237-7595ff1b9df5", + "created": 1604510027000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "9e688e48-80f2-a8aa-e515-104278c79319", + "provisioned": 10995116277760 + }, + { + "name": "k8s-pvc-b1685c55-d308-4fa8-9051-ebc3fbb27e3a", + "created": 1604510027000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 26112, + "unique": 23857, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 23857 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "59c2f2d2-47e0-5536-918f-6d70b77d491c", + "provisioned": 53687091200 + }, + { + "name": "k8s-pvc-b58e7911-33f3-4da8-8c5e-23f0dcbf512b", + "created": 1604510027000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 6577152, + "unique": 5672706, + "snapshots": 0, + "data_reduction": 1.2, + "total_physical": 5672706 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "41919d05-84ae-5612-2a10-c3875ada91f9", + "provisioned": 10995116277760 + }, + { + "name": "k8s-pvc-ba2f2b9c-5546-43b3-a4a5-cc6c8629b309", + "created": 1591119882000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "71275da8-fddd-6be9-0654-f6e9c2d1903d", + "provisioned": 2147483648 + }, + { + "name": "k8s-pvc-c8b75017-20d3-4cae-99a9-c7dfde374865", + "created": 1593598763000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "a50bef49-7dcd-0368-2d07-249beab8b48f", + "provisioned": 27917287424 + }, + { + "name": "k8s-pvc-d5ffce7e-0485-4fce-b385-4953e69c6a8f", + "created": 1606993682000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "963c0fac-f06b-f033-7461-2956835abff5", + "provisioned": 10995116277760 + }, + { + "name": "k8s-pvc-e3b82c65-6348-453a-a683-f2d9497aa640", + "created": 1589192397000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 147968, + "unique": 13374, + "snapshots": 0, + "data_reduction": 11.1, + "total_physical": 13374 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1f00184b-a7ef-0855-05f3-917f5e9d77cf", + "provisioned": 2147483648 + }, + { + "name": "k8s-pvc-ea695d17-6271-45af-b0de-c14a4f6b6a03", + "created": 1589809382000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 975053824, + "unique": 794923527, + "snapshots": 0, + "data_reduction": 1.2, + "total_physical": 794923527 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3910e8e0-6a64-eb5d-78a1-ba361f23ed1f", + "provisioned": 1073741824 + }, + { + "name": "k8s-pvc-feca7876-da95-4dfa-813d-988b3d159302", + "created": 1589327150000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1394672128, + "unique": 686594133, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 686594133 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c86251df-d328-27ec-fedc-454ff469979e", + "provisioned": 107374182400 + }, + { + "name": "k8s185_pso6-pso-db_0000000000", + "created": 1600773250000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 4080640, + "unique": 560594, + "snapshots": 0, + "data_reduction": 7.3, + "total_physical": 560594 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e0b2637d-b4a1-542e-507e-0aba89049ee3", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000000-u", + "created": 1600775651000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f1513d2e-a5e6-e746-df73-06a0ea0d7813", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000001", + "created": 1600773250000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 4078592, + "unique": 561129, + "snapshots": 0, + "data_reduction": 7.3, + "total_physical": 561129 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "b871b3fb-1fc7-332f-8540-e963422b9a3b", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000001-u", + "created": 1600775651000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5aaaab4a-a98c-6740-70e3-da82188d50a0", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000002", + "created": 1600775652000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 2764800, + "unique": 384004, + "snapshots": 0, + "data_reduction": 7.2, + "total_physical": 384004 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "fa6729fe-4ea4-8cfc-f57f-44d26e605bcf", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000002-u", + "created": 1600778054000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "08158bd6-da7c-7533-a069-f3cd8166af1e", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000003", + "created": 1600775652000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 2762752, + "unique": 385727, + "snapshots": 0, + "data_reduction": 7.2, + "total_physical": 385727 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5d45f8bb-101d-9430-94d6-8b07aad2cdcc", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000003-u", + "created": 1600778054000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "88b58763-546b-9d4a-1184-aba2a0bc26cb", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000004", + "created": 1600778054000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1428992, + "unique": 206980, + "snapshots": 0, + "data_reduction": 6.9, + "total_physical": 206980 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "71a28416-303a-f96e-8d33-af1ff1efab4b", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000004-u", + "created": 1600780456000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "d8e17363-dd96-cfd6-1778-2a54b7f462b9", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000005", + "created": 1600778055000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1431552, + "unique": 207093, + "snapshots": 0, + "data_reduction": 6.9, + "total_physical": 207093 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f4944919-d16e-11a6-1b6d-4df8b9660bc9", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000005-u", + "created": 1600780456000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3e70ce39-f337-f654-ada3-905dab8dec92", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000006", + "created": 1600780456000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 49759744, + "unique": 12914879, + "snapshots": 0, + "data_reduction": 3.9, + "total_physical": 12914879 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "db1af58b-3870-24ac-93ad-91fbd713b5ad", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000006-u", + "created": 1601088196000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3e4e9b85-3f83-5cc7-c72e-44114127fd83", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000007", + "created": 1600780456000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 292676096, + "unique": 120084255, + "snapshots": 0, + "data_reduction": 2.4, + "total_physical": 120084255 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c1965268-631b-029a-8407-ff38643ebe6c", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000008", + "created": 1600780868000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 11328000, + "unique": 4984775, + "snapshots": 0, + "data_reduction": 2.3, + "total_physical": 4984775 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5ef08aff-cbd7-7862-bd92-67ab4e15069c", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000008-u", + "created": 1600910134000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "28ae2f6f-e5b0-2d0e-155d-b09443a03740", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000009", + "created": 1600780869000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 274936832, + "unique": 120474772, + "snapshots": 0, + "data_reduction": 2.3, + "total_physical": 120474772 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "08a23c07-8630-f415-8448-676490c8d8eb", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000010", + "created": 1600780869000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 17309696, + "unique": 9291120, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 9291120 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "54e9c3cc-ba2b-9cfa-7dc3-d246677e17c9", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000010-u", + "created": 1600910134000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5d4350c5-6590-9533-8bfc-593b64b6dbdf", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000011", + "created": 1600910134000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 225951232, + "unique": 107885127, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 107885127 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "7c54a2f4-baf1-f1f0-7fb2-95f3f2832d74", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000012", + "created": 1600910134000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 94884352, + "unique": 53392457, + "snapshots": 0, + "data_reduction": 1.8, + "total_physical": 53392457 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f760e11c-f00a-05f3-e8d7-7cf75b41c520", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000012-u", + "created": 1601088196000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "da5cee4e-ffa4-413b-b6e9-94cb279df1e0", + "provisioned": 1048576 + }, + { + "name": "k8s185_pso6-pso-db_0000000013", + "created": 1601088197000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 274234880, + "unique": 138922801, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 138922801 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "2c24f1e8-d3f4-1e6a-152b-b916631620c8", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pso-db_0000000014", + "created": 1601088197000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 219857408, + "unique": 119562212, + "snapshots": 0, + "data_reduction": 1.8, + "total_physical": 119562212 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "2aa40beb-a9f7-bea0-a898-b2c0c5694016", + "provisioned": 34359738368 + }, + { + "name": "k8s185_pso6-pvc-080d61be-09b7-4cd8-9b2b-fb5d6fcee234", + "created": 1600780914000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3072, + "unique": 1608, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 1608 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c00f5df7-cb17-0f2c-8a77-0b0d1d23225b", + "provisioned": 1099511627776 + }, + { + "name": "k8s185_pso6-pvc-1bfb9d38-53db-4e48-bc12-280367bccecd", + "created": 1600780914000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 25001472, + "unique": 19420435, + "snapshots": 0, + "data_reduction": 1.3, + "total_physical": 19420435 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1a854c47-1321-e966-54f2-92430b57d488", + "provisioned": 10995116277760 + }, + { + "name": "k8s185_pso6-pvc-cf502caf-ada6-4586-9dc7-beb5119c91c3", + "created": 1600780914000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 24997376, + "unique": 19419245, + "snapshots": 0, + "data_reduction": 1.3, + "total_physical": 19419245 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ed25eeae-9587-a4a0-e1cd-fc8d2e997de9", + "provisioned": 10995116277760 + }, + { + "name": "k8s185_pso6-pvc-f0838de9-d6e0-4f79-810e-3eae34d7833d", + "created": 1600780914000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 25088, + "unique": 22831, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 22831 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ccd53ab1-898a-3390-f4c7-cc727b794abd", + "provisioned": 53687091200 + }, + { + "name": "k8s185_pso6-pvc-fcb61f93-a8be-4a06-9bec-29012e0c94b1", + "created": 1600947121000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 6522368, + "unique": 5631873, + "snapshots": 0, + "data_reduction": 1.2, + "total_physical": 5631873 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "9fd8b63c-afff-d36a-dde7-4b4cd411e8f1", + "provisioned": 10995116277760 + }, + { + "name": "kimo-pvc-71b7ad81-c4ae-40c5-a7b1-a40a4880d186", + "created": 1600407455000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "20dcb5de-a983-ec02-90c4-61a1b523fe96", + "provisioned": 10737418240 + }, + { + "name": "KVM-test-datastores", + "created": 1590423087000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 8099241984, + "unique": 4950834029, + "snapshots": 0, + "data_reduction": 1.6, + "total_physical": 4950834029 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "4d7d57f8-a20e-9dc9-5d3c-d60b851ac7d5", + "provisioned": 1099511627776 + }, + { + "name": "l3-footprint", + "created": 1675493859000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 6892032, + "unique": 2456464, + "snapshots": 0, + "data_reduction": 2.8, + "total_physical": 2456464 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "753f59df-2cfd-2c1c-34a1-b9758a6a02d7", + "provisioned": 1099511627776 + }, + { + "name": "l3-mos", + "created": 1675493874000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 17272328192, + "unique": 3661075890, + "snapshots": 0, + "data_reduction": 4.7, + "total_physical": 3661075890 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "aa6ae143-2c11-1482-278a-6a8b2ac1097c", + "provisioned": 1099511627776 + }, + { + "name": "l3-quicklook", + "created": 1675493897000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 159549952, + "unique": 59781633, + "snapshots": 0, + "data_reduction": 2.7, + "total_physical": 59781633 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c5908cf9-e0d4-ddea-27f9-17cc8f307a95", + "provisioned": 1099511627776 + }, + { + "name": "l3-rect", + "created": 1675493914000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 32382464, + "unique": 13679863, + "snapshots": 0, + "data_reduction": 2.4, + "total_physical": 13679863 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "d40bf19c-3949-70f3-f6a5-0083969ba775", + "provisioned": 1099511627776 + }, + { + "name": "lee-offload", + "created": 1680756299000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 883922335232, + "unique": 883056600409, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 883056600409 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "8e5b23b3-4a7b-f10a-76b6-85454e9e92a2", + "provisioned": 10995116277760 + }, + { + "name": "lee-veeam-v12-smb", + "created": 1676739123000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1ecd72da-d7ce-0694-09a0-fa21c65acaa3", + "provisioned": 5497558138880 + }, + { + "name": "lee-vm-repl-test", + "created": 1681881304000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 4096, + "unique": 1584, + "snapshots": 54314925574, + "data_reduction": 2.6, + "total_physical": 54314927158 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "333c91b3-4d36-b19f-37ec-dd6d861b1f4d", + "provisioned": null + }, + { + "name": "lee-vm-repl-test-rw-copy", + "created": 1682432239000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 18247520768, + "unique": 9225896392, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 9225896392 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "4e9e52b3-cf1f-d018-080b-b802a9866b5f", + "provisioned": 10995116277760 + }, + { + "name": "list-test-target04", + "created": 1675344445000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1024001024, + "unique": 1051997811, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 1051997811 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1fa8a970-1e4d-b1f9-e383-57488f365bd3", + "provisioned": 1099511627776 + }, + { + "name": "llll", + "created": 1656064488000, + "fast_remove_directory_enabled": true, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0b3b8c71-bec2-18fa-2636-d81ffe763c39", + "provisioned": 11258999068426240 + }, + { + "name": "LSEG", + "created": 1633001615000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "independent" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 4096, + "unique": 1218, + "snapshots": 0, + "data_reduction": 3.4, + "total_physical": 1218 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "86cf1a8b-c3fc-38bb-f433-45d609356dca", + "provisioned": null + }, + { + "name": "LSEG2", + "created": 1633091370000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 2048, + "unique": 436, + "snapshots": 0, + "data_reduction": 4.7, + "total_physical": 436 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5f352eaf-8410-e415-c6b5-4d66c629b40f", + "provisioned": null + }, + { + "name": "maksecondaryfb", + "created": 1587649151000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "9552eb3f-5b83-ab0d-eb30-1b0b43d9e9f9", + "provisioned": 21474836480 + }, + { + "name": "matzes_k8s-pso-db_0000000000", + "created": 1605787009000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 241274880, + "unique": 89101549, + "snapshots": 0, + "data_reduction": 2.7, + "total_physical": 89101549 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "13e2889a-7d9a-6855-cddb-7f73547c774a", + "provisioned": 34359738368 + }, + { + "name": "matzes_k8s-pso-db_0000000001", + "created": 1605787009000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 217259520, + "unique": 68745833, + "snapshots": 0, + "data_reduction": 3.2, + "total_physical": 68745833 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e91ecd06-d559-3e6c-b290-32c76097412b", + "provisioned": 34359738368 + }, + { + "name": "matzes_k8s-pso-db_0000000002", + "created": 1605787009000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 242641408, + "unique": 88847443, + "snapshots": 0, + "data_reduction": 2.7, + "total_physical": 88847443 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "468775b4-4eb8-0831-038a-bc245043f3b3", + "provisioned": 34359738368 + }, + { + "name": "matzes_k8s-pso-db_0000000003", + "created": 1605787184000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 202964992, + "unique": 64341097, + "snapshots": 0, + "data_reduction": 3.2, + "total_physical": 64341097 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "de597eeb-1a50-4abe-8285-4f63036d2c02", + "provisioned": 34359738368 + }, + { + "name": "matzes_k8s-pso-db_0000000004", + "created": 1605787184000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1751040, + "unique": 678189, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 678189 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "a3429e34-24cf-fab3-355a-6de39c7b0673", + "provisioned": 34359738368 + }, + { + "name": "matzes_k8s-pso-db_0000000004-u", + "created": 1612193136000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "fa7684ec-1eda-2394-50dc-b82880c756b3", + "provisioned": 1048576 + }, + { + "name": "matzes_k8s-pso-db_0000000005", + "created": 1612193136000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 225805312, + "unique": 81920216, + "snapshots": 0, + "data_reduction": 2.8, + "total_physical": 81920216 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "754ac746-0667-eeca-76df-e402ac25fbaf", + "provisioned": 34359738368 + }, + { + "name": "metadata-test-target", + "created": 1666192328000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 6442450944, + "unique": 6455511229, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 6455511229 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "11759ec7-fa79-8aa8-e183-b7218e51d2c6", + "provisioned": 107374182400 + }, + { + "name": "million-target", + "created": 1674552528000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1024001024, + "unique": 1051996734, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 1051996734 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ffe54462-ddbc-ea04-afbe-454f7fb58e92", + "provisioned": 107374182400 + }, + { + "name": "mm-fs1", + "created": 1592233965000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 35761857536, + "unique": 35679874778, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 35679874778 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3d9ad0f9-ed10-f0c3-0793-55c51e7fc18e", + "provisioned": null + }, + { + "name": "mm-k8s-nfs", + "created": 1606854570000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3a3b30e4-f95d-261f-833b-4314a48d2dec", + "provisioned": 107374182400 + }, + { + "name": "mm-test", + "created": 1592317109000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 5120, + "unique": 1125, + "snapshots": 0, + "data_reduction": 4.6, + "total_physical": 1125 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "8995bb1a-047a-5572-b9b8-1092b9fe5d92", + "provisioned": null + }, + { + "name": "mm_proxy-vol", + "created": 1647523872000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 12171268608, + "unique": 12159028254, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 12159028254 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "62d8854b-ff87-8566-cdaf-1a58a3467270", + "provisioned": null + }, + { + "name": "new-source", + "created": 1670242658000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 24683188224, + "unique": 24733259853, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 24733259853 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "bac40065-c98e-be0f-615c-a732d2462e5d", + "provisioned": 107374182400 + }, + { + "name": "nfs-SM", + "created": 1646639746000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "8c57e05a-03c9-9df1-f958-20df1899d2f7", + "provisioned": 1099511627776 + }, + { + "name": "nfs-test", + "created": 1660668594000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "independent" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1024, + "unique": 289, + "snapshots": 0, + "data_reduction": 3.5, + "total_physical": 289 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "fabd15c1-a304-a097-23e4-b31c950688ae", + "provisioned": 536870912000 + }, + { + "name": "NMIS", + "created": 1618925213000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "32f23355-4f08-00cb-bfe8-0a5de63a021b", + "provisioned": null + }, + { + "name": "not-same-user-target", + "created": 1670236205000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 24683188224, + "unique": 24733301212, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 24733301212 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "788a4f23-15fe-fdee-f9ae-76f332fea22d", + "provisioned": 107374182400 + }, + { + "name": "okd4_dev-pso-db_0000000000", + "created": 1608650748000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 736694784, + "unique": 419677896, + "snapshots": 0, + "data_reduction": 1.8, + "total_physical": 419677896 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e7374e1c-0d96-e469-5ac7-fe15985bd696", + "provisioned": 34359738368 + }, + { + "name": "okd4_dev-pso-db_0000000001", + "created": 1608650748000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 718016512, + "unique": 388336794, + "snapshots": 0, + "data_reduction": 1.8, + "total_physical": 388336794 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "4070deba-28b6-c850-63b0-f86dfc0671ed", + "provisioned": 34359738368 + }, + { + "name": "olly_builders", + "created": 1588770043000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0d1844e7-c7cf-39ea-2bf4-06db436042ce", + "provisioned": 1073741824 + }, + { + "name": "onurfs", + "created": 1659978398000, + "fast_remove_directory_enabled": true, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 269176832, + "unique": 133356838, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 133356838 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "2a597d20-bce2-4ac8-34c2-f0ff3f4aa12c", + "provisioned": 10995116277760 + }, + { + "name": "ora-test", + "created": 1660129747000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e8d16880-fe19-6224-a443-0f729f298e32", + "provisioned": 107374182400 + }, + { + "name": "ORACLE", + "created": 1660054701000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5410b588-0858-08a9-b8d2-26490dab1915", + "provisioned": 107374182400 + }, + { + "name": "oracle_bigdata", + "created": 1587030222000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.6.0/24(rw,no_root_squash) 192.168.7.0/24(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 272621568, + "unique": 63565399, + "snapshots": 0, + "data_reduction": 4.3, + "total_physical": 63565399 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f4d41ae3-0591-355b-5fce-d0869c5c1f77", + "provisioned": 107374182400 + }, + { + "name": "oracle_cdb1", + "created": 1584702721000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.6.0/24(rw,no_root_squash) 192.168.7.0/24(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 59963803136, + "unique": 19230683950, + "snapshots": 0, + "data_reduction": 3.1, + "total_physical": 19230683950 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c58d5eb8-a977-9022-3f9e-c94cccbb81a4", + "provisioned": 536870912000 + }, + { + "name": "oracle_labs_full", + "created": 1584544274000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.6.0/24(rw,no_root_squash) 192.168.7.0/24(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 145672168960, + "unique": 44314222681, + "snapshots": 30041313943, + "data_reduction": 3.3, + "total_physical": 74355536624 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "2f060ca8-77b2-5086-8edb-93cd41141b05", + "provisioned": 1099511627776 + }, + { + "name": "oracle_labs_incr", + "created": 1584543558000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.6.0/24(rw,no_root_squash) 192.168.7.0/24(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 171748999168, + "unique": 53639523105, + "snapshots": 0, + "data_reduction": 3.2, + "total_physical": 53639523105 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "8f673371-c0c2-9cc4-9f64-05c48a8d7205", + "provisioned": 1099511627776 + }, + { + "name": "oracle_scripts", + "created": 1584527581000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.6.0/24(rw,no_root_squash) 192.168.7.0/24(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 23706872320, + "unique": 23395653026, + "snapshots": 30658, + "data_reduction": 1, + "total_physical": 23395683684 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "563f9031-8ec8-3830-5767-eaa9fb7392af", + "provisioned": 858993459200 + }, + { + "name": "perf-tier", + "created": 1647272627000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 8551484416, + "unique": 7837069047, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 7837069047 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0f4f127d-dd78-bc92-7f60-ba409c7850ca", + "provisioned": 1099511627776 + }, + { + "name": "post-test", + "created": 1604054665000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e23b955a-c57b-3a7b-253a-37dc8e52bad0", + "provisioned": 54975581388800 + }, + { + "name": "pso_cluster-pso-db_0000000000", + "created": 1602596979000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "d69994a8-6dc0-6a69-19ab-d61c618d60b2", + "provisioned": 34359738368 + }, + { + "name": "pso_cluster-pso-db_0000000001", + "created": 1602596979000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1ee6ea7b-2067-a442-74db-6ba6b437ca5f", + "provisioned": 34359738368 + }, + { + "name": "pure-demos-pvc-66937f6c-aa6e-4304-b291-ea2ffe38a352", + "created": 1597221348000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "4fb59a44-c5b6-c16a-8090-802dbc029969", + "provisioned": 10737418240 + }, + { + "name": "pure-demos-pvc-7e9f6b2e-0746-4590-917e-fb7347de8684", + "created": 1597221348000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "003787b7-d333-f441-7791-f172109e7843", + "provisioned": 53687091200 + }, + { + "name": "pure-demos-pvc-bb6a0876-9788-42c0-9c68-d2d9f202231a", + "created": 1596030710000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "7a0e02a6-9888-153d-4c42-37daf04679d8", + "provisioned": 5368709120 + }, + { + "name": "pure-demos-pvc-ed688ea3-1a14-47d4-a630-b0245604dc88", + "created": 1596030710000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "fcd87d43-b45c-b513-479a-d247efbb8610", + "provisioned": 5368709120 + }, + { + "name": "pure-demos-pvc-fffcf67b-dce2-4189-95e4-11b9f40c4fb0", + "created": 1596614575000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 37973872640, + "unique": 12764080036, + "snapshots": 0, + "data_reduction": 3, + "total_physical": 12764080036 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "983f18ce-b2a7-5fbc-543a-17454d538501", + "provisioned": 32212254720 + }, + { + "name": "px_0d2b6d52-pvc-17efc69d-e2c5-4f8e-bdee-0a24eefd8a09", + "created": 1676010898000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "809bdbfc-c4dc-1251-0f76-8c2e1d53b49c", + "provisioned": 1073741824 + }, + { + "name": "px_0d2b6d52-pvc-d5951608-67a0-4410-88b0-06cd248bb79e", + "created": 1676010874000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "57096c28-83bd-e825-5832-7a75af17aab9", + "provisioned": 10737418240 + }, + { + "name": "px_29b55864-pvc-07abc0d5-0196-42f8-8b7a-fd37ccb150e8", + "created": 1663266405000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "b178db50-401a-5d5e-1474-80dda7a3cb3c", + "provisioned": 1073741824 + }, + { + "name": "px_29b55864-pvc-ffab6313-6269-4283-b257-661320a4c136", + "created": 1663265764000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "09d5c98a-8fd1-7759-a7b6-060d7acc0f10", + "provisioned": 10737418240 + }, + { + "name": "px_2a56052f-pvc-59a32574-184e-41d0-8ab3-1aa131b57fc5", + "created": 1635408590000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "34d07d7c-02b6-3053-44d7-afa9f207ef7e", + "provisioned": 23622320128 + }, + { + "name": "px_2a56052f-pvc-edc2eb97-7ff2-4228-8eac-b8fe558c4998", + "created": 1635413782000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "11e6a696-7225-dfe7-d984-dd2269e2526b", + "provisioned": 47244640256 + }, + { + "name": "px_4b703006-pvc-d3f51148-a263-4bd5-80a8-9f2dc665f28a", + "created": 1635162434000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "32b2e90e-0cd5-fb2c-4624-91033ee6143b", + "provisioned": 10737418240 + }, + { + "name": "px_7d20a17d-pvc-d0cf1d1b-7cdf-4585-a1f0-93bfd187cf6b", + "created": 1634741621000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "43f68b80-4781-d277-1ed9-e34aa49b837e", + "provisioned": 10737418240 + }, + { + "name": "px_ccb83e6a-pvc-3659b674-25d9-438d-ac32-f7f898d88af5", + "created": 1631793167000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5c73894b-b7fd-7c33-7227-cd641e8a6888", + "provisioned": 10737418240 + }, + { + "name": "px_edf5e075-pvc-e1ff7671-373c-4009-8486-2ae362f93494", + "created": 1634761485000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0a7a7738-fab8-9fec-1162-24ab1fe86e2e", + "provisioned": 10737418240 + }, + { + "name": "pxbackup-nfs-target", + "created": 1670395833000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "", + "export_policy": { + "name": "pxbackup-nfs-target-policy", + "id": "0021b4ff-f083-2849-e8c9-bbfb8a9d3cde", + "resource_type": "nfs-export-policies" + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 5777993216, + "unique": 5789091284, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 5789091284 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "98a5f798-a6b8-f5ea-6bd5-a7aba433af8b", + "provisioned": 107374182400 + }, + { + "name": "rapidfiles-testing", + "created": 1657339890000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 2194830336, + "unique": 2254707476, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 2254707476 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "bde2ebbf-009f-91e0-4a28-6a28910a83e9", + "provisioned": 1099511627776 + }, + { + "name": "rek8s-pvc-08df44e2-5e7b-44ff-bd30-6ce1ef7d3f80", + "created": 1595922828000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c3c62e0d-b5e4-5b3f-6c17-173ed46a33e1", + "provisioned": 10995116277760 + }, + { + "name": "rek8s-pvc-23431a8d-f7d4-4008-9ffb-16625638483d", + "created": 1595922887000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "2c31ec62-d2c0-7b68-ba9e-0511cd811945", + "provisioned": 10737418240 + }, + { + "name": "rek8s-pvc-6a10a701-d218-48ea-ac62-14f8547c6030", + "created": 1595922828000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "6860bb47-7f08-5bb9-4db6-8e0abd9da294", + "provisioned": 10995116277760 + }, + { + "name": "rek8s-pvc-bc369d72-80d2-4439-9b13-464302c07969", + "created": 1595922828000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "45be5221-73ee-9c62-253a-b2fc4a35f70b", + "provisioned": 10995116277760 + }, + { + "name": "rek8s-pvc-feee74a2-f2d0-48a0-a43c-47935baf916f", + "created": 1595922828000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0de6de9c-b160-2a15-9427-b54c092b4e43", + "provisioned": 10995116277760 + }, + { + "name": "repl-test", + "created": 1672835190000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c2746aa6-2d35-14c2-c1b9-be77cd197b20", + "provisioned": null + }, + { + "name": "rl-test-target", + "created": 1669876600000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "dd1bc27d-3018-be44-4da5-12c631af80c3", + "provisioned": 1099511627776 + }, + { + "name": "rwmfb-volume", + "created": 1588786491000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 512, + "unique": 114, + "snapshots": 0, + "data_reduction": 4.5, + "total_physical": 114 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "907e91d5-3df0-d483-151d-39e48a1643c8", + "provisioned": 4294967296 + }, + { + "name": "rwofb-volume", + "created": 1588786669000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 512, + "unique": 114, + "snapshots": 0, + "data_reduction": 4.5, + "total_physical": 114 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e79c4daa-41ec-c3e1-c5fe-b8cc4cec4e9b", + "provisioned": 4294967296 + }, + { + "name": "RWS_NFS_TEST", + "created": 1588231030000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "10.20.225.2(rw) 2620::/16(no_root_squash) *(rw,no_root_squash) *(rw,root_squash,fileid_32bit) 10.20.30.40(root_squash,anonuid=7777,anongid=8888)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "a7ed6e80-1b69-07e7-edaf-ec7eeb80c458", + "provisioned": 52428800 + }, + { + "name": "safemode-veeam", + "created": 1646300867000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 101579499520, + "unique": 97628978311, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 97628978311 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "2ed3f07e-00d9-53cc-a171-4d02424f3fff", + "provisioned": 1099511627776 + }, + { + "name": "safemode-veeam-1", + "created": 1647170972000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 179888310784, + "unique": 175132289492, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 175132289492 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5dcc9715-141f-c6e6-10a1-9efa6aa32024", + "provisioned": 1099511627776 + }, + { + "name": "scratch", + "created": 1593965135000, + "fast_remove_directory_enabled": true, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 354219464192, + "unique": 151143540936, + "snapshots": 0, + "data_reduction": 2.3, + "total_physical": 151143540936 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "d018a11e-f621-ebc5-330f-914a3d1505e1", + "provisioned": 1099511627776 + }, + { + "name": "SEDemo", + "created": 1585653297000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 124, + "snapshots": 0, + "data_reduction": 12.4, + "total_physical": 124 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "befb1c61-6c2f-899a-cc5a-98d50452184b", + "provisioned": 524288000 + }, + { + "name": "semih-smb-test", + "created": 1592571287000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "a47dfa6a-ff45-09d5-181f-c8dd955ca35f", + "provisioned": 10737418240 + }, + { + "name": "small-files", + "created": 1663942645000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1024001024, + "unique": 1051998244, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 1051998244 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f4ac0b1f-e13d-be39-6fe2-238f48b86976", + "provisioned": 107374182400 + }, + { + "name": "smb-test", + "created": 1670343681000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3a7ab35d-043d-195f-1d6d-d506deeac4ea", + "provisioned": 1099511627776 + }, + { + "name": "snaptonfs", + "created": 1660029797000, + "fast_remove_directory_enabled": true, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 695000064, + "unique": 8300885, + "snapshots": 0, + "data_reduction": 83.7, + "total_physical": 8300885 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e2ca089d-fff6-b83e-939f-1d57b31ef927", + "provisioned": 1099511627776 + }, + { + "name": "SQL-single-test", + "created": 1667625296000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 454737097216, + "unique": 173327939966, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 173327939966 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "240166b7-7bf3-1ce7-6a48-cb21baec2b44", + "provisioned": 1099511627776 + }, + { + "name": "SQL_backup_SMB01", + "created": 1666099519000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842351104, + "unique": 21895040954, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 21895040954 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "d7e9fce6-42f4-60a6-668e-11b692553bfb", + "provisioned": 1099511627776 + }, + { + "name": "SQL_Backup_SMB02", + "created": 1666099541000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842284544, + "unique": 21277546032, + "snapshots": 0, + "data_reduction": 2.7, + "total_physical": 21277546032 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1b6c599f-0dde-ad84-ae9d-da5aacb14d34", + "provisioned": 1099511627776 + }, + { + "name": "SQL_Backup_SMB03", + "created": 1666099558000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842284544, + "unique": 21807770336, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 21807770336 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c83ee31c-ec9a-d02d-4fa5-2e11538e826b", + "provisioned": 1099511627776 + }, + { + "name": "SQL_Backup_SMB04", + "created": 1666099578000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842284544, + "unique": 21843694943, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 21843694943 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "9b0e1030-09e7-827b-cc47-e87b0ef6f575", + "provisioned": 1099511627776 + }, + { + "name": "SQL_Backup_SMB05", + "created": 1666099600000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842284544, + "unique": 21511405348, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 21511405348 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "62e484b2-0c45-4070-f5be-93c8869ff2de", + "provisioned": 1099511627776 + }, + { + "name": "SQL_Backup_SMB06", + "created": 1666099626000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842284544, + "unique": 21762908504, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 21762908504 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e1390b5a-21e4-0ddc-2694-63aebe0b53c5", + "provisioned": 1099511627776 + }, + { + "name": "SQL_Backup_SMB07", + "created": 1666099645000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842284544, + "unique": 21788487040, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 21788487040 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "add11d05-23e7-a5aa-dd13-1a51e45b4318", + "provisioned": 1099511627776 + }, + { + "name": "SQL_Backup_SMB08", + "created": 1666099662000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 56842284544, + "unique": 21448900659, + "snapshots": 0, + "data_reduction": 2.7, + "total_physical": 21448900659 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0e9ec436-d066-55c3-e3b4-bded0e691336", + "provisioned": 1099511627776 + }, + { + "name": "storcycle-db-backup", + "created": 1663858014000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 672854528, + "unique": 459001280, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 459001280 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f56b7f32-f1ec-f3b5-717c-dc4eaec758ff", + "provisioned": 53687091200 + }, + { + "name": "storcycle-smb-s3-migration-source", + "created": 1673334145000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "19942207-e927-b323-893c-fb3d25d2d62c", + "provisioned": 1099511627776 + }, + { + "name": "storcycle-smb-s3-repl", + "created": 1671433833000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 189063371776, + "unique": 83424258943, + "snapshots": 0, + "data_reduction": 2.3, + "total_physical": 83424258943 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ad63b2d2-5019-4719-e0e2-56098e8682fa", + "provisioned": 536870912000 + }, + { + "name": "submarine", + "created": 1581942828000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "6c3c1a48-ed36-1161-68dc-29870920c2b3", + "provisioned": 1099511627776 + }, + { + "name": "test-data", + "created": 1662625448000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "b933d586-9af9-578f-e8e7-c580090c8e96", + "provisioned": 1099511627776 + }, + { + "name": "test-files", + "created": 1669874177000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "223f2255-8461-5e4f-0e7d-aab18d674389", + "provisioned": 1099511627776 + }, + { + "name": "test-proxy", + "created": 1635337139000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3b5996d9-0b2a-02b6-c20e-e02404142238", + "provisioned": 53687091200 + }, + { + "name": "test-usf", + "created": 1604911333000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f77d9582-7d5a-6401-f86b-bc66b59035fd", + "provisioned": null + }, + { + "name": "test4", + "created": 1681912754000, + "fast_remove_directory_enabled": true, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c25d3010-2d05-9ce1-de5b-c4c04743803b", + "provisioned": 10737418240 + }, + { + "name": "test_deletethis", + "created": 1646229082000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "608f9c7c-63d8-fdf5-d91b-6f99ec7a261c", + "provisioned": null + }, + { + "name": "test_filesystem01", + "created": 1583312028000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "10.225.113.63/32(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 10485760, + "default_group_quota": 53687091200, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "22270812-10af-60cd-4fe1-c94c3de5b6e3", + "provisioned": 53687091200 + }, + { + "name": "testmak", + "created": 1603008348000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "b41e4a4a-b522-788d-b56d-c36afbbada58", + "provisioned": 10737418240 + }, + { + "name": "TU1", + "created": 1594128103000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "demoted", + "requested_promotion_state": "demoted", + "writable": false, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 512, + "unique": 48, + "snapshots": 0, + "data_reduction": 10.7, + "total_physical": 48 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "73f986c1-e367-0653-2443-16b621a15998", + "provisioned": null + }, + { + "name": "veeam", + "created": 1582123782000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.237(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 22748160, + "unique": 22787355, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 22787355 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "203ce66a-f43e-87c6-4a01-13ac5c271910", + "provisioned": 10995116277760 + }, + { + "name": "veeam-config-backup-repo", + "created": 1668422155000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "2f91f39d-4cf7-69d6-d142-b15cf2418c70", + "provisioned": 1099511627776 + }, + { + "name": "veeam-nas", + "created": 1668922281000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1321464832, + "unique": 392404426, + "snapshots": 0, + "data_reduction": 3.4, + "total_physical": 392404426 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "722b3287-3569-2352-963b-e3fb244c3b75", + "provisioned": 1099511627776 + }, + { + "name": "veeam-performance", + "created": 1582123826000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.237(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 713636598272, + "unique": 712507938490, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 712507938490 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5159317a-8cc0-1fe9-7dc9-37b6caff3acc", + "provisioned": 10995116277760 + }, + { + "name": "veeam-repo-nfs01", + "created": 1668615521000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "bbbe6685-4c74-29df-4e8c-fd7fae492002", + "provisioned": 1099511627776 + }, + { + "name": "veeam-repo-smb01", + "created": 1667897888000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0a556111-ba23-4deb-9d48-3719a3942791", + "provisioned": 1099511627776 + }, + { + "name": "veeam-repo1", + "created": 1585833283000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 422661632, + "unique": 413834216, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 413834216 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1bacef63-6b6f-c0dd-a57f-0a78e1cc1d6e", + "provisioned": 1099511627776 + }, + { + "name": "veeam-repo2", + "created": 1585833725000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "6ab0a5fd-7c97-5beb-04fe-55f5ff6dbe0c", + "provisioned": 1099511627776 + }, + { + "name": "veeam-SM", + "created": 1647246554000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 9388915712, + "unique": 9226127169, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 9226127169 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "8fc1317b-cd5e-b032-968f-c9ec475dcbda", + "provisioned": 1099511627776 + }, + { + "name": "veeam-smb", + "created": 1647062500000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 37863462912, + "unique": 36066206933, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 36066206933 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "9c7f8b96-2b91-9e84-822a-8cfc3dbf0a91", + "provisioned": 10995116277760 + }, + { + "name": "veeam-smb-repo", + "created": 1676380468000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": true + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3b36d77b-66ca-3d17-8d07-2f14a2230799", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data1", + "created": 1673155250000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ac85b254-7663-f438-6614-abfd26359170", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data2", + "created": 1673068302000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 206, + "snapshots": 0, + "data_reduction": 7.5, + "total_physical": 206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ac3b6b8c-ddb1-46f6-0cbb-f4ad133be583", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data3", + "created": 1673068320000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 206, + "snapshots": 0, + "data_reduction": 7.5, + "total_physical": 206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c76ac682-f9d1-85ab-ae59-e844c7aa0f73", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data4", + "created": 1673068335000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 206, + "snapshots": 0, + "data_reduction": 7.5, + "total_physical": 206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "86d40ae6-4a8c-29d2-c11f-5e99217de979", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data5", + "created": 1673068350000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 205, + "snapshots": 0, + "data_reduction": 7.5, + "total_physical": 205 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "65b85997-fa2a-b793-a73b-0449a3b9d1a5", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data6", + "created": 1673068366000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 206, + "snapshots": 0, + "data_reduction": 7.5, + "total_physical": 206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3391e8a3-dff9-bb4e-20f1-3709e364fa62", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data7", + "created": 1673068379000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 206, + "snapshots": 0, + "data_reduction": 7.5, + "total_physical": 206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "cf3fc498-73bb-264d-32c7-8421f8a5375d", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-data8", + "created": 1673068393000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1536, + "unique": 206, + "snapshots": 0, + "data_reduction": 7.5, + "total_physical": 206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "05036428-bdd6-744f-0c47-9af3e21159a4", + "provisioned": 1099511627776 + }, + { + "name": "veritas-msdp-meta", + "created": 1673155346000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "86658c60-7837-4910-a3b3-71a221a918d4", + "provisioned": 1099511627776 + }, + { + "name": "vertica", + "created": 1582120486000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 66587527168, + "unique": 39372919859, + "snapshots": 0, + "data_reduction": 1.7, + "total_physical": 39372919859 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ab3792aa-e077-7887-32e1-b89eac6122f6", + "provisioned": 322122547200 + }, + { + "name": "vertica-datagen", + "created": 1582121321000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.220(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 343238200320, + "unique": 343497867445, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 343497867445 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "34acbb12-bf49-f888-b7a3-ce3d9dde334d", + "provisioned": 429496729600 + }, + { + "name": "z-cdh-hdfs", + "created": 1582276106000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.4.220(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3133581384192, + "unique": 1541543644971, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 1541543644971 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "accb74f0-2de0-070a-3bdb-aa077a43d4bb", + "provisioned": 4398046511104 + }, + { + "name": "z-da-fs-backup", + "created": 1605084799000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1fda78e6-4f51-e234-f3fb-cf44b1551f44", + "provisioned": 1099511627776 + }, + { + "name": "z-da-fs-datasets", + "created": 1605084809000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "17154517-966f-ef60-c03c-65e086d82e70", + "provisioned": 1099511627776 + }, + { + "name": "z-da-fs-other", + "created": 1605084820000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": false, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "477a74b9-8e9a-bdf0-4e27-ff1f9f879122", + "provisioned": 536870912000 + }, + { + "name": "z-da-pxproxy", + "created": 1610356386000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "nfs" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 512, + "unique": 122, + "snapshots": 0, + "data_reduction": 4.2, + "total_physical": 122 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "01c34e98-5468-5b57-467d-12b9e7150f7b", + "provisioned": 2199023255552 + }, + { + "name": "z-fbhost01_home", + "created": 1582286020000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 323446272, + "unique": 255340584, + "snapshots": 0, + "data_reduction": 1.3, + "total_physical": 255340584 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "eca2d264-af09-9237-15d7-d228c215eaeb", + "provisioned": 419430400 + }, + { + "name": "z-fbhost6_home_var", + "created": 1582286185000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 132838951424, + "unique": 15764901005, + "snapshots": 0, + "data_reduction": 8.4, + "total_physical": 15764901005 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "ba4bcba0-61e0-41c6-b034-3cdd94e4319d", + "provisioned": 214748364800 + }, + { + "name": "z-fbhosts_datalake", + "created": 1582281361000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3327394784256, + "unique": 1794484653741, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 1794484653741 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e40a0fdd-bfa3-ec40-e2d4-6f73fa79d372", + "provisioned": 4398046511104 + }, + { + "name": "z-fbhosts_docker_root", + "created": 1582288203000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3648227639808, + "unique": 840448793346, + "snapshots": 0, + "data_reduction": 4.3, + "total_physical": 840448793346 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "237a9c40-dd75-bece-7aeb-3343f2dc65fc", + "provisioned": 4398046511104 + }, + { + "name": "z-fbhosts_kernel_compile", + "created": 1582287907000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 2530184704, + "unique": 1186349027, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 1186349027 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "d44b087b-3a92-06c3-26f2-0e5c0bc6700f", + "provisioned": 3221225472 + }, + { + "name": "z-jbt-vcd", + "created": 1662986681000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 7680, + "unique": 3539, + "snapshots": 2967, + "data_reduction": 2.2, + "total_physical": 6506 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "6cf43fc9-0956-2678-df18-88974c5fd173", + "provisioned": 107374182400 + }, + { + "name": "z-k8s-datahub", + "created": 1584543007000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3473784836096, + "unique": 2902687922688, + "snapshots": 0, + "data_reduction": 1.2, + "total_physical": 2902687922688 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "70a80637-144d-cda8-7228-6f580a114dab", + "provisioned": 4398046511104 + }, + { + "name": "z-offload_target", + "created": 1592901198000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": true, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 822557731840, + "unique": 817163722767, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 817163722767 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "8ffcdeee-ed84-f222-d941-6d007b2c4898", + "provisioned": 10995116277760 + }, + { + "name": "z-oracle_fio", + "created": 1660819302000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 300661503488, + "unique": 67165244759, + "snapshots": 0, + "data_reduction": 4.5, + "total_physical": 67165244759 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c60f6806-b3a2-27e7-0fa0-e64b7302b644", + "provisioned": 536870912000 + }, + { + "name": "z-oracle_orabkup", + "created": 1660907103000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.6.0/24(rw,no_root_squash) 192.168.7.0/24(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "5f5a55b0-0bc1-6551-2740-4a8db876394f", + "provisioned": 10995116277760 + }, + { + "name": "z-rac1_dbconfig", + "created": 1676973434000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 22528, + "unique": 9328, + "snapshots": 0, + "data_reduction": 2.4, + "total_physical": 9328 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "7f332688-1fac-eeb6-e179-d75542157f5f", + "provisioned": 10737418240 + }, + { + "name": "z-rac1_diag", + "created": 1676973268000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 1052015616, + "unique": 311118997, + "snapshots": 0, + "data_reduction": 3.4, + "total_physical": 311118997 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "73955f2f-6b68-f747-6362-6e35e5410e7d", + "provisioned": 107374182400 + }, + { + "name": "z-rac1_orasetup", + "created": 1676973461000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0a65bddd-1874-056f-82c6-f38aafcd38e3", + "provisioned": 10737418240 + }, + { + "name": "z-rac1_orastartup", + "created": 1676973475000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "257b5c4a-2bcf-2714-5f8c-d0542fdaf06e", + "provisioned": 10737418240 + }, + { + "name": "z-rac_orcl", + "created": 1605613725000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "192.168.4.0/24(rw,no_root_squash) 192.168.5.0/24(rw,no_root_squash) 192.168.6.0/24(rw,no_root_squash) 192.168.7.0/24(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 11037465723392, + "unique": 4183740209041, + "snapshots": 0, + "data_reduction": 2.6, + "total_physical": 4183740209041 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e92455dc-53ea-a8ed-3a89-fb6886906217", + "provisioned": 32985348833280 + }, + { + "name": "z-re-uk8s-oradata", + "created": 1590414245000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 3981370880, + "unique": 1074280118, + "snapshots": 0, + "data_reduction": 3.7, + "total_physical": 1074280118 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "7c6912ad-7f22-411a-53a9-0d2de7f22d9c", + "provisioned": 21474836480 + }, + { + "name": "z-snappydata-demo", + "created": 1585580157000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": false + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 20530445312, + "unique": 6759996279, + "snapshots": 0, + "data_reduction": 3, + "total_physical": 6759996279 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "047b3572-4074-6618-5fc8-1819515ee472", + "provisioned": 214748364800 + }, + { + "name": "zda130-pso-db_0000000000", + "created": 1604926383000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 744813056, + "unique": 351011290, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 351011290 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0d39160b-1114-6912-6914-bb7edd1c6a65", + "provisioned": 34359738368 + }, + { + "name": "zda130-pso-db_0000000001", + "created": 1604926383000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 689335296, + "unique": 408704411, + "snapshots": 0, + "data_reduction": 1.7, + "total_physical": 408704411 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3278baac-951c-e2d2-cd4d-26b12e81f369", + "provisioned": 34359738368 + }, + { + "name": "zda130-pso-db_0000000001-u", + "created": 1614848448000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "0629ff26-f9cb-aad5-fb5a-0b1ce556e598", + "provisioned": 1048576 + }, + { + "name": "zda130-pso-db_0000000002", + "created": 1604926383000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 665785856, + "unique": 384376827, + "snapshots": 0, + "data_reduction": 1.7, + "total_physical": 384376827 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "7680a870-c5c5-f2bb-f23f-e531545eaafe", + "provisioned": 34359738368 + }, + { + "name": "zda130-pso-db_0000000002-u", + "created": 1614850417000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "3b4a1047-de2a-413e-a669-7ea7a805ac70", + "provisioned": 1048576 + }, + { + "name": "zda130-pso-db_0000000003", + "created": 1604926384000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 766601728, + "unique": 399139322, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 399139322 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "64041a20-0207-b68f-04bf-9c8ade94f4da", + "provisioned": 34359738368 + }, + { + "name": "zda130-pso-db_0000000004", + "created": 1604926384000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 777264128, + "unique": 410260387, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 410260387 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "05425352-6dbc-4538-f94c-abdec63ce437", + "provisioned": 34359738368 + }, + { + "name": "zda130-pso-db_0000000005", + "created": 1614848448000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 722382336, + "unique": 382920642, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 382920642 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f80a39e4-2f98-5bd6-3ea3-3cd7972e6bf6", + "provisioned": 34359738368 + }, + { + "name": "zda130-pso-db_0000000006", + "created": 1614850417000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 719826944, + "unique": 364033249, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 364033249 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "aeb98df3-0352-9b46-ac62-09e45b349527", + "provisioned": 34359738368 + }, + { + "name": "zda130-pvc-03841c02-2989-419c-bf68-6fa194d3b4c7", + "created": 1605003229000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 9216, + "unique": 1640, + "snapshots": 0, + "data_reduction": 5.6, + "total_physical": 1640 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e48fc1b7-1eb0-0170-f90a-947ae93faa96", + "provisioned": 107374182400 + }, + { + "name": "zda130-pvc-17f4612c-f38c-416f-a90f-9fe0c960fd41", + "created": 1605003102000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 125884928, + "unique": 72462391, + "snapshots": 0, + "data_reduction": 1.7, + "total_physical": 72462391 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "848a9dcc-a1e9-a4e6-ed1b-b9b514156366", + "provisioned": 107374182400 + }, + { + "name": "zda130-pvc-1bda9d7e-7df4-4c66-afbe-26b5e4e50583", + "created": 1604946280000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 85279744, + "unique": 56462824, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 56462824 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "659d2b46-d02c-df91-7981-21206eecb9a7", + "provisioned": 107374182400 + }, + { + "name": "zda130-pvc-23582ef6-0c3a-400d-8e3e-94bb3cefb581", + "created": 1612522939000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 0, + "unique": 0, + "snapshots": 0, + "data_reduction": null, + "total_physical": 0 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1c236937-e030-81b6-0e2f-cdcb82c4aed8", + "provisioned": 8589934592 + }, + { + "name": "zda130-pvc-5483213e-bfde-44e0-b236-210113d2e257", + "created": 1605003295000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 420681728, + "unique": 332150309, + "snapshots": 0, + "data_reduction": 1.3, + "total_physical": 332150309 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c4f6eed8-4c8e-fa0c-63ba-3f4122990843", + "provisioned": 107374182400 + }, + { + "name": "zda130-pvc-6a4bd808-227c-4d3b-aaaa-888abc7b93f8", + "created": 1611646459000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 17920, + "unique": 15904, + "snapshots": 0, + "data_reduction": 1.1, + "total_physical": 15904 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "4053b437-0692-df03-07ea-4ae196564a7f", + "provisioned": 5368709120 + }, + { + "name": "zda130-pvc-80be92a0-54b9-456d-84d5-386c1a7497aa", + "created": 1611669502000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 11530752, + "unique": 11355852, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 11355852 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "08e6c41b-9fb0-c8cb-ce4e-c7685a756a5d", + "provisioned": 53687091200 + }, + { + "name": "zda130-pvc-81f9bd82-49b4-4e83-81ca-a7824dcabb95", + "created": 1605792557000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 11251712, + "unique": 11175149, + "snapshots": 0, + "data_reduction": 1, + "total_physical": 11175149 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "e476a602-fcd3-74f8-e63e-524a287b6f99", + "provisioned": 53687091200 + }, + { + "name": "zda130-pvc-ddb8cd4a-dc47-4444-a6ca-1527229c359f", + "created": 1604946280000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 151950336, + "unique": 101644120, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 101644120 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "7b4d7c0f-c507-830e-d9ac-ee3529e31292", + "provisioned": 107374182400 + }, + { + "name": "zda130-pvc-e31ed8c3-857a-4c6d-ae44-dd5c4cc3cf64", + "created": 1604946280000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": false, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": false, + "access_control_style": "mode-bits" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 152016384, + "unique": 101717573, + "snapshots": 0, + "data_reduction": 1.5, + "total_physical": 101717573 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "29b54d79-7baf-f587-0b36-1b827adc0ead", + "provisioned": 107374182400 + }, + { + "name": "zda140-pso-db_0000000000", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 552784384, + "unique": 276552025, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 276552025 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c3647d9f-cfb6-a3e2-e438-9bd38c7d41dd", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000001", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 554454016, + "unique": 290482990, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 290482990 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f5f76a81-f98e-8605-edd8-7900f37d8697", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000002", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 549879296, + "unique": 255479843, + "snapshots": 0, + "data_reduction": 2.2, + "total_physical": 255479843 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "9fd25e02-1d66-0254-092e-e0da4f37a27e", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000003", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 12733440, + "unique": 6965583, + "snapshots": 0, + "data_reduction": 1.8, + "total_physical": 6965583 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "90a7352c-4708-18a9-fa6f-9270d2cf44fe", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000004", + "created": 1614853258000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 6879744, + "unique": 3332206, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 3332206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1f10d624-a0a5-3205-6f6a-f8958eb52d7e", + "provisioned": 34359738368 + } + ] +} diff --git a/test/data/filesystems_for_perf.json b/test/data/filesystems_for_perf.json new file mode 100644 index 0000000..0cffa33 --- /dev/null +++ b/test/data/filesystems_for_perf.json @@ -0,0 +1,328 @@ +{ + "total": { + "name": null, + "created": null, + "fast_remove_directory_enabled": null, + "snapshot_directory_enabled": null, + "destroyed": null, + "promotion_status": null, + "requested_promotion_state": null, + "writable": null, + "time_remaining": null, + "nfs": { + "rules": null, + "export_policy": null, + "v3_enabled": null, + "v4_1_enabled": null + }, + "smb": { + "enabled": null + }, + "http": { + "enabled": null + }, + "multi_protocol": { + "safeguard_acls": null, + "access_control_style": null + }, + "hard_limit_enabled": null, + "default_user_quota": null, + "default_group_quota": null, + "space": { + "virtual": 31134805601280, + "unique": 16061360383975, + "snapshots": 84356666672, + "data_reduction": 1.9, + "total_physical": 16145717050647 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": null, + "is_local": null, + "display_name": null + }, + "id": null, + "provisioned": 11691584889290752 + }, + "continuation_token": null, + "total_item_count": 5, + "items": [ + { + "name": "zda140-pso-db_0000000000", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 552784384, + "unique": 276552025, + "snapshots": 0, + "data_reduction": 2, + "total_physical": 276552025 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "c3647d9f-cfb6-a3e2-e438-9bd38c7d41dd", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000001", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 554454016, + "unique": 290482990, + "snapshots": 0, + "data_reduction": 1.9, + "total_physical": 290482990 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "f5f76a81-f98e-8605-edd8-7900f37d8697", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000002", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 549879296, + "unique": 255479843, + "snapshots": 0, + "data_reduction": 2.2, + "total_physical": 255479843 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "9fd25e02-1d66-0254-092e-e0da4f37a27e", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000003", + "created": 1614853257000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 12733440, + "unique": 6965583, + "snapshots": 0, + "data_reduction": 1.8, + "total_physical": 6965583 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "90a7352c-4708-18a9-fa6f-9270d2cf44fe", + "provisioned": 34359738368 + }, + { + "name": "zda140-pso-db_0000000004", + "created": 1614853258000, + "fast_remove_directory_enabled": false, + "snapshot_directory_enabled": true, + "destroyed": false, + "promotion_status": "promoted", + "requested_promotion_state": "promoted", + "writable": true, + "time_remaining": null, + "nfs": { + "rules": "*(rw,no_root_squash)", + "export_policy": { + "name": null, + "id": null, + "resource_type": null + }, + "v3_enabled": true, + "v4_1_enabled": true + }, + "smb": { + "enabled": false + }, + "http": { + "enabled": false + }, + "multi_protocol": { + "safeguard_acls": true, + "access_control_style": "shared" + }, + "hard_limit_enabled": false, + "default_user_quota": 0, + "default_group_quota": 0, + "space": { + "virtual": 6879744, + "unique": 3332206, + "snapshots": 0, + "data_reduction": 2.1, + "total_physical": 3332206 + }, + "source": { + "name": null, + "id": null, + "resource_type": null, + "location": { + "name": null, + "id": null, + "resource_type": null + }, + "is_local": true, + "display_name": null + }, + "id": "1f10d624-a0a5-3205-6f6a-f8958eb52d7e", + "provisioned": 34359738368 + } + ] +} diff --git a/test/data/filesystems_perf.json b/test/data/filesystems_perf.json new file mode 100644 index 0000000..0fe8f32 --- /dev/null +++ b/test/data/filesystems_perf.json @@ -0,0 +1 @@ +{"total":[{"name":null,"writes_per_sec":0.0,"reads_per_sec":0.0,"others_per_sec":0.0,"usec_per_write_op":0.0,"usec_per_read_op":0.0,"usec_per_other_op":0.0,"read_bytes_per_sec":0.0,"write_bytes_per_sec":0.0,"time":1682690970000,"bytes_per_read":0.0,"bytes_per_write":0.0,"bytes_per_op":0.0,"id":null}],"continuation_token":null,"total_item_count":5,"items":[{"name":"zda140-pso-db_0000000000","writes_per_sec":0.0,"reads_per_sec":0.0,"others_per_sec":0.0,"usec_per_write_op":0.0,"usec_per_read_op":0.0,"usec_per_other_op":0.0,"read_bytes_per_sec":0.0,"write_bytes_per_sec":0.0,"time":1682690970000,"bytes_per_read":0.0,"bytes_per_write":0.0,"bytes_per_op":0.0,"id":"c3647d9f-cfb6-a3e2-e438-9bd38c7d41dd"},{"name":"zda140-pso-db_0000000001","writes_per_sec":0.0,"reads_per_sec":0.0,"others_per_sec":0.0,"usec_per_write_op":0.0,"usec_per_read_op":0.0,"usec_per_other_op":0.0,"read_bytes_per_sec":0.0,"write_bytes_per_sec":0.0,"time":1682690970000,"bytes_per_read":0.0,"bytes_per_write":0.0,"bytes_per_op":0.0,"id":"f5f76a81-f98e-8605-edd8-7900f37d8697"},{"name":"zda140-pso-db_0000000002","writes_per_sec":0.0,"reads_per_sec":0.0,"others_per_sec":0.0,"usec_per_write_op":0.0,"usec_per_read_op":0.0,"usec_per_other_op":0.0,"read_bytes_per_sec":0.0,"write_bytes_per_sec":0.0,"time":1682690970000,"bytes_per_read":0.0,"bytes_per_write":0.0,"bytes_per_op":0.0,"id":"9fd25e02-1d66-0254-092e-e0da4f37a27e"},{"name":"zda140-pso-db_0000000003","writes_per_sec":0.0,"reads_per_sec":0.0,"others_per_sec":0.0,"usec_per_write_op":0.0,"usec_per_read_op":0.0,"usec_per_other_op":0.0,"read_bytes_per_sec":0.0,"write_bytes_per_sec":0.0,"time":1682690970000,"bytes_per_read":0.0,"bytes_per_write":0.0,"bytes_per_op":0.0,"id":"90a7352c-4708-18a9-fa6f-9270d2cf44fe"},{"name":"zda140-pso-db_0000000004","writes_per_sec":0.0,"reads_per_sec":0.0,"others_per_sec":0.0,"usec_per_write_op":0.0,"usec_per_read_op":0.0,"usec_per_other_op":0.0,"read_bytes_per_sec":0.0,"write_bytes_per_sec":0.0,"time":1682690970000,"bytes_per_read":0.0,"bytes_per_write":0.0,"bytes_per_op":0.0,"id":"1f10d624-a0a5-3205-6f6a-f8958eb52d7e"}]} \ No newline at end of file diff --git a/test/data/hardware.json b/test/data/hardware.json new file mode 100644 index 0000000..d639a07 --- /dev/null +++ b/test/data/hardware.json @@ -0,0 +1,906 @@ +{ + "continuation_token": null, + "total_item_count": 60, + "items": [ + { + "details": null, + "identify_enabled": false, + "index": 1, + "model": "CH-FB", + "name": "CH1", + "serial": "PMPAM18291329", + "slot": null, + "speed": null, + "status": "critical", + "temperature": null, + "type": "ch", + "id": "18980f8b-7ab5-f66f-0ec6-c06b4f1992c7", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-17TB", + "name": "CH1.FB1", + "serial": "PBLXA20529D43", + "slot": 1, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "9905b158-c52c-7255-cb86-ae259dd77abb", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB10", + "serial": "PBLUN16281B1F", + "slot": 10, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "29778dac-d832-c057-2694-5215c77f2ec7", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB11", + "serial": "PBLUN16221122", + "slot": 11, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "e1862971-d992-fdec-7eda-f995a76abfaa", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB12", + "serial": "PBLUN16281B7B", + "slot": 12, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "eaf9bbb7-a4a3-99ec-b8c7-dbeeefb16896", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB13", + "serial": "PBLUN1631222A", + "slot": 13, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "0f2a2e9b-b005-4cf4-39b9-15fee65420e0", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-17TB", + "name": "CH1.FB14", + "serial": "PPCXA1843361C", + "slot": 14, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "426ae55d-41a8-6423-1fc0-c8a0321a7441", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-17TB", + "name": "CH1.FB15", + "serial": "PPCXA20281AE5", + "slot": 15, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "b1ce7ca4-98cf-be7a-78ec-e197f26e2c4f", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB2", + "serial": "PBLUN172157E9", + "slot": 2, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "68670094-e3d3-3845-304d-33c6c385dad5", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-17TB", + "name": "CH1.FB3", + "serial": "PPCXA184338BE", + "slot": 3, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "79ff40c9-eff9-0cd1-2934-89fad84bb47a", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-17TB", + "name": "CH1.FB4", + "serial": "PPCXA2013F44A", + "slot": 4, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "8bb54e58-67f1-1bf6-1fc7-8149751ae1d9", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-17TB", + "name": "CH1.FB5", + "serial": "PBLXA20529D52", + "slot": 5, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "ec8946bf-095d-724c-f7cf-578041a9dcc2", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB6", + "serial": "PBLUN172157AC", + "slot": 6, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "bb5c2591-e4d9-301f-83b8-0bf81295e447", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-17TB", + "name": "CH1.FB7", + "serial": "PPCXA18433947", + "slot": 7, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "59396d25-6d64-f22a-af84-f0d36bb95f95", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB8", + "serial": "PBLUN16281B82", + "slot": 8, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "046c6e05-b99d-5053-dfcf-c6e1b6649e3a", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "FB-8TB", + "name": "CH1.FB9", + "serial": "PBLUN16281BF8", + "slot": 9, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fb", + "id": "a31cc41d-77c3-2dd0-6ee9-74fec5b7a286", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "EFM-110", + "name": "CH1.FM1", + "serial": "PSUFS17250052", + "slot": 1, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fm", + "id": "7d3a50f5-0ef5-f299-d03e-8dff0bd03984", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 1, + "model": "FTL410QE2C", + "name": "CH1.FM1.ETH1.1", + "serial": "XW60N82", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 2, + "model": "FTL410QE2C", + "name": "CH1.FM1.ETH1.2", + "serial": "XW60N82", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 3, + "model": "FTL410QE2C", + "name": "CH1.FM1.ETH1.3", + "serial": "XW60N82", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 4, + "model": "FTL410QE2C", + "name": "CH1.FM1.ETH1.4", + "serial": "XW60N82", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "part_number": null + }, + { + "details": "Not configured", + "identify_enabled": null, + "index": 1, + "model": "FCBN410QD3C03", + "name": "CH1.FM1.ETH2.1", + "serial": "WZQ0B1K", + "slot": 2, + "speed": 10000000000, + "status": "unused", + "temperature": null, + "type": "eth", + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "part_number": null + }, + { + "details": "Not configured", + "identify_enabled": null, + "index": 2, + "model": "FCBN410QD3C03", + "name": "CH1.FM1.ETH2.2", + "serial": "WZQ0B1K", + "slot": 2, + "speed": 10000000000, + "status": "unused", + "temperature": null, + "type": "eth", + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "part_number": null + }, + { + "details": "Not configured", + "identify_enabled": null, + "index": 3, + "model": "FCBN410QD3C03", + "name": "CH1.FM1.ETH2.3", + "serial": "WZQ0B1K", + "slot": 2, + "speed": 10000000000, + "status": "unused", + "temperature": null, + "type": "eth", + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "part_number": null + }, + { + "details": "Not configured", + "identify_enabled": null, + "index": 4, + "model": "FCBN410QD3C03", + "name": "CH1.FM1.ETH2.4", + "serial": "WZQ0B1K", + "slot": 2, + "speed": 10000000000, + "status": "unused", + "temperature": null, + "type": "eth", + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": null, + "model": "FCBN410QD3C03", + "name": "CH1.FM1.ETH3", + "serial": "WZQ08MF", + "slot": 3, + "speed": 40000000000, + "status": "unhealthy", + "temperature": null, + "type": "eth", + "id": "46fd286f-8495-a70e-cac6-67fa5fe45712", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 1, + "model": null, + "name": "CH1.FM1.ETH4.1", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 2, + "model": null, + "name": "CH1.FM1.ETH4.2", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 3, + "model": null, + "name": "CH1.FM1.ETH4.3", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 4, + "model": null, + "name": "CH1.FM1.ETH4.4", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM1.FAN1", + "serial": null, + "slot": 1, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "49829c58-c882-abd2-2785-15aa7564e8fa", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM1.FAN2", + "serial": null, + "slot": 2, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "ca697510-ba56-2a26-c20d-8f913b912755", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM1.FAN3", + "serial": null, + "slot": 3, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "a68455dc-f2da-a1f2-7d5a-400ab4cc26c4", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM1.FAN4", + "serial": null, + "slot": 4, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "70eccad5-dc02-8f8c-53a3-5eab291fbcab", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM1.FAN5", + "serial": null, + "slot": 5, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "d2e4dd74-3f0c-dbfc-f5d5-16a7a3ccb70d", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM1.FAN6", + "serial": null, + "slot": 6, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "183eaaee-e20c-ca8f-cfce-b75dff56077a", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "EFM-110", + "name": "CH1.FM2", + "serial": "PSUFS17250023", + "slot": 2, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fm", + "id": "9dc74da7-329b-c43c-4b77-e021cc6e63cd", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 1, + "model": "FCBN410QD3C03", + "name": "CH1.FM2.ETH1.1", + "serial": "WZQ05B6", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 2, + "model": "FCBN410QD3C03", + "name": "CH1.FM2.ETH1.2", + "serial": "WZQ05B6", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 3, + "model": "FCBN410QD3C03", + "name": "CH1.FM2.ETH1.3", + "serial": "WZQ05B6", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 4, + "model": "FCBN410QD3C03", + "name": "CH1.FM2.ETH1.4", + "serial": "WZQ05B6", + "slot": 1, + "speed": 10000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 1, + "model": null, + "name": "CH1.FM2.ETH2.1", + "serial": null, + "slot": 2, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 2, + "model": null, + "name": "CH1.FM2.ETH2.2", + "serial": null, + "slot": 2, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 3, + "model": null, + "name": "CH1.FM2.ETH2.3", + "serial": null, + "slot": 2, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 4, + "model": null, + "name": "CH1.FM2.ETH2.4", + "serial": null, + "slot": 2, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": null, + "model": "FCBN410QD3C03", + "name": "CH1.FM2.ETH3", + "serial": "WZQ0B1F", + "slot": 3, + "speed": 40000000000, + "status": "healthy", + "temperature": null, + "type": "eth", + "id": "444d6f69-8b95-51fd-c9d0-bb6183541d48", + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 1, + "model": null, + "name": "CH1.FM2.ETH4.1", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 2, + "model": null, + "name": "CH1.FM2.ETH4.2", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 3, + "model": null, + "name": "CH1.FM2.ETH4.3", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": null, + "index": 4, + "model": null, + "name": "CH1.FM2.ETH4.4", + "serial": null, + "slot": 4, + "speed": 0, + "status": "unused", + "temperature": null, + "type": "eth", + "id": null, + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM2.FAN1", + "serial": null, + "slot": 1, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "1cf51e1b-6595-e2cc-6396-d79b4f0a1045", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM2.FAN2", + "serial": null, + "slot": 2, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "9e374a3b-a2e8-77c9-db8e-bb0db271375c", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM2.FAN3", + "serial": null, + "slot": 3, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "f5b584ec-00fd-952a-b101-71e83bb23ef7", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM2.FAN4", + "serial": null, + "slot": 4, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "7c4dd014-22c8-d9ba-2f20-f53f2d25c75d", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM2.FAN5", + "serial": null, + "slot": 5, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "d2256adf-a451-80ae-4773-b37d87ee639b", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": null, + "name": "CH1.FM2.FAN6", + "serial": null, + "slot": 6, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "fan", + "id": "10ac8ff6-e490-9bf5-a187-def8d6660d53", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "DS1600SPE-3", + "name": "CH1.PWR1", + "serial": "M050V0003RAEZ", + "slot": 1, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "pwr", + "id": "269f2b7d-49f4-0bd3-dee5-0190e05c7257", + "part_number": null + }, + { + "details": "PSU POWER_GOOD is asserted", + "identify_enabled": false, + "index": null, + "model": "DS1600SPE-3", + "name": "CH1.PWR2", + "serial": "M050V0003QAEZ", + "slot": 2, + "speed": null, + "status": "critical", + "temperature": null, + "type": "pwr", + "id": "af3553c1-4500-148e-07ed-ae6a8f4b693e", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "DS1600SPE-3", + "name": "CH1.PWR3", + "serial": "M050V0003MAEZ", + "slot": 3, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "pwr", + "id": "5baf537b-a029-34d8-2dcc-d68bcb1339b1", + "part_number": null + }, + { + "details": null, + "identify_enabled": false, + "index": null, + "model": "DS1600SPE-3", + "name": "CH1.PWR4", + "serial": "M050V0003NAEZ", + "slot": 4, + "speed": null, + "status": "healthy", + "temperature": null, + "type": "pwr", + "id": "8a1e94bb-020a-6d46-6224-cd491ff0df33", + "part_number": null + } + ] +} diff --git a/test/data/hw_connectors_perf.json b/test/data/hw_connectors_perf.json new file mode 100644 index 0000000..14bdb3f --- /dev/null +++ b/test/data/hw_connectors_perf.json @@ -0,0 +1,548 @@ +{ + "total": [ + { + "id": null, + "name": null, + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": null + }, + "other_errors_per_sec": 52.66666666666667, + "received_bytes_per_sec": 4183659.3333333326, + "received_packets_per_sec": 47182.96666666667, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 2146300376.5, + "transmitted_packets_per_sec": 1417821.9666666663, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 52.66666666666667, + "time": 1682692980000 + } + ], + "continuation_token": null, + "total_item_count": 26, + "items": [ + { + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "name": "CH1.FM1.ETH1.1", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 4.033333333333333, + "received_bytes_per_sec": 238897.9, + "received_packets_per_sec": 2609.4666666666667, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 143777529.03333333, + "transmitted_packets_per_sec": 94945.43333333333, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 4.033333333333333, + "time": 1682692980000 + }, + { + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "name": "CH1.FM1.ETH1.2", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 2, + "received_bytes_per_sec": 800315.7, + "received_packets_per_sec": 9158.1, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 127446808.73333333, + "transmitted_packets_per_sec": 84208.7, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 2, + "time": 1682692980000 + }, + { + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "name": "CH1.FM1.ETH1.3", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 3.7666666666666666, + "received_bytes_per_sec": 533113.8, + "received_packets_per_sec": 5969.166666666667, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 14447.966666666667, + "transmitted_packets_per_sec": 25.4, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 3.7666666666666666, + "time": 1682692980000 + }, + { + "id": "766bd13a-3041-9cf7-021b-700f301d8bcb", + "name": "CH1.FM1.ETH1.4", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 1.8, + "received_bytes_per_sec": 567401.4333333333, + "received_packets_per_sec": 6464.6, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 520568129.93333334, + "transmitted_packets_per_sec": 343959.3, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 1.8, + "time": 1682692980000 + }, + { + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "name": "CH1.FM1.ETH2.1", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 2.2333333333333334, + "received_bytes_per_sec": 4.333333333333333, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 5.033333333333333, + "transmitted_packets_per_sec": 0.03333333333333333, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 2.2333333333333334, + "time": 1682692980000 + }, + { + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "name": "CH1.FM1.ETH2.2", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 2.433333333333333, + "received_bytes_per_sec": 5.033333333333333, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 5.033333333333333, + "transmitted_packets_per_sec": 0.03333333333333333, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 2.433333333333333, + "time": 1682692980000 + }, + { + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "name": "CH1.FM1.ETH2.3", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 2, + "received_bytes_per_sec": 3.8333333333333335, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 5.033333333333333, + "transmitted_packets_per_sec": 0.03333333333333333, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 2, + "time": 1682692980000 + }, + { + "id": "58396d30-fb82-fc00-b837-abc8a7cba2a6", + "name": "CH1.FM1.ETH2.4", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 2.3, + "received_bytes_per_sec": 4.766666666666667, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 5.033333333333333, + "transmitted_packets_per_sec": 0.03333333333333333, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 2.3, + "time": 1682692980000 + }, + { + "id": "46fd286f-8495-a70e-cac6-67fa5fe45712", + "name": "CH1.FM1.ETH3", + "link_aggregation_group": { + "name": "cisco_uplink", + "id": "bef7352b-5bf1-0709-2a0b-fb79bfc1f509", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM1.ETH4.1", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM1.ETH4.2", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM1.ETH4.3", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM1.ETH4.4", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "name": "CH1.FM2.ETH1.1", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 4.166666666666667, + "received_bytes_per_sec": 1241864.5666666667, + "received_packets_per_sec": 14031.2, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 271173843.06666666, + "transmitted_packets_per_sec": 179156, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 4.166666666666667, + "time": 1682692980000 + }, + { + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "name": "CH1.FM2.ETH1.2", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 2.1666666666666665, + "received_bytes_per_sec": 563760.9, + "received_packets_per_sec": 6378.066666666667, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 401356477.1333333, + "transmitted_packets_per_sec": 265061.93333333335, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 2.1666666666666665, + "time": 1682692980000 + }, + { + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "name": "CH1.FM2.ETH1.3", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 4.466666666666667, + "received_bytes_per_sec": 230345.43333333332, + "received_packets_per_sec": 2524.9333333333334, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 279606857.46666664, + "transmitted_packets_per_sec": 184638.53333333333, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 4.466666666666667, + "time": 1682692980000 + }, + { + "id": "80ec21c8-48d9-2b1d-c1c5-b61a304f36d4", + "name": "CH1.FM2.ETH1.4", + "link_aggregation_group": { + "name": "uplink", + "id": "20f2823a-522a-3530-e5a3-675391d9efb2", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 3.2666666666666666, + "received_bytes_per_sec": 6593.833333333333, + "received_packets_per_sec": 29.233333333333334, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 402356133.8, + "transmitted_packets_per_sec": 265825.5333333333, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 3.2666666666666666, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH2.1", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH2.2", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH2.3", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH2.4", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": "444d6f69-8b95-51fd-c9d0-bb6183541d48", + "name": "CH1.FM2.ETH3", + "link_aggregation_group": { + "name": "cisco_uplink", + "id": "bef7352b-5bf1-0709-2a0b-fb79bfc1f509", + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 18.033333333333335, + "received_bytes_per_sec": 1347.8, + "received_packets_per_sec": 18.2, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 129.23333333333332, + "transmitted_packets_per_sec": 1, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 18.033333333333335, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH4.1", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH4.2", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH4.3", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + }, + { + "id": null, + "name": "CH1.FM2.ETH4.4", + "link_aggregation_group": { + "name": null, + "id": null, + "resource_type": "link-aggregation-groups" + }, + "other_errors_per_sec": 0, + "received_bytes_per_sec": 0, + "received_packets_per_sec": 0, + "received_crc_errors_per_sec": 0, + "received_frame_errors_per_sec": 0, + "transmitted_bytes_per_sec": 0, + "transmitted_packets_per_sec": 0, + "transmitted_dropped_errors_per_sec": 0, + "transmitted_carrier_errors_per_sec": 0, + "total_errors_per_sec": 0, + "time": 1682692980000 + } + ] +} diff --git a/test/data/nfs_export_policies.json b/test/data/nfs_export_policies.json new file mode 100644 index 0000000..dae4f2f --- /dev/null +++ b/test/data/nfs_export_policies.json @@ -0,0 +1,157 @@ +{ + "continuation_token": null, + "total_item_count": 4, + "items": [ + { + "name": "pxbackup-nfs-target-policy", + "id": "0021b4ff-f083-2849-e8c9-bbfb8a9d3cde", + "enabled": true, + "is_local": true, + "location": { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "resource_type": "arrays" + }, + "version": "ffffffff-cf82-04c7-ffff-ffff85c37ce6", + "rules": [ + { + "name": "pxbackup-nfs-target-policy.1", + "id": "8c4fb16c-8c16-4d1e-be30-9c18e509c24a", + "policy": { + "name": "pxbackup-nfs-target-policy", + "id": "0021b4ff-f083-2849-e8c9-bbfb8a9d3cde", + "resource_type": "nfs-export-policies" + }, + "index": 1, + "policy_version": "ffffffff-cf82-04c7-ffff-ffff85c37ce6", + "access": "all-squash", + "anongid": null, + "anonuid": null, + "atime": true, + "client": "*", + "fileid_32bit": false, + "permission": "rw", + "secure": false, + "security": [ + "sys" + ] + } + ], + "policy_type": "nfs-export" + }, + { + "name": "ff", + "id": "11f9533f-ec2e-4079-0c67-4c5dbdadc520", + "enabled": true, + "is_local": true, + "location": { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "resource_type": "arrays" + }, + "version": "00000000-3a03-3b06-0000-000000000000", + "rules": [], + "policy_type": "nfs-export" + }, + { + "name": "testnfspolicy", + "id": "29f2da80-90c5-7206-6f70-471bda3e6bf5", + "enabled": true, + "is_local": true, + "location": { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "resource_type": "arrays" + }, + "version": "00000000-051b-2554-0000-000039fb1db5", + "rules": [ + { + "name": "testnfspolicy.1", + "id": "b59ea487-065e-4423-9321-d53b01736100", + "policy": { + "name": "testnfspolicy", + "id": "29f2da80-90c5-7206-6f70-471bda3e6bf5", + "resource_type": "nfs-export-policies" + }, + "index": 1, + "policy_version": "00000000-051b-2554-0000-000039fb1db5", + "access": "root-squash", + "anongid": null, + "anonuid": null, + "atime": true, + "client": "10.10.10.1", + "fileid_32bit": false, + "permission": "ro", + "secure": false, + "security": [ + "krb5i", + "krb5p", + "sys" + ] + }, + { + "name": "testnfspolicy.2", + "id": "96a4ba7a-f4da-4b12-a7a5-30bb912c0844", + "policy": { + "name": "testnfspolicy", + "id": "29f2da80-90c5-7206-6f70-471bda3e6bf5", + "resource_type": "nfs-export-policies" + }, + "index": 2, + "policy_version": "00000000-051b-2554-0000-000039fb1db5", + "access": "root-squash", + "anongid": null, + "anonuid": null, + "atime": true, + "client": "10.10.10.2", + "fileid_32bit": false, + "permission": "ro", + "secure": false, + "security": [ + "sys" + ] + } + ], + "policy_type": "nfs-export" + }, + { + "name": "KNFS4", + "id": "2dcad5bf-3151-b404-5a04-ad20040107dd", + "enabled": true, + "is_local": true, + "location": { + "name": "fbstaines02", + "id": "66992c13-6d81-433f-bb31-5fc33e76fa5f", + "resource_type": "arrays" + }, + "version": "00000000-1c06-965f-ffff-ffff98ba5af2", + "rules": [ + { + "name": "KNFS4.1", + "id": "f869ae87-9dc5-4788-bce6-807562642ef7", + "policy": { + "name": "KNFS4", + "id": "2dcad5bf-3151-b404-5a04-ad20040107dd", + "resource_type": "nfs-export-policies" + }, + "index": 1, + "policy_version": "00000000-1c06-965f-ffff-ffff98ba5af2", + "access": "no-squash", + "anongid": null, + "anonuid": null, + "atime": true, + "client": "*", + "fileid_32bit": false, + "permission": "rw", + "secure": false, + "security": [ + "krb5", + "krb5i", + "krb5p" + ] + } + ], + "policy_type": "nfs-export" + } + ] +} diff --git a/test/data/versions.json b/test/data/versions.json new file mode 100644 index 0000000..6c87d9e --- /dev/null +++ b/test/data/versions.json @@ -0,0 +1,27 @@ +{ + "versions": [ + "1.0", + "1.1", + "1.2", + "1.3", + "1.4", + "1.5", + "1.6", + "1.7", + "1.8", + "1.8.1", + "1.9", + "1.10", + "1.11", + "1.12", + "2.0", + "2.1", + "2.2", + "2.3", + "2.4", + "2.5", + "2.6", + "2.7", + "2.8" + ] +} From 0b2ac3b2d42bc4e80427939c81cec0770aaa0ade Mon Sep 17 00:00:00 2001 From: Eugenio Grosso Date: Fri, 28 Apr 2023 22:24:23 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 55 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 49 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 63fdf8e..3e56e80 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,47 @@ The provided dockerfile can be used to generate a docker image of the exporter. docker build -t pure-fb-ome:$VERSION . ``` +### Authentication + +Authentication is used by the exporter as the mechanism to cross authenticate to the scraped appliance, therefore for each array it is required to provide the REST API token for an account that has a 'readonly' role. The api-token can be provided in two ways + +- using the HTTP Authorization header of type 'Bearer', or +- via a configuration map in a specific configuration file. + +The first option requires to specify the api-token value as the authorization parameter of the specific job in the Prometheus configuration file. +The second option provides the FlashBlade/api-token key-pair map for a list of arrays in a simple YAML configuration file that is passed as paramether to the exporter. This makes possible to write more concise Prometheus configuration files and also to configure other scrapers that cannot use the HTTP authentication header. + +### Usage + +```shell + +usage: pure-fb-om-exporter [-h|--help] [-a|--address ""] [-p|--port ] [-d|--debug] [-t|--tokens ] + + Pure Storage FB OpenMetrics exporter + +Arguments: + + -h --help Print help information + -a --address IP address for this exporter to bind to. Default: 0.0.0.0 + -p --port Port for this exporter to listen. Default: 9490 + -d --debug Enable debug. Default: false + -t --tokens API token(s) map file +``` + +The array token configuration file must have to following syntax: + +```shell +: + address: | + api_token: +: + address: | + api_token: +... +: + address: | + api_token: +``` ### Scraping endpoints @@ -76,12 +117,13 @@ Authentication is used by the exporter as the mechanism to cross authenticate to The exporter understands the following requests: -| URL | GET parameters | description | -| ------------------------------------------------- | -------------- | -------------------- | -| http://\:\/metrics | endpoint | Full array metrics | -| http://\:\/metrics/array | endpoint | Array metrics | -| http://\:\/metrics/clients | endpoint | Clients metrics | -| http://\:\/metrics/usage | endpoint | Quotas usage metrics | +| URL | GET parameters | description | +| ---------------------------------------------------| -------------- | --------------------------| +| http://\:\/metrics | endpoint | Full array metrics | +| http://\:\/metrics/array | endpoint | Array metrics | +| http://\:\/metrics/clients | endpoint | Clients metrics | +| http://\:\/metrics/usage | endpoint | Quotas usage metrics | +| http://\:\/metrics/polucies | endpoint | NFS policies info metrics | Depending on the target array, scraping for the whole set of metrics could result into timeout issues, in which case it is suggested either to increase the scraping timeout or to scrape each single endpoint instead. @@ -155,6 +197,7 @@ A simple but complete example to deploy a full monitoring stack on kubernetes ca | purefb_shardware_connectors_performance_errors | FlashBlade hardware connectors performance errors per sec | | purefb_file_system_usage_users_bytes | FlashBlade file system users usage | | purefb_file_system_usage_groups_bytes | FlashBlade file system groups usage | +| purefb_nfs_export_rule | FlashBlade NFS export policies information | ## Monitoring On-Premise with Prometheus and Grafana Take a holistic overview of your Pure Storage FlashBlade estate on-premise with Prometheus and Grafana to summarize statistics such as: From fef3c3ba43475be763c11e2425811b404884354b Mon Sep 17 00:00:00 2001 From: Eugenio Grosso Date: Fri, 28 Apr 2023 22:35:23 +0200 Subject: [PATCH 3/4] Update main.go --- cmd/fb-om-exporter/main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmd/fb-om-exporter/main.go b/cmd/fb-om-exporter/main.go index 6d04775..c603c7c 100644 --- a/cmd/fb-om-exporter/main.go +++ b/cmd/fb-om-exporter/main.go @@ -172,6 +172,12 @@ func index(w http.ResponseWriter, r *http.Request) { endpoint Provides only quota related metrics. + + NFS export policies metrics + /metrics/policies + endpoint + Provides only NFS policies related metrics. + From bda1c109ee02ffa483e157a1300237c9f88105b7 Mon Sep 17 00:00:00 2001 From: Eugenio Grosso Date: Sat, 29 Apr 2023 09:01:23 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3e56e80..d2720c2 100644 --- a/README.md +++ b/README.md @@ -71,8 +71,8 @@ Authentication is used by the exporter as the mechanism to cross authenticate to - using the HTTP Authorization header of type 'Bearer', or - via a configuration map in a specific configuration file. -The first option requires to specify the api-token value as the authorization parameter of the specific job in the Prometheus configuration file. -The second option provides the FlashBlade/api-token key-pair map for a list of arrays in a simple YAML configuration file that is passed as paramether to the exporter. This makes possible to write more concise Prometheus configuration files and also to configure other scrapers that cannot use the HTTP authentication header. +The first option requires specifying the api-token value as the authorization parameter of the specific job in the Prometheus configuration file. +The second option provides the FlashBlade/api-token key-pair map for a list of arrays in a simple YAML configuration file that is passed as parameter to the exporter. This makes possible to write more concise Prometheus configuration files and also to configure other scrapers that cannot use the HTTP authentication header. ### Usage @@ -123,7 +123,7 @@ The exporter understands the following requests: | http://\:\/metrics/array | endpoint | Array metrics | | http://\:\/metrics/clients | endpoint | Clients metrics | | http://\:\/metrics/usage | endpoint | Quotas usage metrics | -| http://\:\/metrics/polucies | endpoint | NFS policies info metrics | +| http://\:\/metrics/policies | endpoint | NFS policies info metrics | Depending on the target array, scraping for the whole set of metrics could result into timeout issues, in which case it is suggested either to increase the scraping timeout or to scrape each single endpoint instead.