Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for stdat (0.06 sec)

  1. cmd/metrics-v2.go

    					Value:          stat.Failed.LastMinute.Count,
    					VariableLabels: map[string]string{"endpoint": stat.Endpoint},
    				})
    				ml = append(ml, MetricV2{
    					Description:    getRepFailedBytesLastHourMD(clusterMetricNamespace),
    					Value:          float64(stat.Failed.LastHour.Bytes),
    					VariableLabels: map[string]string{"endpoint": stat.Endpoint},
    				})
    				ml = append(ml, MetricV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    rsion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"round(sum(irate(istio_requests_total{reporter=\"source\"}[1m])), 0.001)","intervalFactor":1,"refId":"A","step":4}],"title":"Global Request Volume","type":"stat"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"fieldConfig":{"defaults":{"color":{"fixedColor":"rgb(31, 120, 193)","mode":"fixed"},"mappings":[{"options":{"match":"null","result":{"text":"N/A"}},"type":"special"}],"thresholds":{"mode...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-service-dashboard.json

              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A",
              "step": 4
            }
          ],
          "title": "Client Request Volume",
          "type": "stat"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
              "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/istio-workload-dashboard.json

              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A",
              "step": 4
            }
          ],
          "title": "Incoming Request Volume",
          "type": "stat"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
              "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    		}
    	}
    	for p, stat := range sinfo.PolicyStats {
    		for dID, st := range stat {
    			if st.PolicyMismatch || opts.Entity == madmin.SRPolicyEntity {
    				if _, ok := info.PolicyStats[p]; !ok {
    					info.PolicyStats[p] = make(map[string]madmin.SRPolicyStatsSummary, numSites)
    				}
    				info.PolicyStats[p][dID] = st.SRPolicyStatsSummary
    			}
    		}
    	}
    	for p, stat := range sinfo.ILMExpiryRulesStats {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    	if GlobalKMS == nil {
    		return []madmin.KMS{}
    	}
    
    	stat, err := GlobalKMS.Status(ctx)
    	if err != nil {
    		kmsLogIf(ctx, err, "failed to fetch KMS status information")
    		return []madmin.KMS{}
    	}
    
    	stats := make([]madmin.KMS, 0, len(stat.Endpoints))
    	for endpoint, state := range stat.Endpoints {
    		stats = append(stats, madmin.KMS{
    			Status:   string(state),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    	Miss:
    	}
    
    	// Validation failed. Compute a new description (in buf) and compiler ID (in h).
    	// For now, there are only at most two filenames in the stat information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "dependencies": {
            "@nodelib/fs.stat": "2.0.5",
            "run-parallel": "^1.1.9"
          },
          "engines": {
            "node": ">= 8"
          }
        },
        "node_modules/@nodelib/fs.stat": {
          "version": "2.0.5",
          "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		path = "./" + path
    	}
    	return path
    }
    
    var isDirCache par.Cache[string, bool]
    
    func isDir(path string) bool {
    	return isDirCache.Do(path, func() bool {
    		fi, err := fsys.Stat(path)
    		return err == nil && fi.IsDir()
    	})
    }
    
    // ResolveImportPath returns the true meaning of path when it appears in parent.
    // There are two different resolutions applied.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    func (api objectAPIHandlers) SelectObjectContentHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "SelectObject")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	// Fetch object stat info.
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top