4339 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 115 / 217
Newer►
  • Les différentes valeurs possibles de l'attribut "type"

    Il existe plusieurs manière de grapher : GAUGE, COUNTER, DERIVE, ABSOLUTE, COMPUTE.

    Comment choisir ? dépend de ce que vous graphez :

    • si la valeur retournée par la sonde est toujours comprise dans un intervalle fixe (ram, pourcentage..) on va prendre GAUGE, pour qui, le point d'une courbe représente la valeur de la sonde à l'instant t

    • si la valeur est l'état d'un compteur (qui augmente donc indéfiniment), la GAUGE n'est pas forcément adaptée car la courbe ne fera qu'augmenter.. c'est dur de voir l'évolution de celle-ci : une anomalie serait représentée par une pente plus "ardue" à un moment donné.. au lieu d'un pic. Dans ce cas là, il vaut mieux utiliser COUNTER ou ABSOLUTE, pour qui, un point sur le graph n'est pas la valeur retournée par la sonde, mais la différence entre les deux dernieres mesures.

    ABSOLUTE donne cette valeur de maniere absolue, si votre premiere mesure donne 100, la deuxieme 122, on aura un point à 22.

    COUNTER et DERIVE rajoutent une division pour avoir le delta par seconde (/300) par exemple si la premiere valeur est 1000, la deuxieme est 1600, le delta absolu est de 600. Si la différence de temps entre les deux collectes est de 5min (300secondes), notre point sur le graph sera à 600/300 = 2

    Ce 2 signifie que, sur cet intervalle, on a eu 2 unité par seconde en moyenne.

    On peut configurer le plugin pour avoir la valeur par minute ou par heure avec graph_period : http://munin-monitoring.org/wiki/graph_period

    March 3, 2014 at 4:47:18 PM GMT+1 - permalink - archive.org - http://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html#IGAUGE
    munin
  • libvirt: Wiki: Virtio
    March 3, 2014 at 3:24:16 PM GMT+1 - permalink - archive.org - http://wiki.libvirt.org/page/Virtio
    paravirtualisation virtio virtualisation
  • NetworkConfiguration - Debian Wiki

    Bon à savoir lorsqu'on écrit des fichiers /etc/network/interfaces sous debian.
    On peut répéter les block pour faire des alias (qui ne sont pas "supportés" par la commande ip)

    March 3, 2014 at 12:25:04 PM GMT+1 - permalink - archive.org - https://wiki.debian.org/NetworkConfiguration#Multiple_IP_addresses_on_One_Interface
    configuration debian interfaces network
  • TupperVim - Mozilla Francophone

    faut que je test :D

    March 1, 2014 at 8:30:07 PM GMT+1 - permalink - archive.org - http://wiki.mozfr.org/TupperVim
    vim
  • BashGuide/InputAndOutput - Greg's Wiki

    You can avoid this by temporarily removing the indentation for the lines of your Heredocs. However, that distorts your pretty and consistent indentation. There is an alternative. If you use <<-END instead of <<END as your Heredoc operator, Bash removes any tab characters in the beginning of each line of your Heredoc content before sending it to the command. That way you can still use tabs (but not spaces) to indent your Heredoc content with the rest of your code. Those tabs will not be sent to the command that receives your Heredoc. You can also use tabs to indent your sentinel string.

    February 28, 2014 at 5:37:35 PM GMT+1 - permalink - archive.org - http://mywiki.wooledge.org/BashGuide/InputAndOutput
    bash heredoc
  • Grub tips : connaitre le kernel par defaut

    Trouver le numero du menuentry par defaut :
    grep GRUB_DEFAULT /etc/default/grub

    Ensuite, il suffit de lister les menuentry et de compter (le premier est à 0)
    grep menuentry /boot/grub/grub.cfg

    February 28, 2014 at 1:05:43 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?PsSF_A
    debian grub
  • Graphite & StatsD: Le tandem de choix pour vos métriques - Wooster

    via skunnyk

    February 28, 2014 at 11:34:21 AM GMT+1 - permalink - archive.org - http://wooster.checkmy.ws/2014/02/graphite-statsd-metrologie/
    graphite
  • TutorialCachingStory - memcached - This is a story of Caching - Memcached - Google Project Hosting

    J'adore les docs comme ça :D

    February 28, 2014 at 9:58:03 AM GMT+1 - permalink - archive.org - http://code.google.com/p/memcached/wiki/TutorialCachingStory
    memcached
  • Git, boutez les bugs, domptez votre historique!

    Quelques trucs sympas, mais encore un peu avancés pour le moment

    February 27, 2014 at 5:52:30 PM GMT+1 - permalink - archive.org - http://putaindecode.fr/posts/git/boutez-les-bugs-domptez-votre-historique/
    git
  • Easily Remove Image Backgrounds Online - Clipping Magic

    Un outil pour détourer en ligne, ça peut être utile

    via korben

    February 27, 2014 at 5:11:43 PM GMT+1 - permalink - archive.org - http://clippingmagic.com/
    detourer image photoshop
  • notsocomplicated | scratch your head

    Exemples de creation de jail fail2ban

    via arnaudb

    February 27, 2014 at 5:08:10 PM GMT+1 - permalink - archive.org - http://blog.notsocomplicated.org/2010/02/securisons-apache-avec-fail2ban/
    apache fail2ban
  • Tools | Adafruit Guide To Excellent Soldering | Adafruit Learning System
    February 27, 2014 at 3:21:54 PM GMT+1 - permalink - archive.org - http://learn.adafruit.com/adafruit-guide-excellent-soldering
    electronique
  • hub · the command-line wrapper for git

    Tiens je ne connaissais pas du tout ce wrapper.. pratique, à tester

    February 27, 2014 at 2:47:58 PM GMT+1 - permalink - archive.org - http://hub.github.com/
    git github
  • Vim tips : changer le comportement de l'autocompletion avec tab

    en ex mode, quand on veut ouvrir un autre fichier avec :split ou :vsplit par exemple, l'autocompletion ne se comporte pas de la meme maniere qu'en shell. Pour avoir le même comportement :

    set wildmode=longest,list

    tab ne va plus afficher le premier match, mais la liste des match possibles :)

    February 26, 2014 at 11:51:15 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?eMhXTQ
    tips vim
  • Vim tips : Alternative pour commenter plusieurs lignes

    avec une ex command :
    Faites une selection avec V
    Puis :normal I//<enter>

    d'une maniere générale, avec :normal on peut utiliser une "normal command"
    Couplé avec un range comme :5,15 ça devient cool
    Et encore plus avec un range "visuel" :'<,'> qu'on obtient avec un V

    February 26, 2014 at 10:59:11 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?Eb2bGQ
    tips vim
  • Fabric — Fabric 1.8.2 documentation

    encore un tool de remote

    February 25, 2014 at 5:19:28 PM GMT+1 - permalink - archive.org - http://docs.fabfile.org/en/1.8/#
    command devops remote sys
  • SaltStack

    En cherchant des infos sur ansible, je tombe sur un nième soft de configuration management (comme puppet, chef, cfengine, ansible)

    February 25, 2014 at 5:08:09 PM GMT+1 - permalink - archive.org - http://www.saltstack.com/
    configuration devops sys
  • Gunnery - Remote execution frontend

    Dans la veine d'ansible, command.io, capistrano etc

    via Skunnyk

    February 25, 2014 at 5:06:04 PM GMT+1 - permalink - archive.org - http://eyjafjallajokull.github.io/gunnery/
    command devops remote sys volcan
  • Graphitoid - Applications Android sur Google Play
    February 25, 2014 at 2:47:58 PM GMT+1 - permalink - archive.org - https://play.google.com/store/apps/details?id=com.tnc.android.graphite
    android app graphite
  • Optimiser son SSD sous Linux - P3ter.fr

    Au cas ou un jour je passe mon desktop sous linux.

    via arnaudb

    February 25, 2014 at 1:51:28 PM GMT+1 - permalink - archive.org - http://p3ter.fr/article53/optimiser-son-ssd-sous-linux
    linux ssd
Links per page: 20 50 100
◄Older
page 115 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation