Skip to content

Commit

Permalink
Merge pull request #3673 from JiHyunSong/typo/fix_metric_name
Browse files Browse the repository at this point in the history
fix metric name typo
  • Loading branch information
ashie committed Mar 15, 2022
2 parents f2a2e7d + f49615f commit 7779498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fluent/plugin/output.rb
Expand Up @@ -273,7 +273,7 @@ def configure(conf)
super

@num_errors_metrics = metrics_create(namespace: "fluentd", subsystem: "output", name: "num_errors", help_text: "Number of count num errors")
@emit_count_metrics = metrics_create(namespace: "fluentd", subsystem: "output", name: "emit_records", help_text: "Number of count emits")
@emit_count_metrics = metrics_create(namespace: "fluentd", subsystem: "output", name: "emit_count", help_text: "Number of count emits")
@emit_records_metrics = metrics_create(namespace: "fluentd", subsystem: "output", name: "emit_records", help_text: "Number of emit records")
@emit_size_metrics = metrics_create(namespace: "fluentd", subsystem: "output", name: "emit_size", help_text: "Total size of emit events")
@write_count_metrics = metrics_create(namespace: "fluentd", subsystem: "output", name: "write_count", help_text: "Number of writing events")
Expand Down

0 comments on commit 7779498

Please sign in to comment.