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

@@ -544,7 +544,7 @@ func (api objectAPIHandlers) getObjectHandler(ctx context.Context, objectAPI Obj
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
}
@@ -555,7 +555,7 @@ func (api objectAPIHandlers) getObjectHandler(ctx context.Context, objectAPI Obj
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
}