Go Memory Profiling Gotcha

Some quick gotchas for memory profiling in Go.

Austin Burnett

5 minute read

The holidays are typically a great time to experiment, learn new things, and try to contribute back to your team. This year, I attempted to understand better how one of our command-line tools for Hipchat Data Center performs. While being feature complete, we wanted to better understand its resource consumption. Having heard so much about Go’s builtin performance tooling, I was excited to learn more and hopefully glean some valuable information to confirm assumptions and start brainstorming…

Logstash and confd

Making a dynamic Logstash container with confd.

Austin Burnett

8 minute read

In my last post I talked about making your application containers more portable in regards to logging. The way my team ended up doing this was by shipping a container along with our application container that served as a data container to mount application logs to and having Logstash run in that container with application logs as the input. I mentioned in the previous post that I had found adding as much information to the logs as you can at the source will alleviate problems later. After having…

Portable Docker Logging

Docker is a useful tool, but getting your logs while maintaining the container-host separation can be difficult.

Austin Burnett

8 minute read

In the past couple years, the way we think about our infrastructure has undergone a makeover. Without a doubt, the biggest shift in operations and infrastructure has been towards containers. As a result, we’ve been forced to question the way we do infrastructure. Before containers, you’re “deliverable” was the application itself. Your configuration management tools would provision your host to be able to run that application. With containers, you’re…