Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for Monitoring (0.36 sec)

  1. pkg/xds/monitoring.go

    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	Log = istiolog.RegisterScope("ads", "ads debugging")
    	log = Log
    
    	errTag  = monitoring.CreateLabel("err")
    	nodeTag = monitoring.CreateLabel("node")
    	typeTag = monitoring.CreateLabel("type")
    
    	TotalXDSInternalErrors = monitoring.NewSum(
    		"pilot_total_xds_internal_errors",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. security/pkg/server/ca/monitoring.go

    // monitoringMetrics are counters for certificate signing related operations.
    type monitoringMetrics struct {
    	CSR               monitoring.Metric
    	AuthnError        monitoring.Metric
    	Success           monitoring.Metric
    	CSRError          monitoring.Metric
    	IDExtractionError monitoring.Metric
    	certSignErrors    monitoring.Metric
    }
    
    // newMonitoringMetrics creates a new monitoringMetrics.
    func newMonitoringMetrics() monitoringMetrics {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/monitoring.go

    	VirtualHost PatchType = "vhost"
    )
    
    var (
    	patchType  = monitoring.CreateLabel("patch")
    	resultType = monitoring.CreateLabel("result")
    	nameType   = monitoring.CreateLabel("name")
    
    	envoyFilterStatus = monitoring.NewGauge(
    		"pilot_envoy_filter_status",
    		"Status of Envoy filters whether it was applied or errored.",
    		monitoring.WithEnabled(func() bool {
    			return features.EnableEnvoyFilterMetrics
    		}),
    	)
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.9K 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. 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)
  6. 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)
  7. 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)
  8. docs/metrics/README.md

    # MinIO Monitoring Guide
    
    MinIO server exposes monitoring data over endpoints. Monitoring tools can pick the data from these endpoints. This document lists the monitoring endpoints and relevant documentation.
    
    ## Healthcheck Probe
    
    MinIO server has two healthcheck related un-authenticated endpoints, a liveness probe to indicate if server is responding, cluster probe to check if server can be taken down for maintenance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

      bool control_rets_updated_{false};
      monitoring::testing::CellReader<int64_t> mlir_function_pass_fallback_count_ =
          monitoring::testing::CellReader<int64_t>(
              /* metric name */
              "/tensorflow/core/mlir_function_pass_fallback_count");
      monitoring::testing::CellReader<int64_t>
          mlir_graph_optimization_pass_fallback_count_ =
              monitoring::testing::CellReader<int64_t>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. security/pkg/server/ca/server.go

    func (s *Server) CreateCertificate(ctx context.Context, request *pb.IstioCertificateRequest) (
    	*pb.IstioCertificateResponse, error,
    ) {
    	s.monitoring.CSR.Increment()
    	caller, err := security.Authenticate(ctx, s.Authenticators)
    	if caller == nil || err != nil {
    		s.monitoring.AuthnError.Increment()
    		return nil, status.Error(codes.Unauthenticated, "request authenticate failure")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top