4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 96 / 217
Newer►
  • kairosdb/kairosdb

    Il existe plusieurs alternatives à carbon, la plus connu étant surement influxdb. Celle ci est basée sur cassandra!

    +https://github.com/kairosdb/kairos-carbon

    via arnaudb

    14 novembre 2014 à 13:34:07 UTC+1 - permalink - archive.org - https://github.com/kairosdb/kairosdb
    graphite
  • FreedomLayer | Articles | Intro to Distributed Hash Tables (DHTs)

    Le principe des table de hash distribuées

    • http://www.suumitsu.eu/2014/12/11/lapres-tpb-dht-infohash-et-indexation/
    • DEFCON 18: Crawling BitTorrent DHTs for Fun 1/2 https://www.youtube.com/watch?v=v4Q_F4XmNEc
    • DEFCON 18: Crawling BitTorrent DHTs for Fun 1/2 https://www.youtube.com/watch?v=mO3DfLtKPGs
    • https://www.usenix.org/legacy/event/woot10/tech/full_papers/Wolchok.pdf
    13 novembre 2014 à 21:09:47 UTC+1 - permalink - archive.org - http://www.freedomlayer.org/articles/dht_intro.html
    dht torrent
  • Elasticsearch.org Shield | Elasticsearch

    très bien, ça manquait !

    12 novembre 2014 à 14:25:27 UTC+1 - permalink - archive.org - http://www.elasticsearch.org/overview/shield
    elasticsearch
  • headless chrome and firefox in selenium with docker
    12 novembre 2014 à 13:43:32 UTC+1 - permalink - archive.org - http://function.fr/docker-with-chrome-and-selenium-and-firefox/
    docker headless selenium
  • thumbnail
    6.10.1. tcp(), tcp6(), udp() and udp6() source options

    When receiving messages using the UDP protocol, increase the size of the UDP receive buffer on the receiver host (that is, the syslog-ng OSE server or relay receiving the messages). Note that on certain platforms, for example, on Red Hat Enterprise Linux 5, even low message load (~200 messages per second) can result in message loss, unless the so_rcvbuf() option of the source is increased. In such cases, you will need to increase the net.core.rmem_max parameter of the host (for example, to 1024000), but do not modify net.core.rmem_default parameter.

    As a general rule, increase the so_rcvbuf() so that the buffer size in kilobytes is higher than the rate of incoming messages per second. For example, to receive 2000 messages per second, set the so_rcvbuf() at least to 2 097 152 bytes.

    7 novembre 2014 à 10:50:10 UTC+1 - permalink - archive.org - http://www.balabit.com/sites/default/files/documents/syslog-ng-ose-3.3-guides/en/syslog-ng-ose-v3.3-guide-admin-en/html/reference_source_tcpudp.html
    syslog udp
  • Comment filtrer la sortie d'erreur (seulement)

    Prenons un bash qui ouput sur sa sortie standard (stdout) et sur sa sortie d'erreur (stderr) :

    cat test.bash

    echo good
    echo bad >&2
    echo vanish >&2
    echo good!

    Comment faire pour rediriger la sortie standard vers un fichier (ou /dev/null pour l'exemple) et filter la sortie d'erreur pour retirer la ligne "vanish" ?

    Pour ça il faut utiliser un process substitution :

    /root/test.bash 2> >(grep -v vanish >&2) >/dev/null

    Bien pratique dans un crontab pour recevoir un peu moins de mail lorsqu'on a des "erreurs" acceptables (rsync vanished par exemple)

    SHELL=/bin/bash

            • root /root/test.bash 2> >(grep -v vanish >&2) >/dev/null

    Pour en savoir plus sur les process substitution : http://tldp.org/LDP/abs/html/process-sub.html

    7 novembre 2014 à 10:16:11 UTC+1 - permalink - archive.org - https://links.infomee.fr/?-D0dqQ
    cron crontab indirection redirection rsync stderr stdin vanish
  • thumbnail
    Faire suivre les messages Rsyslog vers Logstash - Wooster

    Pas con le coup de bien formater les logs pour que logstash ait moins de boulot de parsing de son côté.

    6 novembre 2014 à 21:51:07 UTC+1 - permalink - archive.org - https://wooster.checkmy.ws/2014/07/rsyslog-json-logstash/
    logstash nginx
  • Docker In-depth: Volumes · Container42

    Bon article, résume très bien les volumes dans docker

    5 novembre 2014 à 22:18:45 UTC+1 - permalink - archive.org - http://container42.com/2014/11/03/docker-indepth-volumes/
    docker volume
  • When Logstash and Syslog go wrong – Kartar.Net

    Ok j'ai eu le meme probleme : le syslog input de logstash tombe systématiquement en grok failure..

    Remplaçable facilement par un udp input !

    5 novembre 2014 à 17:45:02 UTC+1 - permalink - archive.org - http://kartar.net/2014/09/when-logstash-and-syslog-go-wrong/
    grok logstash syslog udp
  • thumbnail
    git diff - Show all changed files between two Git commits - Stack Overflow

    Je prends de plus en plus le réflexe de "git init" dans certains dossiers un peu chaud qui bougent beaucoup comme des dossiers de configuration..

    Et là arrive le moment où je me pose la question : qu'est ce que j'ai touché depuis que j'ai fais mon git ini ? Et voilà la commande magique qui répond à ma question :

    git diff --name-only SHA1 SHA2

    Après si vous voulez la liste entre le premier et le dernier commit :
    git diff --name-only HEAD $(git log --format=%H | tail -1)

    5 novembre 2014 à 14:53:43 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/1552340/show-all-changed-files-between-two-git-commits
    diff file git list
  • Utiliser une commande en destination de syslog

    destination mail-alert-perl { program("/usr/local/bin/syslog-mail-perl"); };

    30 octobre 2014 à 15:26:27 UTC+1 - permalink - archive.org - http://www.softpanorama.org/Logs/Syslog_ng/configuration_examples.shtml
    syslog
  • Crontab Redirect to Log File With Date in Name

    Bon à savoir, pour rediriger la sortie standard d'un cron dans un fichier avec la date, penser à échapper les "%"

    /path/to/log/dir/$(date +\%Y-\%m-\%d).log

    30 octobre 2014 à 11:15:06 UTC+1 - permalink - archive.org - http://www.idevelopment.info/data/Oracle/DBA_tips/Unix/UNIX_7.shtml
    cron crontab log logs
  • Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache - Linode Guides & Tutorials
    28 octobre 2014 à 17:25:19 UTC+1 - permalink - archive.org - https://www.linode.com/docs/websites/apache/running-fastcgi-php-fpm-on-debian-7-with-apache
    apache fpm php
  • Dockerfile RUN, CMD, ENTRYPOINT

    D'après la doc :

    don't confuse RUN with CMD.

    RUN actually runs a command and commits the result;

    CMD does not execute anything at build time, but specifies the intended command for the image.

    An ENTRYPOINT helps you to configure a container that you can run as an executable. That is, when you specify an ENTRYPOINT, then the whole container runs as if it was just that executable.

    Unlike the behavior of the CMD instruction, The ENTRYPOINT instruction adds an entry command that will not be overwritten when arguments are passed to docker run. This allows arguments to be passed to the entry point, i.e. docker run <image> -d will pass the -d argument to the entry point.

    You can specify parameters either in the ENTRYPOINT JSON array (as in "like an exec" above), or by using a CMD instruction. Parameters in the ENTRYPOINT instruction will not be overridden by the docker run arguments, but parameters specified via a CMD instruction will be overridden by docker run arguments.


    Le RUN sert à build l'image

    Le CMD et l'ENTRYPOINT servent au moment du docker run
    Donc au final, il vaut mieux avoir un ENTRYPOINT avec des paramètres qu'on ne peut pas écraser (non overridable)
    Pourquoi pas un CMD avec des paramètres par défauts overridable

    28 octobre 2014 à 11:41:16 UTC+1 - permalink - archive.org - https://links.infomee.fr/?tKS8aQ
    docker dockerfile
  • Dockerfile - Docker Documentation
    28 octobre 2014 à 11:25:46 UTC+1 - permalink - archive.org - https://docs.docker.com/reference/builder/
    docker dockerfile
  • Best practices for writing Dockerfiles - Docker Documentation
    28 octobre 2014 à 10:35:09 UTC+1 - permalink - archive.org - https://docs.docker.com/articles/dockerfile_best-practices/
    docker dockerfile
  • Dockerfile - Docker Documentation
    28 octobre 2014 à 10:35:00 UTC+1 - permalink - archive.org - http://docs.docker.com/reference/builder/#run
    docker dockerfile
  • Top 30 Nmap Command Examples For Sys/Network Admins
    27 octobre 2014 à 22:00:50 UTC+1 - permalink - archive.org - http://www.cyberciti.biz/networking/nmap-command-examples-tutorials/
    nmap
  • Docker on C1

    docker dispo sur le lab d'online

    27 octobre 2014 à 17:11:45 UTC+1 - permalink - archive.org - https://blog.cloud.online.net/2014/10/27/docker-on-c1/
    docker online
  • Cloud computing & object storage - RunAbove

    hebergement à base de docker

    27 octobre 2014 à 15:53:50 UTC+1 - permalink - archive.org - https://www.runabove.com/index.xml
    docker
Links per page: 20 50 100
◄Older
page 96 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation