Chetan Dattachetan77.hashnode.dev·Sep 19, 2023Chain of Responsibility Design PatternThe chain of responsibility is similar to a linked list. Here the node is the class that has the knowledge of the next class and the value is the method handler. This is mainly used in vending machines like ATMs and logging frameworks. ATM vending Ma...Discusschain of responsibility
Aritra Ghosharitraghosh.hashnode.dev·Sep 18, 2023How to Enable and Query Control Plane Logs in AKS with Azure MonitorReference: Microsoft documentation In Kubernetes, the Control Plane is responsible for managing the state of the cluster, including scheduling, scaling, and deploying applications. Control Plane logs are a set of logs that provide insight into the op...DiscussKubernetes
Shuvojit Sarkarblog.shuvojit.in·Sep 17, 2023How to Implement Verbose Mode in a Go CLI App Using the Standard LibraryA lot of CLI tools provide a verbose mode to get logs with additional information, which is helpful for scenarios when something breaks or when a user wants to understand in more detail what is happening in the background. It is an essential part of ...Discuss·148 readsGo Language
Ambuz Ranjanambuzrnjn33.hashnode.dev·Sep 14, 2023Empowering Secure User Impersonation: Leveraging Azure Monitor Logs and Azure AD for Enhanced Auditing and Identity ManagementUser impersonation and logging are crucial for the seamless operation and security of software applications. Microsoft's Azure brings to the table robust tools for both these tasks. Let's journey through the intricacies of user impersonation in the c...DiscussDevops
Krishna SainiforKrishna Saini's team blogkrishnasaini.hashnode.dev·Sep 12, 2023From console.log to Log Mastery: Elevating Your Software Development GameWhen working on personal projects or small-scale experiments, it's common to rely heavily on console.log debugging and getting insights into how your code is functioning. This makes sense because it's a quick and straightforward way to understand wha...Discusslogging
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Sep 4, 2023Building a Logging Middleware For A Go ServerIn this article, we are going to build a Logging middleware for a Go server built with the package net/http from the standard library. And using the new slog library added to Go 1.21 to create the logging feature. This article is for people who are s...Discuss·104 readslogging
Marcel Michaublog.marcelmichau.dev·Aug 31, 2023Reduce Azure Log Analytics Cost by Tweaking Health Checks LoggingOpen any book on building software & you will eventually spot a piece of wisdom resembling the following: Observability is important I agree with that statement. It's crucial to be able to ascertain that a system is functioning correctly, and when ...Discuss·2 likes·98 readsobservability
Nicolas Fränkelfrankel.hashnode.dev·Aug 31, 2023Send your logs to LokiOne of my current talks focuses on Observability in general and Distributed Tracing in particular, with an OpenTelemetry implementation. In the demo, I show how you can see the traces of a simple distributed system consisting of: the Apache APISIX AP...Discusslogging
Sourav Kumarsouravk.hashnode.dev·Aug 30, 2023Journalctl and system loggingHey Everyone in today's blog we will know what is journalctl and the use of this command. What is Journalctl? journald is part of systemd that deals with logging. systemd, at its core, is incharge of managing services: it starts them up and keeps the...Discusssystemd
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Aug 28, 2023Exploring Slog package: The new log library of The Go Programming LanguageDISCLAIMER: This is not a comprehensive article about the Slog package. This article covers how to create info, warning and error logs; and how to use the level feature, the TextHandler and JSONHandler. Slog Package The Slog package is a logging pack...Discuss·37 readsGo Language