Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for errCounts (0.13 sec)

  1. cmd/site-replication-metrics.go

    	n.LastHour = n.LastHour.merge(o.LastHour)
    	n.ErrCounts = make(map[string]int)
    	maps.Copy(n.ErrCounts, rt.ErrCounts)
    	for k, v := range o.ErrCounts {
    		n.ErrCounts[k] += v
    	}
    	return n
    }
    
    // SRStats has replication stats at site level
    type SRStats struct {
    	// Total Replica size in bytes
    	ReplicaSize int64 `json:"replicaSize"`
    	// Total Replica received
    	ReplicaCount int64                `json:"replicaCount"`
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. cmd/bucket-stats.go

    			Failed:                           st.Failed,
    			FailStats:                        st.FailStats,
    		}
    		if s.Failed.ErrCounts == nil {
    			s.Failed.ErrCounts = make(map[string]int)
    			maps.Copy(s.Failed.ErrCounts, st.Failed.ErrCounts)
    		}
    		c.Stats[arn] = &s
    	}
    	return c
    }
    
    // BucketReplicationStat represents inline replication statistics
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    				v2.DeploymentID = v.DeploymentID
    			}
    			v2.ReplicatedCount += v.ReplicatedCount
    			v2.ReplicatedSize += v.ReplicatedSize
    			v2.Failed = v2.Failed.Add(v.Failed)
    			for k, v := range v.Failed.ErrCounts {
    				v2.Failed.ErrCounts[k] += v
    			}
    			if v2.XferStats == nil {
    				v2.XferStats = make(map[replication.MetricName]replication.XferStats)
    			}
    			for rm, x := range v.XferStats {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    					Value:          float64(stat.ReplicatedCount),
    					VariableLabels: map[string]string{"endpoint": stat.Endpoint},
    				})
    
    				if c, ok := stat.Failed.ErrCounts["AccessDenied"]; ok {
    					ml = append(ml, MetricV2{
    						Description:    getClusterRepCredentialErrorsMD(clusterMetricNamespace),
    						Value:          float64(c),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 133.4K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    		// Get heal status from other peers
    		peersHealStates, nerrs := globalNotificationSys.BackgroundHealStatus(ctx)
    		var errCount int
    		for _, nerr := range nerrs {
    			if nerr.Err != nil {
    				adminLogIf(ctx, nerr.Err)
    				errCount++
    			}
    		}
    		if errCount == len(nerrs) {
    			return madmin.BgHealState{}, fmt.Errorf("all remote servers failed to report heal status, cluster is unhealthy")
    		}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
Back to top