How to read logs contineously from azure evnet hub

Hie Everyone,

I have an integration where I have to read logs that are generated/store in azure event hub.

Will the below configuration will read logs as an when new log is generated in the hub ?
If now what I'm looking for is , If a new log is generated in azureeventhub I want the logs to be reflected in elasticsearch in no time. how can that be achieved ?

input {
   azure_event_hubs {
     config_mode => "advanced"
     threads => 2
     decorate_events => true
     consumer_group => "test123"
                 event_hubs => [
        {"audit" => {
         event_hub_connection => "Endpoint=sb://test123.servicebus.windows.net/;SharedAccessKeyName=AuditLogsSASPolicy;SharedAccessKey=abcfdjrlgjjutlkakjakmnkijj=;EntityPath=audit"
                initial_position => "beginning"
                
        }}
     ]
   }
}


output{
stdout{}
 }

Thanks is advance.

Regards,
Anusha K

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