Kapacitor : Alerting for your timeseries
I already talk about monitoring docker with Telegraf, InfluxDB and Grafana. It’s nice, we have pretty dashboards, but it doesn’t do alerting ! Unless you sit in front of your screen all the day, you will not be warned when a container is crashing or when a friend connect on your Teamspeak channel ! Fortunaletly,…
Kapacitor : l’outil d’Alerting pour vos time series
J’ai déjà parlé du monitoring docker avec Telegraf, Influxdb et Grafana. C’est bien jolie, on a des beaux graphes, mais ça ne fait pas d’alerting. A moins de rester le nez devant les écrans toutes la journées, on ne sera pas prévenu en cas de crash d’un des conteneurs ou lorsqu’un pote se connecte au…
Zabbix – Send alerts to Slack
Today I’ve configured my Zabbix Server to automatically send alerts to the #alerting channel of my slack team. To to this, you have to create un new Incoming WebHook in your slack Team. Click on your team, select App and Integration. Search for Incoming Webhook Click « Add a configuration » Configure the webhook with the default…
Monitoring Docker with Telegraf, InfluxDB and Grafana
A small post to talk about telegraf and influxdb (aka Tick Stack, without Chronograf and Kapacitor) Telegraf Telegraf is a metrics collect tool written in Go which can collect system metrics like cpu, memory disk, and also application metrics (apache, nginx, elasticsearch, jmx, etc..) Telegraf collect metrics from « input » plugins, parse it to the correct…
Jenkins : One Jobs to Create them All [EN]
Today, I will talk about a Jenkins plugin called « Jenkins Job DSL. » It’a a plugin that allow you to create jenkins jobs from a jenkins job ! You just have to create a grovvy script to describe your job. Install the Job DSL Plugin on Jenkins To install the plugin, download the latest release here,…
Monitoring Docker avec Télégraf, InfluxDB et Grafana
Monitoring Docker avec Télégraf, InfluxDB et Grafana Un petit post pour parler de Telegraf et InfluxDB (aka TICK stack). Telegraf Telegraf est un outil de collecte de métriques écrit en Go qui permet de collecter aussi bien des métriques systèmes (cpu, ram, disques) que des métriques applicatives (apache, nginx, elasticsearch, jmx, etc..) Pour cela, telegraf…
Jenkins : One Jobs to Create them All
Salut ! Aujourd’hui je vais vous parler du plugin Jenkins Job DSL. C’est un plugin qui permet de creéer des jobs Jenkins à partir d’un fichier de conf au format groovy. installer le plugin Job DSL sur votre jenkins Pour installer le plugin, télécharger le plugin ici, puis installez le dans votre jenkins (Administrer Jenkins…
Meetup Zabbix à Lyon
Salut à tous ! avec @SteveDestivelle, on organise un Meetup Zabbix à Lyon ! Ça se passe à l’envers des pentes, un petit bar avec video projecteur et des canapés. Au programme : Une présentation de Steve sur les nouveautés de Zabbix 3.2 Une présentation de moi même sur un Patch de la Java gateway…
Wetty : un terminal dans ton navigateur
J’avais déjà fait un article sur GateOne, il y a un moment déjà. Mais celui-ci était plutôt lourd et difficile à installer. Et la dernièrement je suis tombé sur Wetty, une web app codée en NodeJS permettant d’avoir un terminal dans le navigateur ! Idéal pour pouvoir accéder à son serveur depuis le boulot quand…
Traefik : HTTP reverse proxy / Load balancer pour Docker
Lors de ma formation Docker par @emilevauge, il nous avait rapidement montré son outil de reverse proxy et load balancer écrit en Go pour Docker : Træfɪk La conf est super simple, il suffit de lui donner accès a l’API Docker (socket / port) ou n’importe quel autre Backend (Kubernetes, Etcd, consul, etc..) et traefik…