This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 1UamvF4dtrcfgqvXeXHS9k3jErYvYLj2C https://explorer.blockstack.org/address/1UamvF4dtrcfgqvXeXHS9k3jErYvYLj2C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 1UamvF4dtrcfgqvXeXHS9k3jErYvYLj2C https://explorer.blockstack.org/address/1UamvF4dtrcfgqvXeXHS9k3jErYvYLj2C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add field which is composed of multiple source fields. | |
filter { | |
mutate { | |
add_field => [ "hash", "%{field1}/%{field2}/%{field3}" ] | |
} | |
anonymize { | |
algorithm => "SHA1" | |
fields => [ "hash" ] | |
key => "keyvalue" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
udp { | |
type => sql | |
port => 516 | |
format => json | |
} | |
} | |
output { | |
rabbitmq { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
udp { | |
type => eventlog | |
port => 515 | |
format => json | |
} | |
} | |
output { | |
rabbitmq { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
udp { | |
type => syslog | |
port => 514 | |
} | |
} | |
output { | |
rabbitmq { | |
exchange => "logstash-exchange" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user www-data; | |
worker_processes 4; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 768; | |
# multi_accept on; | |
} | |
http { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
output { | |
elasticsearch { | |
type => "all" | |
embedded => false | |
host => "localhost" | |
port => "9300" | |
cluster => "elasticsearch" | |
node_name => "logstash" | |
} | |
} |