Skip to content

Instantly share code, notes, and snippets.

View pracucci's full-sized avatar

Marco Pracucci pracucci

View GitHub Profile
@pracucci
pracucci / monitoring-web-workers-with-prometheus.md
Last active February 19, 2018 14:35
Monitoring Web Workers with Prometheus

Design

Web workers can use the Prometheus PHP client to track metrics. Such metrics are stored in memory and also copied to a shared memory from which another process in the same SysV IPC namespace can read. This design allows us to run a micro webserver in a sidecar container from which we can export Prometheus metrics collected in the worker's cli app.

IPC namespace: when deployed on K8S, two containers of the same Pod run in the same IPC namespace, while two different pods on the same host run on a different IPC namespace unless explicitly configured to all share the host's IPC running the pod with hostIPC: true.

Why this design

There are three options to export metrics to Prometheus from a cli app:

@pracucci
pracucci / kubectl-rollout-configmap
Created April 30, 2017 08:00
An hacky way to replace K8S configmap from file, optionally signaling a deployment's containers once done. Be aware that a configmap is updated on containers asynchronously and could take some time: a signal delivered before will be totally useless. I still didn't find a way to watch for a configmap update complete event, and a sleep looks even …
#!/bin/bash
# Init
OPT_FROM_FILES=
OPT_DEPLOYMENT=
OPT_CONTAINER=
OPT_SIGNAL=
OPT_YES=0
# Helper to print usage
Verifying that +pracucci is my blockchain ID. https://onename.com/pracucci
@pracucci
pracucci / gist:24e0621b0aa3f5acadd0
Last active August 29, 2015 14:13
getColorFromString()
/**
* Returns the RGB color of a string.
*/
public static int getColorFromString(String input)
{
int hash = 0;
int prc = -10;
// Generate hash
for (int i = 0; i < input.length(); i++) {
@pracucci
pracucci / gist:6d8a8c091a3e03bb0060
Created October 17, 2014 16:01
content://com.google.android.music.MusicContent/audio
Cursor cursor = getActivity().getContentResolver().query(
Uri.parse("content://com.google.android.music.MusicContent/audio"),
new String[] { "_id", "CanonicalName" }, // new String[]{"_id", "playlist_name"},
null, null, null);
// android.database.sqlite.SQLiteException: no such column: SongCount (code 1): , while compiling: SELECT null AS containerType, CanonicalAlbum, CanonicalName, max(Nid) AS Nid, Album AS album, (MIN(LocalCopyType) != 300) AS hasRemote, null AS domainParam, max(StoreAlbumId) AS StoreAlbumId, Composer AS composer, 'audio/*' AS mime_type, count(distinct(SongId)) AS _count, SongCount AS keeponSongCount, Genre AS Genre, Year AS year, Size, 0 AS bookmark, Domain, 1 AS is_music, DiscNumber, MUSIC.SourceId AS SourceId, FileDate, CanonicalAlbumArtist AS artistSort, Rating, null AS containerName, BitRate, null AS containerId, MUSIC.SourceAccount AS SourceAccount, AlbumArtist, AlbumArtistId, (MAX(LocalCopyType) I