We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue: While fetching log from event hub of different subscription its showing offset error. Conf: `input { azure_event_hubs { config_mode => "advanced" threads => 3 decorate_events => true event_hubs => [ {"insights-operational-logs" => { event_hub_connection => "conn string1 of first account" initial_position => "end" }} {"insights-operational-logs" => { event_hub_connection => "conn str2 of second account" consumer_group => "mycgroup" initial_position => "end" }} ] } }
filter { mutate { add_field => {"short_message" => "something"} } }
output { stdout {} }`
Error:
Caused by: com.microsoft.azure.eventhubs.impl.AmqpException: The supplied offset '38512' is invalid. The last offset in the system is '21976'
The text was updated successfully, but these errors were encountered:
jsvd
No branches or pull requests
Issue: While fetching log from event hub of different subscription its showing offset error.
Conf:
`input {
azure_event_hubs {
config_mode => "advanced"
threads => 3
decorate_events => true
event_hubs => [
{"insights-operational-logs" => {
event_hub_connection => "conn string1 of first account"
initial_position => "end"
}}
{"insights-operational-logs" => {
event_hub_connection => "conn str2 of second account"
consumer_group => "mycgroup"
initial_position => "end"
}}
]
}
}
filter {
mutate {
add_field => {"short_message" => "something"}
}
}
output {
stdout {}
}`
Error:
The text was updated successfully, but these errors were encountered: