Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,046 for Reporter (0.41 sec)

  1. pilot/pkg/status/distribution/reporter.go

    	controller             *Controller
    }
    
    var _ xds.DistributionStatusCache = &Reporter{}
    
    const (
    	labelKey  = "internal.istio.io/distribution-report"
    	dataField = "distribution-report"
    )
    
    // Init starts all the read only features of the reporter, used for nonce generation
    // and responding to istioctl wait.
    func (r *Reporter) Init(ledger ledger.Ledger, stop <-chan struct{}) {
    	r.ledger = ledger
    	if r.clock == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. releasenotes/notes/dashboard-reporter-dropdown.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 27595
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 02 19:50:52 UTC 2020
    - 160 bytes
    - Viewed (0)
  3. releasenotes/notes/grafana-dashboards-reporter-correction.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 27595
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 18 16:29:46 UTC 2020
    - 184 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/ExceptionReportingAction.java

        private final Action<ExecutionListener> action;
        private final Action<Throwable> reporter;
        private final LoggingOutputInternal loggingOutput;
    
        public ExceptionReportingAction(Action<Throwable> reporter, LoggingOutputInternal loggingOutput, Action<ExecutionListener> action) {
            this.action = action;
            this.reporter = reporter;
            this.loggingOutput = loggingOutput;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-service-dashboard.json

                "type": "prometheus",
                "uid": "${datasource}"
              },
              "editorMode": "code",
              "expr": "sum(irate(istio_requests_total{reporter=~\"$qrep\",destination_service=~\"$service\",response_code!~\"5.*\"}[5m])) / (sum(irate(istio_requests_total{reporter=~\"$qrep\",destination_service=~\"$service\"}[5m])) or on () vector(1))",
              "format": "time_series",
              "intervalFactor": 1,
              "range": true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

    ponse_bytes_sum{source_workload=\"istio-ingressgateway\", reporter=\"source\"}[1m]))","format":"time_series","intervalFactor":1,"legendFormat":"istio-ingressgateway","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"sum(irate(istio_response_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m])) + sum(irate(istio_request_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m]))","format":"time_series","intervalFactor"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/errors.go

    func (reporter *ErrorReporter) errorUnresolved(ldr *loader.Loader, s, rs loader.Sym) {
    	reporter.unresMutex.Lock()
    	defer reporter.unresMutex.Unlock()
    
    	if reporter.unresSyms == nil {
    		reporter.unresSyms = make(map[unresolvedSymKey]bool)
    	}
    	k := unresolvedSymKey{from: s, to: rs}
    	if !reporter.unresSyms[k] {
    		reporter.unresSyms[k] = true
    		name := ldr.SymName(rs)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:38:08 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeDataReporter.java

            for (DataReporter<? super T> reporter : reporters) {
                reporter.report(results);
            }
        }
    
        @Override
        public void close() throws IOException {
            for (DataReporter<? super T> reporter : reporters) {
                reporter.close();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/istio-workload-dashboard.json

                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "sum(irate(istio_requests_total{reporter=~\"$qrep\",destination_workload_namespace=~\"$namespace\",destination_workload=~\"$workload\",response_code!~\"5.*\"}[5m])) / sum(irate(istio_requests_total{reporter=~\"$qrep\",destination_workload_namespace=~\"$namespace\",destination_workload=~\"$workload\"}[5m]))",
              "format": "time_series",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  10. tests/integration/telemetry/policy/traffic_allow_any_test.go

    		{
    			Name:     "HTTP Traffic",
    			PortName: "http",
    			Expected: Expected{
    				Query: prometheus.Query{
    					Metric:      "istio_requests_total",
    					Aggregation: "sum",
    					Labels: map[string]string{
    						"reporter":                 "source",
    						"destination_service_name": "PassthroughCluster",
    						"response_code":            "200",
    					},
    				},
    				StatusCode: http.StatusOK,
    				Protocol:   "HTTP/1.1",
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top