What are Docker Logs?

Docker Logging 101: Best Practices, Analytics Tools, Tutorials, and More

Alexandra Altvater Developer Tips, Tricks & Resources

For troubleshooting code, few things are more valuable to developers than logs. That’s just one reason we built Retrace, which combines logs, errors, and code level performance in a single pane of glass to give you the insights you need to quickly identify and rectify the source of problems. With the widespread popularity of Docker’s container-based solution for apps, it’s …

Ultimate log4j Tutorial for Java Logging – Best Practices, Resources and Tips

Matt Watson Developer Tips, Tricks & Resources

Logging is a critical feature of any application. In this tutorial we will cover some log4j best practices that can help you get started and improve how you do logging with log4j. What is log4j and why should you use it, or any Java logging framework? A logging framework is important for any Java/J2EE based application. By changing the configuration, …

IIS files

Where Are IIS Log Files Located? How to View IIS Logs on Windows & Azure

Matt Watson Developer Tips, Tricks & Resources

Not sure where your IIS log files are located? No problem! For a standard Windows Server, the default log location is: %SystemDrive%\inetpub\logs\LogFiles If your IIS logs are not stored in the default location, follow these directions below to look up where they are currently being stored. We also have directions below for Azure App Services & Cloud Services. Where Are …

Azure App Services logs

Where to Find Azure App Service Logs for Your App, IIS, Failed Request Tracing, etc

Barry Luijbregts Developer Tips, Tricks & Resources

Troubleshooting application problems are difficult. It takes a lot of time. I would argue that it might be the thing that we developers spend most of our time on in the cycle – write some code – F5 – find out why it didn’t work – fix – F5…. And that’s just troubleshooting locally on your own machine. When your …

Microsoft.Extensions.Logging

How to Use LoggerFactory and Microsoft.Extensions.Logging for .NET Core Logging With C#

Matt Watson Developer Tips, Tricks & Resources

If you have used .NET Core, you have probably battled with the new built-in .NET Core LoggerFactory which is in Microsoft.Extensions.Logging. It has created a lot of confusion around logging with ASP.NET Core. At Stackify, we have logging integrations for log4net, NLog, Serilog, and our direct API. We have a lot of experience with building logging appenders and libraries to work with various …

ASP.Net Core Logging

ASP.NET Core Logging Tutorial – What Still Works and What Changed?

Matt Watson Developer Tips, Tricks & Resources

If you are getting started with ASP.NET Core, you are probably wondering what has changed with logging. In short, the answer is both nothing and everything. The common logging libraries you have always used with .NET still work. Microsoft does provide its own interface for logging with .NET Core and it uses it for .NET internals. In this article, we …

The Best Log Viewer for Developers in the Universe

Matt Watson Developer Tips, Tricks & Resources

It is hard for developers to imagine troubleshooting applications problems without debug logging. When all else fails and you can’t figure out what your code is doing, our answer is to always add more logging. But unfortunately, log files can a spaghetti style mess thanks to lots of web requests happening at a single time. Prefix can organize your logging …

Finding Hidden Exceptions in Your Application with Prefix

Matt Watson Developer Tips, Tricks & Resources

Prefix enables developers to easily see what their code is doing as they write and test their code, including SQL queries, HTTP calls, errors, logs, and much more. One of the best features of Prefix is its ability to see all of the exceptions that are occurring in your code. There are 3 types of exceptions: Unhandled – the user got a …

What is APM? Overview, Common Terms, and 10 Critical APM Features

Alexandra Altvater Developer Tips, Tricks & Resources, Insights for Dev Managers, Popular

APM refers to application performance management or application performance monitoring and is an essential tool to help optimize and monitor the performance of your apps. You could argue that application performance management and application performance monitoring are the same things. Conversely, it could be argued that management infers being more proactive and monitoring only being reactive when it comes to the …

Log tagging

Log tagging creates smarter application logs #awesomelogs

Alexandra Altvater Developer Tips, Tricks & Resources

How many combined log statements do your applications and infrastructure produce in a day? 50,000? Over a million? Here at Stackify, our applications generate around 100 million log entries every day. Even after feeding them into Stackify’s powerful log management and filtering tools, it can be difficult to distill things down into meaningful, actionable diagnostics with an incredibly high volume …

Carbonite and Retrace APM

Carbonite: “We turned on Retrace, within minutes we’ve identified the performance issue”

Alexandra Altvater Stackify Product & Company Updates

” We turned on APM+ and within a couple of minutes were able to identify the issue and a few hours later push out a fix.” Who is Carbonite? Carbonite is a leading provider in backup recovery and archiving solutions for small businesses and home users.  We fuel continuity by providing powerful yet simple tools to help keep businesses in …

Context to exceptions

3 Data Sets That Bring Context to Exceptions

Craig Ferril Insights for Dev Managers

Even the smallest exception can cause material damage to your company’s operations, which, in turn can have repercussions on revenue. So it’s obviously important to have a grasp on your plan to track and troubleshoot exceptions.  It seems like a simple enough process – the exception is raised, you look at it, and then make changes to your app so …

C# Logging Best Practices

How to Take Logging to the Next Level With Improved .NET Logging Best Practices

Alexandra Altvater Developer Tips, Tricks & Resources

Logging. We should be doing this better by now! What do I mean? There are several logging frameworks and libraries out there, and most developers use one or more of them every day. A few examples off the top of my head for .Net developers are log4net, NLog, elmah, and Serilog. They are simple, easy to use and work great for …