November 2011
3 posts
3 tags
Tracking redmine ticket overview with munin
I got frustrated over the overview in time with graphing plugins for redmine. The ones I tried only showed me a growing curve of added tickets, it didnt show any progress or positive feedback.
I wanted the positive feedback, so I created a quick script which took the atom ticket-list and parsed through it and counted all tickets depending on status:
Just add it to the munin plugin-folder,...
3 tags
Logging incoming udp-messages with node.js
Last week, I realized I needed a quick way to set up logging of incoming udp-messages. My first idea was using netcat which is kind of a swiss army knife when it comes to network data. It worked, but for small scale mostly.
$ nc -l -u -p 4711 » udp-stream.log
This makes netcat listen on port 4711 and append the output to the log file. However, after each connection, the daemon is closed...
Google chrome segfaults after upgrade on debian...
GAH! Frustration, google chrome, my thrustworthy companion everyday stopped working today. Segfaulted.
It happened after a reboot, it might have been that I hadnt restarted chrome for a week or two or something like that. The battery went dead which made it hard-reboot. After boot, chrome segfaulted, likely because the version got updated(not entirely sure yet).
I realized that there was a...