Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for newCounter (0.21 sec)

  1. src/cmd/internal/telemetry/telemetry.go

    		TelemetryDir: os.Getenv("TEST_TELEMETRY_DIR"),
    	})
    }
    
    // Inc increments the counter with the given name.
    func Inc(name string) {
    	counter.Inc(name)
    }
    
    // NewCounter returns a counter with the given name.
    func NewCounter(name string) *counter.Counter {
    	return counter.New(name)
    }
    
    // NewStackCounter returns a new stack counter with the given name and depth.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/metrics/metrics.go

    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    const GarbageCollectorControllerSubsystem = "garbagecollector_controller"
    
    var (
    	GarbageCollectorResourcesSyncError = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      GarbageCollectorControllerSubsystem,
    			Name:           "resources_sync_error_total",
    			Help:           "Number of garbage collector resources sync errors",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 19:21:30 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. pkg/registry/core/service/portallocator/controller/metrics.go

    		},
    		[]string{"type"},
    	)
    	// nodePortRepairReconcileErrors indicates the number of times the repair loop has failed to repair
    	// the errors it detected.
    	nodePortRepairReconcileErrors = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "reconcile_errors_total",
    			Help:           "Number of reconciliation failures on the nodeport repair reconcile loop",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pkg/controller/tainteviction/metrics/metrics.go

    )
    
    const taintEvictionControllerSubsystem = "taint_eviction_controller"
    
    var (
    	// PodDeletionsTotal counts the number of Pods deleted by TaintEvictionController since its start.
    	PodDeletionsTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      taintEvictionControllerSubsystem,
    			Name:           "pod_deletions_total",
    			Help:           "Total number of Pods deleted by TaintEvictionController since its start.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. pkg/monitoring/counter.go

    	baseMetric
    	c api.Float64Counter
    	// precomputedAddOption is just a precomputation to avoid allocations on each record call
    	precomputedAddOption []api.AddOption
    }
    
    var _ Metric = &counter{}
    
    func newCounter(o options) *counter {
    	c, err := meter().Float64Counter(o.name,
    		api.WithDescription(o.description),
    		api.WithUnit(string(o.unit)))
    	if err != nil {
    		log.Fatalf("failed to create counter: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/controller/metrics.go

    		},
    		[]string{"type"},
    	)
    	// clusterIPRepairReconcileErrors indicates the number of times the repair loop has failed to repair
    	// the errors it detected.
    	clusterIPRepairReconcileErrors = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "reconcile_errors_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/help.go

    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"text/template"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/go/internal/base"
    	"cmd/internal/telemetry"
    )
    
    var counterErrorsHelpUnknownTopic = telemetry.NewCounter("go/errors:help-unknown-topic")
    
    // Help implements the 'help' command.
    func Help(w io.Writer, args []string) {
    	// 'go help documentation' generates doc.go.
    	if len(args) == 1 && args[0] == "documentation" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/toolchain/switch.go

    	fmt.Fprintf(os.Stderr, "go: %v requires go >= %v; switching to %v\n", s.TooNew.What, s.TooNew.GoVersion, tv)
    	counterSwitchExec.Inc()
    	Exec(tv)
    	panic("unreachable")
    }
    
    var counterSwitchExec = telemetry.NewCounter("go/toolchain/switch-exec")
    
    // SwitchOrFatal attempts a toolchain switch based on the information in err
    // and otherwise falls back to base.Fatal(err).
    func SwitchOrFatal(ctx context.Context, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pkg/monitoring/monitoring.go

    		Name:        name,
    		Type:        "Sum",
    		Description: description,
    	})
    	o, dm := createOptions(name, description, opts...)
    	if dm != nil {
    		return dm
    	}
    	return newCounter(o)
    }
    
    // NewGauge creates a new Gauge Metric. That means that data collected by the new
    // Metric will export only the last recorded value.
    func NewGauge(name, description string, opts ...Options) Metric {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. pkg/kubelet/winstats/network_stats_test.go

    }
    
    func TestNetworkGetDataFailures(t *testing.T) {
    	netCounter := newFakedNetworkCounters(true)
    
    	_, err := netCounter.getData()
    	expectedMsg := "Expected getDataList error."
    	if err == nil || err.Error() != expectedMsg {
    		t.Fatalf("expected error message `%s` but got `%v`", expectedMsg, err)
    	}
    
    	_, err = netCounter.getData()
    	netCounter.packetsReceivedPerSecondCounter.(*fakePerfCounterImpl).raiseError = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top