adutra commented on code in PR #2887:
URL: https://github.com/apache/polaris/pull/2887#discussion_r2461249231
##########
runtime/service/src/main/java/org/apache/polaris/service/reporting/MetricsReporter.java:
##########
@@ -0,0 +1,8 @@
+package org.apache.polaris.service.reporting;
+
+import org.apache.iceberg.rest.requests.ReportMetricsRequest;
+
+public interface MetricsReporter {
Review Comment:
I see. Would something like this suit your needs?
```java
public interface PolarisMetricsReporter extends MetricsReporter {
void report(String catalog, TableIdentifier table, MetricsReport report);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]