#GIT
Estados
- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
--- | |
client: | |
hosts: | |
- "es_coordinating_01.singhaiuklimited.com" | |
port: 9200 | |
url_prefix: | |
use_ssl: True | |
# The certificate file is the CA certificate used to sign all ES node certificates. | |
# Use same CA certificate to generate and sign the certificate running curator (specified in properties client_cert and client_key) | |
certificate: '/work/elk/elasticsearch-6.3.2/config/x-pack/certificate-bundle/ca/ca.crt' |
#http://pastebin.com/xGt6vv9R from yardenbar | |
output { | |
if [type] == "postfix" { | |
elasticsearch { | |
host => [ "ES_HOSTNAME" ] | |
protocol => "transport" | |
cluster => "elasticsearch" | |
index => "postfix-%{+YYYY.MM.dd}" | |
manage_template => true | |
template_overwrite => true |
Best UNIX Shell tools | |
These are a list of usages of shell commands I can't live without on UNIX-based systems. | |
Install | |
Mac OS X | |
Using Homebrew (yes, I am opinionated) you can install the following tools with the following packages: | |
brew install proctools # to install pgrep, pkill, etc. | |
brew install pstree # to be able to use pstree | |
brew install vnstat # to be able to use vnstat |
#GIT