rubrikinc / fluent-plugin-throttle

Rate limiting for fluentd
Apache License 2.0
41 stars 24 forks source link

td-agent stop emitting the log after rate limit exceeds #16

Open hmlmail opened 3 years ago

hmlmail commented 3 years ago

Hi, we limit the application access log to 1 log per second(see below config), but the td-agent stops emitting the logs completely instead of emitting expected 1 log per second. Is this a known issue or we have the wrong settings?

Thank you!!

<filter access.log>
  @type throttle
  group_key path
  group_bucket_period_s   1
  group_bucket_limit    1
  group_reset_rate_s     1
</filter>