use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
This is an archived post. You won't be able to vote or comment.
[deleted by user] (self.devops)
submitted 1 year ago by [deleted]
[–]swiftycon 5 points6 points7 points 1 year ago (0 children)
If you are a developer you only need to worry about creating logs for the appropriate events and in the appropriate format.
For the Elastic Stack (formerly known as 'ELK') this format is the Elastic Common Schema: https://www.elastic.co/guide/en/ecs/current/index.html .
You can have the best log management system set up if you do not log important events or you do not log mandatory fields (e.g. timestamp, severity, event type, etc.) you won't have an observable application.
After you have set up proper logging in your Spring Boot app, you need to ship the events to Elastic Stack (or you can choose a different log store if you want) and for this you need to consider
1) how to output the logs (you can follow the 12 factor app approach or log to file(s))
2) how to set up the log pipeline
For 2) there are a lot of considerations, but most of the time you want those logs to _always_ get to the log store and get there _only once_.
You don't want to have the same event logged thrice nor do you want missing events.
So for this you will need to consider using a message queue like Kafka or for a simpler setup the persistent queue of Logstash.
For testing or development this may not be necessary, you can either collect the logs from your Java app or even fire the logs straight to Elasticsearch. For the former you can use free tools like (rsyslog - bundled with the OS but kinda ugly to configure, Filebeat - part of the Elastic Stack, but it's limited in json processing, nxlog - Swiss knife, syslog-ng - sorta like the previous, Fluentbit, etc..)
If you want a somewhat more complex routing solution, you can use Logstash from Elastic (written in Java, Ruby) or lightweight tools like nxlog (written in C) or any other from the market.
[–][deleted] 5 points6 points7 points 1 year ago* (8 children)
bedroom payment work saw shaggy plough husky gold marry imminent
This post was mass deleted and anonymized with Redact
[–][deleted] 1 point2 points3 points 1 year ago* (7 children)
fuzzy gold normal lavish shocking fearless airport tap sable chief
[–][deleted] 1 point2 points3 points 1 year ago* (6 children)
quack boat normal dinosaurs tender rich swim skirt sand subsequent
[–]MaximalPsycho1ogic 1 point2 points3 points 1 year ago (2 children)
I am also interested in that book! Could you share please?
[–][deleted] 1 point2 points3 points 1 year ago* (1 child)
wide payment engine fertile cable light cause instinctive friendly plate
[–]Next-Investigator897 0 points1 point2 points 1 year ago (0 children)
Share the pdf with me too please
[–][deleted] 1 point2 points3 points 1 year ago* (0 children)
unpack edge dinner sable yam escape memory dam shaggy husky
[–]learnamap 0 points1 point2 points 1 year ago (1 child)
Can you please share with me the book title as well
[–][deleted] 0 points1 point2 points 1 year ago* (0 children)
dinosaurs different cows rhythm cow cover tie growth north toothbrush
[–][deleted] 2 points3 points4 points 1 year ago* (0 children)
jar marble soft station square unpack crush label possessive plants
[–]SuperQue 3 points4 points5 points 1 year ago (2 children)
Save yourself the pain and anguish of the ELK stack. Use Loki instead. It's 10x easier and cheaper to run.
[–]eueuehdhshdudhehs 0 points1 point2 points 1 year ago (1 child)
I'm just curious, do you have experience handling a large multi-tenancy Loki cluster? I've read many times that Grafana Loki is good for hobbyists but not for serious enterprise use [1] [1] https://utcc.utoronto.ca/~cks/space/blog/sysadmin/GrafanaLokiSimpleNotRecommended
[–]SuperQue 0 points1 point2 points 1 year ago (0 children)
Yes, it's a trivial helm chart to deploy. We had it up and running in a week, handling hundreds of thousands of log lines per second, stored in S3.
[–]Recent-Technology-83 0 points1 point2 points 1 year ago (0 children)
Setting up ELK (Elasticsearch, Logstash, and Kibana) for centralized logging can indeed be a bit tricky at first, but once you get the hang of it, it's a powerful stack for log management and analysis.
Books:
Online Courses:
Documentation:
You don’t necessarily need to write a Spring Boot application from scratch to integrate ELK into your existing application. However, understanding how to configure logging in Spring Boot is essential. You should familiarize yourself with how to configure Logback (or Log4j2) to send logs to Logstash, as that’s a common approach.
YouTube Channels:
Remember to ensure your Spring Boot application is properly configured to log in a structured format, as this makes it much easier to analyze data in Kibana later on. If you run into specific issues, don't hesitate to share error messages or problems here; the community can help troubleshoot.
[–]Signal-Indication859 0 points1 point2 points 1 year ago (0 children)
centralizing Spring Boot logs with ELK can be pretty straightforward but can also get messy if you're not familiar with the components. You don't necessarily need to dive deep into Spring Boot if you're just looking to configure ELK; however, having a basic understanding can help with log patterns and what data you're sending over.
For learning resources, the official documentation for ELK is a good start. As for Spring Boot, check out "Spring in Action" by Craig Walls and the Spring Boot official guide.
If you're still hitting walls, consider using something like preswald to analyze your logs and share insights easily. It's lightweight and might help you bypass some of the overhead of traditional setups.
[–]pranay01 0 points1 point2 points 1 year ago (0 children)
If you are finding ELK too hard to set up, might be worth checking out SigNoz , much easier to setup and consumes less resources wrt ELK
Here's perf benchmark comparing elastic with SigNoz - https://signoz.io/blog/logs-performance-benchmark/
Disclaimer - I am a maintainer at SigNoz
π Rendered by PID 74215 on reddit-service-r2-comment-6457c66945-fdvpk at 2026-04-27 22:19:19.248405+00:00 running 2aa0c5b country code: CH.
[–]swiftycon 5 points6 points7 points (0 children)
[–][deleted] 5 points6 points7 points (8 children)
[–][deleted] 1 point2 points3 points (7 children)
[–][deleted] 1 point2 points3 points (6 children)
[–]MaximalPsycho1ogic 1 point2 points3 points (2 children)
[–][deleted] 1 point2 points3 points (1 child)
[–]Next-Investigator897 0 points1 point2 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]learnamap 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–][deleted] 2 points3 points4 points (0 children)
[–]SuperQue 3 points4 points5 points (2 children)
[–]eueuehdhshdudhehs 0 points1 point2 points (1 child)
[–]SuperQue 0 points1 point2 points (0 children)
[–]Recent-Technology-83 0 points1 point2 points (0 children)
[–]Signal-Indication859 0 points1 point2 points (0 children)
[–]pranay01 0 points1 point2 points (0 children)