Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for statsd (0.18 sec)

  1. tools/packaging/common/envoy_bootstrap.json

          }
        }
        {{ end }}
        {{ if and .envoy_metrics_service_address .statsd }}
        ,
        {{ end }}
        {{ if .statsd }}
        {
          "name": "envoy.stat_sinks.statsd",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.metrics.v3.StatsdSink",
            "address": {
              "socket_address": {{ .statsd }}
            }
          }
        }
        {{ end }}
      ]
      {{ end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

              "envoy_grpc": {
                "cluster_name": "envoy_metrics_service"
              }
            }
          }
        }
        
        
        ,
        
        
        {
          "name": "envoy.stat_sinks.statsd",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.metrics.v3.StatsdSink",
            "address": {
              "socket_address": {"address": "10.1.1.1", "port_value": 9125}
            }
          }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. pkg/bootstrap/instance_test.go

    	gsm := got.GetStatsConfig().GetStatsMatcher()
    
    	if stats.prefixes == "" {
    		stats.prefixes = v2Prefixes + requiredEnvoyStatsMatcherInclusionPrefixes + v2Suffix
    	} else {
    		stats.prefixes = v2Prefixes + stats.prefixes + "," + requiredEnvoyStatsMatcherInclusionPrefixes + v2Suffix
    	}
    	if stats.suffixes == "" {
    		stats.suffixes = rbacEnvoyStatsMatcherInclusionSuffix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. cmd/http-stats.go

    		return 0
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    	val, ok := stats.apiStats[api]
    	if ok {
    		return val
    	}
    
    	return 0
    }
    
    // Load returns the recorded stats.
    func (stats *HTTPAPIStats) Load(toLower bool) map[string]int {
    	if stats == nil {
    		return map[string]int{}
    	}
    
    	stats.RLock()
    	defer stats.RUnlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/runtime/metrics_test.go

    	if gcTotal != stats.GCTotalTime {
    		t.Errorf("manually computed total does not match GCTotalTime: %d cpu-ns vs. %d cpu-ns", gcTotal, stats.GCTotalTime)
    	}
    	scavTotal := stats.ScavengeAssistTime + stats.ScavengeBgTime
    	if scavTotal != stats.ScavengeTotalTime {
    		t.Errorf("manually computed total does not match ScavengeTotalTime: %d cpu-ns vs. %d cpu-ns", scavTotal, stats.ScavengeTotalTime)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. cmd/metrics-resource.go

    		}
    		if hm.Mem != nil && len(hm.Mem.Info.Addr) > 0 {
    			labels := map[string]string{}
    			stats := hm.Mem.Info
    			updateResourceMetrics(memSubsystem, total, float64(stats.Total), labels, false)
    			updateResourceMetrics(memSubsystem, memUsed, float64(stats.Used), labels, false)
    			perc := math.Round(float64(stats.Used*100*100)/float64(stats.Total)) / 100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/runtime/debug/garbage.go

    	// any conversion.
    	readGCStats(&stats.Pause)
    	n := len(stats.Pause) - 3
    	stats.LastGC = time.Unix(0, int64(stats.Pause[n]))
    	stats.NumGC = int64(stats.Pause[n+1])
    	stats.PauseTotal = stats.Pause[n+2]
    	n /= 2 // buffer holds pauses and end times
    	stats.Pause = stats.Pause[:n]
    
    	if cap(stats.PauseEnd) < maxPause {
    		stats.PauseEnd = make([]time.Time, 0, maxPause)
    	}
    	stats.PauseEnd = stats.PauseEnd[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/stream_executor/stream_executor.cc

        }
        absl::Status status = ValidateSPAllocatorStats(c_stats);
        if (!status.ok()) {
          LOG(ERROR) << status.message();
          return absl::nullopt;
        }
        ::stream_executor::AllocatorStats stats;
        stats.num_allocs = c_stats.num_allocs;
        stats.bytes_in_use = c_stats.bytes_in_use;
        stats.peak_bytes_in_use = c_stats.peak_bytes_in_use;
        stats.largest_alloc_size = c_stats.largest_alloc_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry_test.go

    			networking.ListenerProtocolHTTP,
    			nil,
    			map[string]string{
    				"istio.stats": cfg,
    			},
    		},
    		{
    			"default prometheus",
    			[]config.Config{newTelemetry("istio-system", emptyPrometheus)},
    			sidecar,
    			networking.ListenerClassSidecarOutbound,
    			networking.ListenerProtocolHTTP,
    			nil,
    			map[string]string{
    				"istio.stats": "{}",
    			},
    		},
    		{
    			"default provider prometheus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top