- Without leveraging a broker, Logstash shouldn't be used as a shipper but it still has a place in the stack.
- Logtash acts as an ETL agent to normalize and parse your events.
- Additionally, Logstash can be used to pull from sources such as S3 buckets and CloudWatch logs.
This file contains hidden or 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
#!/bin/bash | |
USER_NAME=$1 | |
# Software Versions | |
DOCKER_COMPOSE_VERSION=1.10.0 | |
DOCKER_MACHINE_VERSION=0.9.0 | |
PACKER_VERSION=0.12.2 | |
TERRAFORM_VERSION=0.8.5 |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
#BOX = "bento/ubuntu-16.10" | |
BOX = "ubuntu/trusty64" | |
CPUS = "2" | |
HOST_NAME = "brousebox" | |
MEMORY = "1024" | |
PRIVATE_IP = "192.168.7.7" | |
USER_NAME = "jbrouse" |
Building a Universal Contact Center with Twilio and AWS Lambda
Hosts
Pam - ioPipe
Fernando - working on PluralSight
- Looking for more help to run the MeetUp.
This file contains hidden or 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
# VPC Flow Log fields | |
# version account-id interface-id srcaddr dstaddr srcport dstport protocol packets bytes start end action log-status | |
# http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/flow-logs.html#flow-log-records | |
%{NUMBER:version} %{NUMBER:account-id} %{NOTSPACE:interface-id} %{NOTSPACE:srcaddr} %{NOTSPACE:dstaddr} %{NOTSPACE:srcport} %{NOTSPACE:dstport} %{NOTSPACE:protocol} %{NOTSPACE:packets} %{NOTSPACE:bytes} %{NUMBER:start} %{NUMBER:end} %{NOTSPACE:action} %{NOTSPACE:log-status} |
NewerOlder