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
Hi,
When I receive events and send them to Elastic search, I have the event timestamp in seconds. Below is the code line in processor.rb
event.set("[@metadata][azure_event_hubs][timestamp]",payload.getSystemProperties.getEnqueuedTime.getEpochSecond)
Can we have this in milliseconds so that we can calculate the time taken for logstash to process in milliseconds. Something like below
event.set("[@metadata][azure_event_hubs][timestamp]",payload.getSystemProperties.getEnqueuedTime.toEpochMilli)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When I receive events and send them to Elastic search, I have the event timestamp in seconds. Below is the code line in processor.rb
event.set("[@metadata][azure_event_hubs][timestamp]",payload.getSystemProperties.getEnqueuedTime.getEpochSecond)
Can we have this in milliseconds so that we can calculate the time taken for logstash to process in milliseconds. Something like below
event.set("[@metadata][azure_event_hubs][timestamp]",payload.getSystemProperties.getEnqueuedTime.toEpochMilli)
The text was updated successfully, but these errors were encountered: