Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kmsLogIf (0.71 sec)

  1. cmd/logging.go

    	logger.LogIf(ctx, "sts", err, errKind...)
    }
    
    func tierLogIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "tier", err, errKind...)
    }
    
    func kmsLogIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "kms", err, errKind...)
    }
    
    // KMSLogger permits access to kms module specific logging
    type KMSLogger struct{}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    func fetchKMSStatus(ctx context.Context) []madmin.KMS {
    	if GlobalKMS == nil {
    		return []madmin.KMS{}
    	}
    
    	stat, err := GlobalKMS.Status(ctx)
    	if err != nil {
    		kmsLogIf(ctx, err, "failed to fetch KMS status information")
    		return []madmin.KMS{}
    	}
    
    	stats := make([]madmin.KMS, 0, len(stat.Endpoints))
    	for endpoint, state := range stat.Endpoints {
    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