grafana: Remove minio_s3_requests_errors_total metric (#17094)

This commit is contained in:
Anis Eleuch
2023-04-27 18:55:30 +01:00
committed by GitHub
parent b28d391a22
commit 2448a9e047
3 changed files with 6 additions and 98 deletions

View File

@@ -224,7 +224,7 @@ func (api objectAPIHandlers) getObjectInArchiveFileHandler(ctx context.Context,
return
}
if !xnet.IsNetworkOrHostDown(err, true) { // do not need to log disconnected clients
logger.LogIf(ctx, fmt.Errorf("Unable to write all the data to client %w", err))
logger.LogIf(ctx, fmt.Errorf("Unable to write all the data to client: %w", err))
}
return
}
@@ -235,7 +235,7 @@ func (api objectAPIHandlers) getObjectInArchiveFileHandler(ctx context.Context,
return
}
if !xnet.IsNetworkOrHostDown(err, true) { // do not need to log disconnected clients
logger.LogIf(ctx, fmt.Errorf("Unable to write all the data to client %w", err))
logger.LogIf(ctx, fmt.Errorf("Unable to write all the data to client: %w", err))
}
return
}