Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for loadClusterAuditMetrics (0.22 sec)

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

    		targetID)
    	auditTotalMessagesMD = NewCounterMD(auditTotalMessages,
    		"Total number of messages sent since start",
    		targetID)
    )
    
    // loadClusterAuditMetrics - `MetricsLoaderFn` for cluster audit
    // such as failed messages and total messages.
    func loadClusterAuditMetrics(_ context.Context, m MetricValues, c *metricsCache) error {
    	audit := logger.CurrentStats()
    	for id, st := range audit {
    		labels := []string{targetID, id}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 17 09:18:02 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. cmd/metrics-v3.go

    	)
    
    	clusterAuditMG := NewMetricsGroup(clusterAuditCollectorPath,
    		[]MetricDescriptor{
    			auditFailedMessagesMD,
    			auditTargetQueueLengthMD,
    			auditTotalMessagesMD,
    		},
    		loadClusterAuditMetrics,
    	)
    
    	clusterNotificationMG := NewMetricsGroup(clusterNotificationCollectorPath,
    		[]MetricDescriptor{
    			notificationCurrentSendInProgressMD,
    			notificationEventsErrorsTotalMD,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top