zentol opened a new pull request, #21762: URL: https://github.com/apache/flink/pull/21762
The e2e logs are more noisy then they need to be because the slf4j reporter logs a lot of lines even if no metrics (of a particular type) are registered. Full skip: Before: ``` =========================== Starting metrics report =========================== -- Counters ------------------------------------------------------------------- -- Gauges --------------------------------------------------------------------- -- Meters --------------------------------------------------------------------- -- Histograms ----------------------------------------------------------------- =========================== Finished metrics report =========================== ``` After: ``` Skipping metrics report because no metrics are registered. ``` Partial skip: Before: ``` =========================== Starting metrics report =========================== -- Counters ------------------------------------------------------------------- scope.simpleCounter: 0 -- Gauges --------------------------------------------------------------------- -- Meters --------------------------------------------------------------------- -- Histograms ----------------------------------------------------------------- =========================== Finished metrics report =========================== ``` After: ``` =========================== Starting metrics report =========================== -- Counters --------------------------------------------------------------------- scope.simpleCounter: 0 =========================== Finished metrics 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]
