-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Figure out how to route logs in the Azure Logs integration #92
Comments
With one input + routing, we can reduce the user errors metric to zero and make the fewest storage account API calls possible. Here's the diagram to leverage routing:
If the routing rules cover all incoming log categories, the The routing option is probably the most efficient method. Here's the source code of the
|
Ouch, I probably copied and pasted an expiring URL from GitHub. Checking! |
It should be fixed now. |
How does this model work if you wanted more than 1 agent for redundancy and improved performance? |
Good question! I should update the note to add this detail. Here is a diagram showing how the two inputs work together to achieve improved redundancy and performance. Users set up diagnostic settings, sending data to an event hub (1). The two (or more) inputs start and claim an equal part of partitions. With a four-partition event hub, two inputs usually get two partitions each. Each input processes messages and sends them to the data stream in Elasticsearch. The routing (2) happens on Elasticsearch at the data stream level, so it works with one or multiple event hubs. |
This sounds great. Unfortunately the graphic won't load for me. |
I can zoom in here, looks awesome! |
Yeah, the GitHub images URL expires quickly. I usually reload the page and click on the image to get the whole picture. Let me know if you have difficulties in opening it. |
Works great now. |
Situation
The Azure Logs integration allows multiple log categories to be collected from a single event hub.
At a high level, users (1) define the event hub name and settings, and (2) the integration will use the same event hub for all the integrations.
Problem
This setup is inefficient, and we plan to change it in future releases.
Solutions
You can only use the generic integration and route logs to the right data stream using the reroute processor.
The text was updated successfully, but these errors were encountered: