Subinoy Roywork-in-progress.hashnode.dev·Nov 17, 2024Log masking and encryption at rest in Spring Boot for GDPREn route to creating a GDPR-compliant application, our first pit stop will create a simple Spring Boot application that encrypts PII fields and masks them during logging. What we will be doing... We will develop a basic application for creating and r...DiscussData SecuritySpring
Alexander Kushnirforc++ and beyondc-and-beyond.hashnode.dev·Nov 10, 2024Top C++ Logging Libraries Compared: How to Choose the Best One - part 2glog glog is a logging library released and maintained by google. According to the official documentation, the library is maintained in C++14 standard, however according to its repo it is still maintained. The library is released under BSD-3-Clause l...Discuss·297 readsC++
Mike Vincentmike-vincent.hashnode.dev·Nov 4, 2024Software Devs Picked These 2 Log FormatsIt’s 3 AM. You’re staring at a wall of logs, and every second counts. With clean, structured logs, finding the issue becomes more than a guess—it’s a direct line to the answer. In 2024’s cloud-native world of microservices, containers, and serverless...Discusslogging
Ali Hassan Khan Yousafzaialihassankhan.hashnode.dev·Oct 27, 2024Observability FundamentalsWhat is Observability?Observability refers to a system’s capability to expose its internal workings, offering insights into key metrics like CPU usage, memory status, disk activity, and request failures. This visibility helps optimize infrastructure ...Discussobservability
Alexander Kushnirforc++ and beyondc-and-beyond.hashnode.dev·Oct 26, 2024Top C++ Logging Libraries Compared: How to Choose the Best One - part 1spdlog spdlog is a veteran (first release in 2016) C++ logging library by Gabi Melman. It uses libfmt for formatting(pre-C++20). It is released under MIT license. Several highlights of the library: Header-only or compiled Formatting Single- or mul...Discuss·1 like·242 readsC++
Nahidnahidislam.hashnode.dev·Oct 25, 2024Monitoring and Observability in DevOps: Tools and Best PracticesIntroduction In the fast-paced world of DevOps, ensuring your systems are running smoothly is just as important as deploying them. Monitoring and observability play a key role in ensuring that any issues are identified and fixed before they impact th...Discusslogging
Spoorti Shettyspoorti.hashnode.dev·Oct 24, 2024Log Analyzer and Report GeneratorLogs are an essential part of daily lives for a system administrator. They offer a window into the system's events, including error messages, security warnings, and critical events that need immediate attention. However, analyzing logs manually can b...Discuss#90daysofdevops
Alexander Kushnirforc++ and beyondc-and-beyond.hashnode.dev·Oct 24, 2024Top C++ Logging Libraries Compared: How to Choose the Best One - part 0Preface One of the most powerful tools for debugging is logging. Proper logging is crucial for keeping any application healthy and performing well. Good logs help developers track events, find issues, and understand how the system behaves in both nor...Discuss·336 readscpp-libraries
Rahul Vadakkiniyilrahulvadakkiniyil.hashnode.dev·Oct 23, 2024Day 36/40 - Kubernetes Logging and MonitoringKubernetes, the powerful open-source platform for container orchestration, has become a go-to solution for managing complex applications at scale. As a DevOps engineer, logging and monitoring are two critical aspects that ensure the smooth operation ...Discuss·59 reads#40daysofkubernetes
Georgeprimalskill.blog·Oct 22, 2024How and What to Log in a ProgramThis blog post is about the DOs and DON'Ts of code logging I picked up along the way in my coding career. This is a quick list, a "cheat sheet" if you will, which I will expand on down below. DO log your program output to stderr. This is meant for b...Discuss·2 likes·330 readsProgramming Blogs