davidradl commented on code in PR #26316:
URL: https://github.com/apache/flink/pull/26316#discussion_r2003780312


##########
docs/layouts/shortcodes/generated/event_configuration.html:
##########
@@ -0,0 +1,60 @@
+<table class="configuration table table-bordered">
+    <thead>
+        <tr>
+            <th class="text-left" style="width: 20%">Key</th>
+            <th class="text-left" style="width: 15%">Default</th>
+            <th class="text-left" style="width: 10%">Type</th>
+            <th class="text-left" style="width: 55%">Description</th>
+        </tr>
+    </thead>
+    <tbody>
+        <tr>
+            <td><h5>events.reporter.&lt;name&gt;.&lt;parameter&gt;</h5></td>
+            <td style="word-wrap: break-word;">(none)</td>
+            <td>String</td>
+            <td>Configures the parameter &lt;parameter&gt; for the reporter 
named &lt;name&gt;.</td>
+        </tr>
+        <tr>
+            <td><h5>events.reporter.&lt;name&gt;.factory.class</h5></td>
+            <td style="word-wrap: break-word;">(none)</td>
+            <td>String</td>
+            <td>The reporter factory class to use for the reporter named 
&lt;name&gt;.</td>
+        </tr>
+        <tr>
+            <td><h5>events.reporter.&lt;name&gt;.filter.excludes</h5></td>
+            <td style="word-wrap: break-word;"></td>
+            <td>List&lt;String&gt;</td>
+            <td>The events that should be excluded for the reporter named 
&lt;name&gt;. The format is identical to <code 
class="highlighter-rouge">filter.includes</code><br /></td>
+        </tr>
+        <tr>
+            <td><h5>events.reporter.&lt;name&gt;.filter.includes</h5></td>
+            <td style="word-wrap: break-word;">"*:*:*"</td>
+            <td>List&lt;String&gt;</td>
+            <td>The events that should be included for the reporter named 
&lt;name&gt;. Filters are specified as a list, with each filter following this 
format:<br /><code 
class="highlighter-rouge">&lt;scope&gt;[:&lt;name&gt;[,&lt;name&gt;]]</code><br 
/>An event matches a filter if the scope pattern and at least one of the name 
patterns match.<br /><ul><li>scope: Filters based on the logical scope.<br 
/>Specified as a pattern where <code class="highlighter-rouge">*</code> matches 
any sequence of characters and <code class="highlighter-rouge">.</code> 
separates scope components.<br /><br />For example:<br /> "<code 
class="highlighter-rouge">jobmanager.job</code>" matches any job-related events 
on the JobManager,<br /> "<code class="highlighter-rouge">*.job</code>" matches 
all job-related events and<br /> "<code 
class="highlighter-rouge">*.job.*</code>" matches all events below the 
job-level (i.e., task/operator events etc.).<br /><br /></li><li>name: Filters 
based on the event name.<
 br />Specified as a comma-separate list of patterns where <code 
class="highlighter-rouge">*</code> matches any sequence of characters.<br /><br 
/>For example, "<code class="highlighter-rouge">*Records*,*Bytes*</code>" 
matches any event where the name contains <code 
class="highlighter-rouge">"Records" or "Bytes"</code>.</li></ul></td>

Review Comment:
   nit: comma-separate -> comma separated



-- 
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]

Reply via email to