Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 122 for Monitoring (0.51 sec)

  1. pkg/version/stats.go

    // limitations under the License.
    
    package version
    
    import "istio.io/istio/pkg/monitoring"
    
    var (
    	gitTagKey       = monitoring.CreateLabel("tag")
    	componentTagKey = monitoring.CreateLabel("component")
    	istioBuildTag   = monitoring.NewGauge(
    		"istio_build",
    		"Istio component build info",
    	)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. operator/cmd/operator/server.go

    	cmd.PersistentFlags().Uint32Var(&args.monitoring.port, "monitoring-port", metricsPort, "HTTP port to use for operator's self-monitoring information")
    }
    
    func serverCmd() *cobra.Command {
    	loggingOptions := log.DefaultOptions()
    	introspectionOptions := ctrlz.DefaultOptions()
    	sArgs := &serverArgs{}
    	serverCmd := &cobra.Command{
    		Use:   "server",
    		Short: "Starts the Istio operator server",
    		Args:  cobra.ExactArgs(0),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/metrics/metrics.go

    import (
    	"time"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	typeTag = monitoring.CreateLabel("type")
    
    	// StartupTime measures the time it takes for the agent to get ready Note: This
    	// is dependent on readiness probes. This means our granularity is correlated to
    	// the probing interval.
    	startupTime = monitoring.NewGauge(
    		"startup_duration_seconds",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/metrics.go

    // limitations under the License.
    
    package crdclient
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	typeTag  = monitoring.CreateLabel("type")
    	eventTag = monitoring.CreateLabel("event")
    
    	k8sEvents = monitoring.NewSum(
    		"pilot_k8s_cfg_events",
    		"Events from k8s config.",
    	)
    )
    
    func incrementEvent(kind, event string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 953 bytes
    - Viewed (0)
  6. tensorflow/c/eager/tfe_monitoring_reader_internal.h

    #include <memory>
    
    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    
    struct TFE_MonitoringCounterReader {
      explicit TFE_MonitoringCounterReader(const char* name) {
        counter = std::make_unique<
            ::tensorflow::monitoring::testing::CellReader<int64_t>>(name);
      }
      template <typename... LabelType>
      int64_t Read(const LabelType&... labels);
      std::unique_ptr<::tensorflow::monitoring::testing::CellReader<int64_t>>
          counter;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:14:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pkg/security/retry.go

    	return func(attempt uint) time.Duration {
    		wait := bf(attempt)
    		caLog.Warnf("ca request failed, starting attempt %d in %v", attempt, wait)
    		monitoring.NumOutgoingRetries.With(monitoring.RequestType.Value(monitoring.CSR)).Increment()
    		return wait
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/util/informermetric/informerutil.go

    package informermetric
    
    import (
    	"sync"
    
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	clusterLabel = monitoring.CreateLabel("cluster")
    
    	errorMetric = monitoring.NewSum(
    		"controller_sync_errors_total",
    		"Total number of errorMetric syncing controllers.",
    	)
    
    	mu       sync.RWMutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/monitoring/example_sum_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package monitoring_test
    
    import "istio.io/istio/pkg/monitoring"
    
    var (
    	protocol = monitoring.CreateLabel("protocol")
    
    	requests = monitoring.NewSum(
    		"requests_total",
    		"Number of requests handled, by protocol",
    	)
    )
    
    func ExampleNewSum() {
    	// increment on every http request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1005 bytes
    - Viewed (0)
Back to top