- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 67 for Statistics (0.06 sec)
-
cmd/metrics.go
// It creates the Prometheus Description which is used // to define metric and help string func newMinioCollector() *minioCollector { return &minioCollector{ desc: prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server", nil, nil), } } // minioCollector is the Custom Collector type minioCollector struct { desc *prometheus.Desc }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 16.6K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
```java if (!context.getConfig().isUseLeases() || !session.supports(SMB3_0)) { // Fall back to traditional oplock mechanism useOplockInstead(); } ``` ## 11. Monitoring and Metrics ### 11.1 Lease Statistics ```java public class LeaseStatistics { private final AtomicLong leasesRequested = new AtomicLong(); private final AtomicLong leasesGranted = new AtomicLong();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
private final AtomicInteger consecutiveFailures = new AtomicInteger(0); private final AtomicInteger consecutiveSuccesses = new AtomicInteger(0); // Hystrix-style windowed statistics private final RollingWindow rollingWindow = new RollingWindow(10, 1000); // 10 buckets, 1 second each /** * Create a circuit breaker with default settings *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
cmd/metrics-resource.go
func newMinioResourceCollector(metricsGroups []*MetricsGroupV2) *minioResourceCollector { return &minioResourceCollector{ metricsGroups: metricsGroups, desc: prometheus.NewDesc("minio_resource_stats", "Resource statistics exposed by MinIO server", nil, nil), } } func prepareResourceMetrics(rm ResourceMetric, subSys MetricSubsystem, requireAvgMax bool) []MetricV2 { help := resourceMetricsHelpMap[rm.Name] name := rm.Name
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 17.2K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* <li>values automatically wrapped in {@code WeakReference} or {@code SoftReference} * <li>notification of evicted (or otherwise removed) entries * <li>accumulation of cache access statistics * </ul> * * <p>These features are all optional; caches can be created using all or none of them. By default, * cache instances created by {@code CacheBuilder} will not perform any type of eviction. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
} // Fall back to direct server query return directory.performDirectEnumeration(); } } ``` ## 10. Monitoring and Metrics ### 10.1 Directory Cache Statistics ```java public class DirectoryCacheStatistics { private final AtomicLong cacheHits = new AtomicLong(); private final AtomicLong cacheMisses = new AtomicLong();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
// Wait for all reconnections CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])).join(); } } ``` ## 11. Monitoring and Metrics ### 11.1 Handle Statistics ```java public class HandleStatistics { private final AtomicLong handlesRequested = new AtomicLong(); private final AtomicLong handlesGranted = new AtomicLong();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
cmd/notification.go
} } replicationStats = append(replicationStats, bucketStatsMap) return replicationStats } // GetClusterBucketStats - calls GetClusterBucketStats call on all peers for a cluster statistics view. func (sys *NotificationSys) GetClusterBucketStats(ctx context.Context, bucketName string) []BucketStats { ng := WithNPeers(len(sys.peerClients)).WithRetries(1) bucketStats := make([]BucketStats, len(sys.peerClients))
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 45.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
} /** * Get key rotation metrics * * @return metrics map containing rotation statistics */ public java.util.Map<String, Long> getKeyRotationMetrics() { java.util.Map<String, Long> metrics = new java.util.HashMap<>(); metrics.put("totalRotations", totalKeyRotations.get());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
cmd/erasure-server-pool-rebalance.go
"github.com/minio/minio/internal/logger" "github.com/minio/pkg/v3/env" "github.com/minio/pkg/v3/workers" ) //go:generate msgp -file $GOFILE -unexported // rebalanceStats contains per-pool rebalance statistics like number of objects, // versions and bytes rebalanced out of a pool type rebalanceStats struct { InitFreeSpace uint64 `json:"initFreeSpace" msg:"ifs"` // Pool free space at the start of rebalance
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 04 20:47:24 UTC 2025 - 28.9K bytes - Viewed (0)