Category: Blog

  • logstash-gelf 1.4.1 released

    I’ve released today logstash-gelf 1.4.1, I’ll be available until this evening on Maven Central.

  • Integrating Logstash with JBoss

    Logstash is one of the hottest tools when it comes to log management. There are lots of integration possibilities in standalone or web applications. But what if you want to capture the whole log output of your JBoss server? Take a look at the snippets.

  • visualizr – Show your data

    visualizr – Show your data Once in a while I get in touch with lots of time based data, such as monitoring or profiling values. Calls per minute, actions per time unit and so on. Having such data is a great value but having it visualized gives a different impression instead looking at numbers. I’ve…

  • Come back to projects

    It happens currently all the time. I’m always coming back to projects I worked on. Over and over I’m meeting old coworkers and colleagues. Same faces, sometimes a bit older than I left them. This raises mixed feelings. It’s sort of coming home, thus it is different.

  • Increasing throughput performance using parallelism

    Increasing throughput performance using parallelism

    Traditional applications progress sequentially. This was ok for a certain time, multi-threading, concurrency and parallelism are hard to code right. With growing requirements to performance, large scale data and user base, application have to progress concurrently and even parallelize tasks. Using Akka for event distribution and processing enables applications to work on different tasks in parallel in…

  • Logging Hadoop messages into Logstash using logstash-gelf

    Operating a Hadoop cluster means lots of daemons running on lots of machines. When it comes to the logs, and you’re searching for something, it can get nasty, since you do not know, where to search.

  • Distributed web sessions using MongoDB and a lightweight session facade

    Distributed web sessions using MongoDB and a lightweight session facade

    Stateless services are the easiest to scale out. Just add more machines without worrying about maintaining a state. Stateful applications are harder to scale. So are web applications with user front ends and sessions.

  • logstash-gelf 1.2.6 released

    Today I’ve released the patch 1.2.6 of logstash-gelf. This release contains a performance bugfix which caused an incident in the past.  The java.util.logging hoghandler’s publish method was synchronized. This caused stalling of different threads which ended up in a denial of service. Usually a restart of the application is sufficient to solve that problem, but…

  • Every day is a new day aka. daily mind reset

    Imagine you're talking about something today with your product owner or boss. It get's the highest priority for today, because it's cool or something. Tomorrow you're not done with it but have again a cool feature idea. Or a collegue of you. And guess what, it gain's again highest priority. And what about the first…

  • Tracking requests in a distributed environment

    Tracking requests in a distributed environment

    Central logging using logstash or Graylog is one of the most interesting topics for now. Software applications get more distributed, are partitioned into different components and are running on multiple servers. This causes the need of central logging. Central logging itself is nice. You don’t have to collect log files from multiple servers anymore. But…