Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for metricsGroupOpts (0.06 sec)

  1. cmd/metrics-v2.go

    func init() {
    	clusterMetricsGroups := []*MetricsGroupV2{
    		getNodeHealthMetrics(MetricsGroupOpts{dependGlobalNotificationSys: true}),
    		getClusterStorageMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true}),
    		getClusterTierMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true}),
    		getClusterUsageMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true}),
    		getKMSMetrics(MetricsGroupOpts{dependGlobalObjectAPI: true, dependGlobalKMS: true}),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 133.4K bytes
    - Viewed (0)
  2. cmd/metrics-v2_gen.go

    	o = msgp.AppendDuration(o, z.cacheInterval)
    	// string "metricsGroupOpts"
    	o = append(o, 0xb0, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x74, 0x73)
    	o, err = z.metricsGroupOpts.MarshalMsg(o)
    	if err != nil {
    		err = msgp.WrapError(err, "metricsGroupOpts")
    		return
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 23 20:56:18 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  3. cmd/metrics-v2_gen_test.go

    	}
    }
    
    func BenchmarkMarshalMsgMetricsGroupOpts(b *testing.B) {
    	v := MetricsGroupOpts{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgMetricsGroupOpts(b *testing.B) {
    	v := MetricsGroupOpts{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top