davidradl commented on code in PR #26276:
URL: https://github.com/apache/flink/pull/26276#discussion_r1987031302
##########
docs/content/docs/ops/metrics.md:
##########
@@ -1741,6 +1741,56 @@ Note that the metrics are only available via reporters.
<td>The total number of InputSplits this data source has processed (if
the operator is a data source).</td>
<td>Gauge</td>
</tr>
+ <tr>
+ <th rowspan="7"><strong>Split</strong></th>
+ <td>watermark.currentWatermark</td>
+ <td>
+ The last watermark this split has received (in milliseconds).
+ </td>
+ <td>Gauge</td>
+ </tr>
+ <tr>
+ <td>watermark.activeTimeMsPerSecond</td>
+ <td>
+ The time (in milliseconds) this split is active (i.e. not paused due
to watermark alignment or idle due to idleness detection) per second.
+ </td>
+ <td>Gauge</td>
+ </tr>
+ <tr>
+ <td>watermark.pausedTimeMsPerSecond</td>
+ <td>
+ The time (in milliseconds) this split is paused due to watermark
alignment per second.
+ </td>
+ <td>Gauge</td>
+ </tr>
+ <tr>
+ <td>watermark.idleTimeMsPerSecond</td>
+ <td>
+ The time (in milliseconds) this split is marked idle by idleness
detection per second.
+ </td>
+ <td>Gauge</td>
+ </tr>
+ <tr>
+ <td>watermark.accumulatedActiveTimeMs</td>
+ <td>
+ Accumulated time (in milliseconds) this split was active since
registered
Review Comment:
nit: since registered -> since it was registered.
is this updated every second? If so then we should say that
same for the next 2 , it was and full stop
--
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]