Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,328 for Metric2 (0.24 sec)

  1. pilot/cmd/pilot-agent/metrics/metrics.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package metrics
    
    import (
    	"time"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	typeTag = monitoring.CreateLabel("type")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. releasenotes/notes/agent-metrics.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 22825
    releaseNotes:
    - |
      **Added** Prometheus metrics to istio-agent.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 300 bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/metrics-apiservice.yaml

    apiVersion: apiregistration.k8s.io/v1
    kind: APIService
    metadata:
      name: v1beta1.metrics.k8s.io
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      service:
        name: metrics-server
        namespace: kube-system
      group: metrics.k8s.io
      version: v1beta1
      insecureSkipTLSVerify: true
      groupPriorityMinimum: 100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 18:46:08 UTC 2019
    - 388 bytes
    - Viewed (0)
  4. cluster/addons/metrics-server/metrics-server-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: metrics-server
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
        kubernetes.io/cluster-service: "true"
        kubernetes.io/name: "Metrics-server"
    spec:
      selector:
        k8s-app: metrics-server
      ports:
      - port: 443
        protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 20:14:57 UTC 2017
    - 336 bytes
    - Viewed (0)
  5. cmd/metrics-v2_gen_test.go

    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    }
    
    func BenchmarkMarshalMsgMetricV2(b *testing.B) {
    	v := MetricV2{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgMetricV2(b *testing.B) {
    	v := MetricV2{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    	b.ReportAllocs()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. releasenotes/notes/gauge-empty-metrics.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue: [46977]
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 235 bytes
    - Viewed (0)
  7. cmd/metrics-v3-cache.go

    import (
    	"context"
    	"sync"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/cachevalue"
    )
    
    // metricsCache - cache for metrics.
    //
    // When serving metrics, this cache is passed to the MetricsLoaderFn.
    //
    // This cache is used for metrics that would result in network/storage calls.
    type metricsCache struct {
    	dataUsageInfo       *cachevalue.Cache[DataUsageInfo]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/metrics/testutil_test.go

    	metrics, err := legacyregistry.DefaultGatherer.Gather()
    	if err != nil {
    		t.Fatalf("Failed to gather metrics: %s", err)
    	}
    
    	counterSum := 0
    	for _, mf := range metrics {
    		if mf.GetName() != name {
    			continue // Ignore other metrics.
    		}
    		for _, metric := range mf.GetMetric() {
    			if !testutil.LabelsMatch(metric, labelFilter) {
    				continue
    			}
    			counterSum += int(metric.GetCounter().GetValue())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 24 04:26:43 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  9. cmd/bucket-replication-metrics.go

    type InQueueStats struct {
    	nowBytes   int64 `json:"-"`
    	nowCount   int64 `json:"-"`
    	histCounts metrics.Histogram
    	histBytes  metrics.Histogram
    }
    
    func newInQueueStats(r metrics.Registry, lbl string) InQueueStats {
    	histCounts := metrics.NewHistogram(metrics.NewUniformSample(100))
    	histBytes := metrics.NewHistogram(metrics.NewUniformSample(100))
    
    	r.Register("replication.queue.counts."+lbl, histCounts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	r := &dto.MetricFamily{}
    	r.Name = mf.Name
    	r.Help = mf.Help
    	r.Type = mf.Type
    	r.Metric = make([]*dto.Metric, len(mf.Metric))
    	for i, m := range mf.Metric {
    		r.Metric[i] = deepCopyMetric(m)
    	}
    	return r
    }
    
    func deepCopyMetric(m *dto.Metric) *dto.Metric {
    	r := &dto.Metric{}
    	r.Label = make([]*dto.LabelPair, len(m.Label))
    	for i, lp := range m.Label {
    		r.Label[i] = deepCopyLabelPair(lp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top