You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/fluent/plugin/output.rb
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -213,6 +213,7 @@ def initialize
213
213
@rollback_count_metrics=nil
214
214
@flush_time_count_metrics=nil
215
215
@slow_flush_count_metrics=nil
216
+
@secondary_chunk_count_metrics=nil
216
217
@enable_size_metrics=false
217
218
218
219
# How to process events is decided here at once, but it will be decided in delayed way on #configure & #start
@@ -281,6 +282,7 @@ def configure(conf)
281
282
@rollback_count_metrics=metrics_create(namespace: "fluentd",subsystem: "output",name: "rollback_count",help_text: "Number of rollbacking operations")
282
283
@flush_time_count_metrics=metrics_create(namespace: "fluentd",subsystem: "output",name: "flush_time_count",help_text: "Count of flush time")
283
284
@slow_flush_count_metrics=metrics_create(namespace: "fluentd",subsystem: "output",name: "slow_flush_count",help_text: "Count of slow flush occurred time(s)")
285
+
@secondary_chunk_count_metrics=metrics_create(namespace: "fluentd",subsystem: "output",name: "secondary_chunk_count",help_text: "Number of stored chunks in secondary")
0 commit comments