-
Notifications
You must be signed in to change notification settings - Fork 63
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
Using Logstash with Chronicles-Logger (Logback) #46
Comments
Hi Muhammad, Thank you for your question. Best Regards, |
Hi Muhammad, |
Actually just trying to see what different components chronicles provides and see how we can use in our environment. "Fast synchronous logging without losing any message before an service crashed" is what I am interesting in here. This should be specially useful for some low latency trade execution related work we are planning to do in future. |
The main difference if you use chronicle-logger is that your log messages will be persisted to disk on the local machine. Persistence via chronicle-queue will faster than writing to a standard file, and you can choose a more compact/efficient format (i.e. BINARY) for storing the messages. The drawback of this approach is that you no longer have all your log messages in a single place for easy searching. If that is still a requirement, then you'd need to create another component/process to read the log files and send them off to logstash. In a crash scenario, you'd then need to make sure you don't send duplicate log entries to logstash on restart. If you'd like some support in designing a solution, Chronicle Software can provide consultancy services to help you get the most out of the open-source products. You can find contact details on the website: |
Hi, We are currently using ELK Stack (Elastic Search / Logstash / Kibana). We use Logstash TCP appender with logback to push these logs to Logstash in our Scala projects. Is there a way, we use the current logging stack with Chronicle-Logger?
P.S. I have used chronicles-logger (version 1.1.1) from http://repo.spring.io/libs-milestone/ repository.
Thanks,
Muhammad
The text was updated successfully, but these errors were encountered: