Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for events_errors_total (0.27 sec)

  1. cmd/metrics-v3-cluster-notification.go

    package cmd
    
    import (
    	"context"
    )
    
    const (
    	notificationCurrentSendInProgress = "current_send_in_progress"
    	notificationEventsErrorsTotal     = "events_errors_total"
    	notificationEventsSentTotal       = "events_sent_total"
    	notificationEventsSkippedTotal    = "events_skipped_total"
    )
    
    var (
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:10:35 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. docs/metrics/v3.md

    | `minio_cluster_notification_current_send_in_progress` | `counter` | Number of concurrent async Send calls active to all targets                              |        |
    | `minio_cluster_notification_events_errors_total`      | `counter` | Events that were failed to be sent to the targets                                        |        |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 17:37:57 GMT 2024
    - 28.5K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_notify_current_send_in_progress`        | Number of concurrent async Send calls active to all targets (deprecated, please use 'minio_notify_target_current_send_in_progress' instead) |
    | `minio_notify_events_errors_total`             | Events that were failed to be sent to the targets (deprecated, please use 'minio_notify_target_failed_events' instead)                      |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  4. cmd/metrics-v2.go

    					Namespace: minioNamespace,
    					Subsystem: notifySubsystem,
    					Name:      "events_errors_total",
    					Help:      "Events that were failed to be sent to the targets (deprecated, please use 'minio_notify_target_failed_events' instead)",
    					Type:      counterMetric,
    				},
    				Value: float64(nstats.EventsErrorsTotal),
    			})
    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  5. internal/event/targetlist.go

    	}
    	t.CurrentSendCalls = list.currentSendCalls.Load()
    	t.EventsSkipped = list.eventsSkipped.Load()
    	t.TotalEvents = list.totalEvents.Load()
    	t.CurrentQueuedCalls = int64(len(list.queue))
    	t.EventsErrorsTotal = list.eventsErrorsTotal.Load()
    
    	list.RLock()
    	defer list.RUnlock()
    	t.TargetStats = make(map[TargetID]TargetStat, len(list.targets))
    	for id, target := range list.targets {
    		var currentQueue int
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 9.2K bytes
    - Viewed (0)
Back to top