Remove date filter from haproxy parsing example.

This commit is contained in:
Wes Maldonado 2013-05-29 11:23:44 -07:00
parent e7f5d3af85
commit bdb4cd0cc7

View file

@ -10,9 +10,6 @@ describe "haproxy httplog format" do
grok { grok {
pattern => "%{HAPROXYHTTP}" pattern => "%{HAPROXYHTTP}"
} }
date {
match => ["accept_date", "dd/MMM/yyyy:HH:mm:ss.SSS"]
}
} }
CONFIG CONFIG
# Here we provide a sample log event for the testing suite. # Here we provide a sample log event for the testing suite.
@ -113,8 +110,6 @@ describe "haproxy httplog format" do
insist{ subject["http_verb"] } == ["GET"] insist{ subject["http_verb"] } == ["GET"]
insist{ subject["http_request"] } == ["/index.html"] insist{ subject["http_request"] } == ["/index.html"]
insist{ subject["http_version"] } == ["1.1"] insist{ subject["http_version"] } == ["1.1"]
# Verify date parsing
insist { subject.timestamp } == "2009-02-06T20:14:14.655Z"
end end
end end