DevOps

Maximizing Log Visibility and Reducing Costs: Effective Strategies for Managing Indexed Log Volumes in Datadog

Introduction Datadog Log Management offers powerful tools for querying, analyzing, and monitoring logs so that you have the details you need to track and investigate the performance, health, and security of your systems and applications. These logs sources can produce thousands of log events per minute, indexing all logs for querying,...

by Devendra Kumar Singh
Tag: logging
07-Sep-2024

DevOps

Strategic Logging with Loki: Managing Complex Logging in Modern IT Environments

In the rapidly evolving landscape of cloud-native technologies, efficient logging is critical for maintaining business continuity and operational excellence. As organizations increasingly adopt microservices architectures on platforms like Kubernetes, the volume and complexity of logs can quickly become overwhelming. Our project faced the...

by Nitin Kumar
Tag: logging
20-Aug-2024

Agile, Android

Elevating Testing Efficiency with Kubernetes: A Tester’s Guide

In the era of agile methodologies and DevOps practices, the traditional boundaries between roles are blurring, necessitating a collaborative approach across cross-functional teams. For testers, this entails gaining proficiency in tools beyond their traditional domain, including Kubernetes—a pivotal platform for container...

by Mahesh Sahebrao Wankhede
Tag: logging
28-Mar-2024

Drupal, Software development

A Comprehensive Guide to Logging in Drupal

In the intricate world of Drupal development, effective logging is a cornerstone for building robust and error-free websites. Logging provides developers with crucial insights into the inner workings of their applications, aiding in the identification and resolution of issues. This comprehensive guide dives deep into various logging...

by Somesh Sharma
Tag: logging
22-Feb-2024

Application Security, AWS

Creating Production Grade Microservices Architecture on AWS EKS

Introduction The main goal of this blog is to provide production-grade best practices for Microservices Infra in a way to implement the entire system easily on your own. You’ll see what an end-to-end solution looks like, including how to combine Kubernetes, AWS VPCs, data stores, CI/CD, secrets management, and a whole lot more to...

by Sanyam Munjal
Tag: logging
01-Aug-2023

AWS, DevOps

Docker Logging Methods that Fit your Deployment Strategy

With the huge success of micro-services and container technologies, most of the enterprises are migrating their architecture to the container-based solution which is more reliable and flexible as compared to monolithic architecture. Moving to containerized solution like Docker, logging each container and its insights is a new...

by Mayur Rastogi
Tag: logging
24-Feb-2017

AWS, DevOps

How to set up Log.io?

Logs are very useful as it monitors and provides important information about the program such as activities, executions, real-time data etc. Log.io is a log management tool that monitors the system and provides real-time information on the system logs. It is a simple and effective application built on top of Node.js and Socket.io....

by Anup Yadav
Tag: logging
30-Nov-2016

Technology

Collecting Tomcat logs using Fluentd and Elasticsearch

In our previous blog, we have covered the basics of fluentd, the lifecycle of fluentd events and the primary directives involved. In this blog, we'll configure fluentd to dump tomcat logs to Elasticsearch. We'll also talk about filter directive/plugin and how to configure it to add hostname field in the event stream. Fluentd...

by Arun Dhyani
Tag: logging
05-Oct-2016

AWS

log_output TABLE vs FILE inside Amazon RDS

Amazon RDS provides us with three different types of logs : 1) General Logs 2) Slow Query Logs 3) Error Logs   You can enable these logs by modifying the DB Parameter Group. 1) Enable General Log [js] Parameter Name : general_log Value : set the value to 1. Default is 0. [/js] 2) Enable Slowquery Log [js] ...

by Vikash Jha
Tag: logging
25-Feb-2015

Grails

Groovy Annotations for Logging

We use logging in our application to report and persist error and warning messages as well as info messages (e.g. runtime statistics) so that the messages can later be retrieved and analyzed. Initially we were getting an instance of Logger from LoggerFactory and uses it in our class for logging information, errors, exceptions, warnings...

by Neetesh Bhardwaj
Tag: logging
16-Dec-2014

Technology

@Log annotation

@Log : This annotation provides the log object in groovy class. By using it you don't need to create the Logger object, it automatically provides log object. Example: [groovy] import groovy.util.logging.Log @Log class Person { String name String address String city public void logDetails(){ ...

by Mohit Garg
Tag: logging
26-Sep-2012

Grails

Configuring Log4J for logging level specific logs of different packages into file using appenders

Recently i worked upon redirecting all the log related to a specified package in my project to a specific file. It seem very helpful as it provide precise context about run of your application and make it easier to debug as compare to low level debugging method such as println. Here we can also disable certain logs statement as per our...

by Tarun Pareek
Tag: logging
09-Jun-2010