How to Increase checkpoint interval in azure event Hub logstash

input {
azure_event_hubs {
event_hub_connections => ["${CLCEHPRIMARYCONNECTIONSTRING};EntityPath=cef"]
storage_connection => "${CLCSTORAGEPRIMARYENDPOINT}"
checkpoint_interval => 60
storage_container => "offsets-parser-cef"
threads => 33
decorate_events => true
consumer_group => "${CLCEHCONSUMERGROUP}"
codec => "cef"
max_batch_size => 290
}
}

when i tried this code , Output events rate is still keep coming default 5secs for checkpoint interval , please advise how can i achieve increase log ingestion time to more than 5 secs to 60 secs that is 1 mins check point interval.

any inputs or feedback is highly appreciated.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.