Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 276 for Monitoring (0.14 sec)

  1. tensorflow/cc/saved_model/metrics.cc

    }
    
    monitoring::GaugeCell<std::string>& SavedModelReadPath() {
      return *saved_model_read_path->GetCell();
    }
    
    monitoring::GaugeCell<std::string>& SavedModelReadPathAndSingleprint() {
      return *saved_model_read_path_and_singleprint->GetCell();
    }
    
    monitoring::GaugeCell<std::string>& SavedModelWriteFingerprint() {
      return *saved_model_write_fingerprint->GetCell();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pkg/queue/metrics.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	queueIDTag   = monitoring.CreateLabel("queueID")
    	enableMetric = monitoring.WithEnabled(func() bool {
    		return features.EnableControllerQueueMetrics
    	})
    	depth = monitoring.NewGauge("pilot_worker_queue_depth", "Depth of the controller queues", enableMetric)
    
    	latency = monitoring.NewDistribution("pilot_worker_queue_latency",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. pkg/test/echo/common/metrics.go

    // limitations under the License.
    
    package common
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    type EchoMetrics struct {
    	HTTPRequests monitoring.Metric
    	GrpcRequests monitoring.Metric
    	TCPRequests  monitoring.Metric
    }
    
    var (
    	PortLabel = monitoring.CreateLabel("port")
    	Metrics   = &EchoMetrics{
    		HTTPRequests: monitoring.NewSum(
    			"istio_echo_http_requests_total",
    			"The number of http requests total",
    		),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/istio-agent/metrics/metrics.go

    // limitations under the License.
    
    package metrics
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    const (
    	Cancel = "cancelled"
    	Error  = "error"
    )
    
    var (
    	disconnectionTypeTag = monitoring.CreateLabel("type")
    
    	// IstiodConnectionFailures records total number of connection failures to Istiod.
    	IstiodConnectionFailures = monitoring.NewSum(
    		"istiod_connection_failures",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/monitoring/monitoring_test.go

    package monitoring_test
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/monitoring/monitortest"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	name = monitoring.CreateLabel("name")
    	kind = monitoring.CreateLabel("kind")
    
    	testSum = monitoring.NewSum(
    		"events_total",
    		"Number of events observed, by name and kind",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. pkg/collateral/metrics/otel_test.go

    import (
    	"testing"
    
    	"istio.io/istio/pkg/collateral/metrics"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestExportedMetrics(t *testing.T) {
    	assert.Equal(t, metrics.ExportedMetrics(), want)
    }
    
    var (
    	// AttributesTotal is a measure of the number of known attributes.
    	AttributesTotal = monitoring.NewGauge(
    		"mixer/config/attributes_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. pkg/monitoring/example_distribution_test.go

    // limitations under the License.
    package monitoring_test
    
    import "istio.io/istio/pkg/monitoring"
    
    var (
    	method = monitoring.CreateLabel("method")
    
    	receivedBytes = monitoring.NewDistribution(
    		"received_bytes_total",
    		"Distribution of received bytes by method",
    		[]float64{10, 100, 1000, 10000},
    		monitoring.WithUnit(monitoring.Bytes),
    	)
    )
    
    func ExampleNewDistribution() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 995 bytes
    - Viewed (0)
  8. samples/addons/extras/prometheus-operator.yaml

    apiVersion: monitoring.coreos.com/v1
    kind: PodMonitor
    metadata:
      name: envoy-stats-monitor
      namespace: istio-system
      labels:
        monitoring: istio-proxies
        release: istio
    spec:
      selector:
        matchExpressions:
        - {key: istio-prometheus-ignore, operator: DoesNotExist}
      namespaceSelector:
        any: true
      jobLabel: envoy-stats
      podMetricsEndpoints:
      - path: /stats/prometheus
        interval: 15s
        relabelings:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 06:41:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/collateral/metrics/otel.go

    import (
    	"strings"
    
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/slices"
    )
    
    var charReplacer = strings.NewReplacer("/", "_", ".", "_", " ", "_", "-", "")
    
    func promName(metricName string) string {
    	s := strings.TrimPrefix(metricName, "/")
    	return charReplacer.Replace(s)
    }
    
    func ExportedMetrics() []monitoring.MetricDefinition {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. manifests/charts/istio-operator/templates/deployment.yaml

            - name: istio-operator
              image: {{.Values.hub}}/operator:{{.Values.tag}}
              command:
              - operator
              - server
              - --monitoring-host={{ .Values.operator.monitoring.host }}
              - --monitoring-port={{ .Values.operator.monitoring.port }}
              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
                  - ALL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top