Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 276 for Monitoring (0.23 sec)

  1. cni/pkg/repair/monitoring.go

    package repair
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	typeLabel  = monitoring.CreateLabel("type")
    	deleteType = "delete"
    	repairType = "repair"
    	labelType  = "label"
    
    	resultLabel   = monitoring.CreateLabel("result")
    	resultSuccess = "success"
    	resultSkip    = "skip"
    	resultFail    = "fail"
    
    	podsRepaired = monitoring.NewSum(
    		"istio_cni_repair_pods_repaired_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 22:14:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. pilot/pkg/model/monitoring.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import "istio.io/istio/pkg/monitoring"
    
    var providerLookupClusterFailures = monitoring.NewSum(
    	"provider_lookup_cluster_failures",
    	"Number of times a cluster lookup failed",
    )
    
    func IncLookupClusterFailures(provider string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 904 bytes
    - Viewed (0)
  3. pkg/monitoring/monitoring.go

    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    )
    
    var (
    	meter = func() api.Meter {
    		return otel.GetMeterProvider().Meter("istio")
    	}
    
    	monitoringLogger = log.RegisterScope("monitoring", "metrics monitoring")
    )
    
    func init() {
    	otel.SetLogger(log.NewLogrAdapter(monitoringLogger))
    }
    
    // RegisterPrometheusExporter sets the global metrics handler to the provided Prometheus registerer and gatherer.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/monitoring.go

    	"google.golang.org/grpc/status"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	typeTag    = monitoring.CreateLabel("type")
    	versionTag = monitoring.CreateLabel("version")
    
    	monServices = monitoring.NewGauge(
    		"pilot_services",
    		"Total services known to pilot.",
    	)
    
    	// TODO: Update all the resource stats in separate routine
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/webhooks/monitoring.go

    package webhooks
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	// webhookConfigNameTag holds the target webhook config name for the context.
    	webhookConfigNameTag = monitoring.CreateLabel("name")
    
    	// reasonTag holds the error reason for the context.
    	reasonTag = monitoring.CreateLabel("reason")
    )
    
    var (
    	metricWebhookPatchAttempts = monitoring.NewSum(
    		"webhook_patch_attempts_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/monitoring.go

    		return time.Since(serverStart).Seconds()
    	})
    
    	versionTag   = monitoring.CreateLabel("version")
    	pilotVersion = monitoring.NewGauge(
    		"pilot_info",
    		"Pilot version and build information.",
    	)
    )
    
    func init() {
    	pilotVersion.With(versionTag.Value(version.Info.String())).Record(1)
    }
    
    func addMonitor(mux *http.ServeMux) error {
    	exporter, err := monitoring.RegisterPrometheusExporter(nil, nil)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. security/pkg/monitoring/monitoring.go

    // limitations under the License.
    
    package monitoring
    
    import "istio.io/istio/pkg/monitoring"
    
    // RequestType specifies the type of request we are monitoring. Current supported are CSR and TokenExchange
    var RequestType = monitoring.CreateLabel("request_type")
    
    const (
    	TokenExchange = "token_exchange"
    	CSR           = "csr"
    )
    
    var NumOutgoingRetries = monitoring.NewSum(
    	"num_outgoing_retries",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. pkg/dns/client/monitoring.go

    package client
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	requests = monitoring.NewSum(
    		"dns_requests_total",
    		"Total number of DNS requests.",
    	)
    
    	upstreamRequests = monitoring.NewSum(
    		"dns_upstream_requests_total",
    		"Total number of DNS requests forwarded to upstream.",
    	)
    
    	failures = monitoring.NewSum(
    		"dns_upstream_failures_total",
    		"Total number of DNS failures.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 07 15:55:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. cni/pkg/monitoring/monitoring.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package monitoring
    
    import (
    	"fmt"
    	"net"
    	"net/http"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/network"
    )
    
    func SetupMonitoring(port int, path string, stop <-chan struct{}) {
    	if port <= 0 {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/metrics.h

    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tensorflow/core/lib/monitoring/gauge.h"
    #include "tensorflow/core/lib/monitoring/sampler.h"
    #include "tensorflow/core/protobuf/fingerprint.pb.h"
    
    namespace tensorflow {
    namespace metrics {
    
    const char kFingerprintFound[] = "FOUND";
    const char kFingerprintNotFound[] = "NOT_FOUND";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top