Skip to content

Instantly share code, notes, and snippets.

View RobertoFlores's full-sized avatar

Roberto Flores S. RobertoFlores

  • n/a
  • Minneapolis, MN
View GitHub Profile
@RobertoFlores
RobertoFlores / IIS Logstash Grok
Created January 1, 2018 20:23 — forked from thejuan/IIS Logstash Grok
A Logstash Grok filter for IIS (W3C default fields + bytes sent)
filter{
grok {
match => ["message", "%{TIMESTAMP_ISO8601:log_timestamp} %{WORD:iisSite} %{IPORHOST:site} %{WORD:method} %{URIPATH:page} %{NOTSPACE:querystring} %{NUMBER:port} %{NOTSPACE:username} %{IPORHOST:clienthost} %{NOTSPACE:useragent} %{NOTSPACE:referer} %{NUMBER:response} %{NUMBER:subresponse} %{NUMBER:scstatus} %{NUMBER:bytes:int} %{NUMBER:timetaken:int}"]
}
}
@RobertoFlores
RobertoFlores / 00.howto_install_phantomjs.md
Created January 1, 2018 20:23 — forked from thejuan/00.howto_install_phantomjs.md
How to install PhantomJS on Debian/Ubuntu

How to install PhantomJS on Ubuntu

Version: 1.9.8

Platform: x86_64

First, install or update to the latest system software.

sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev