I'm looking for a solution to log all requests/errors in a log file to parse logs with ELK Is there any best practice or sample? or what's the Aeron recommendation for this requirement?
Asked
Active
Viewed 230 times
1 Answers
2
Aeron can be monitored and inspected using the following tools:
https://github.com/real-logic/aeron/wiki/Monitoring-and-Debugging

Martin Thompson
- 1,341
- 8
- 11
-
I think the CnC file is an excellent solution to persist metrics but to have full logs such as stack trace, is it a good choice? – Vahid Sadeghi May 25 '22 at 19:13
-
We used a ring buffer to remove the impact of logging on the performance of the application. All we did was use Agrona Agent and develop some method to take logs and put them into ring buffer and a separate thread read from the buffer and logs it into the console. – Vahid Sadeghi Oct 05 '22 at 14:08