#logstash

/

      • bfraser joined the channel
      • rarruda_ has quit
      • rarruda_ joined the channel
      • thuk joined the channel
      • ircuser-1 has quit
      • is-mw has quit
      • eper has quit
      • aiRness joined the channel
      • tchiang1 joined the channel
      • tchiang has quit
      • qru has quit
      • gentunian joined the channel
      • qru joined the channel
      • eper joined the channel
      • shafjac_ joined the channel
      • tbragin joined the channel
      • intransi_ joined the channel
      • behrendsj joined the channel
      • kjstone00 joined the channel
      • shafjac_ has quit
      • eper has quit
      • colinsurprenant joined the channel
      • nemothekid joined the channel
      • bastux has quit
      • tr4nc3 joined the channel
      • JDiPierro joined the channel
      • torqu3e_ joined the channel
      • rtoren has quit
      • achan joined the channel
      • TomasNunez joined the channel
      • lucascastro joined the channel
      • simmel has quit
      • bfraser joined the channel
      • thuk has quit
      • MartinCleaver joined the channel
      • willejs has quit
      • TomasNunez has quit
      • shafjac_ joined the channel
      • hulu1522 joined the channel
      • shafjac_ has quit
      • TomasNunez joined the channel
      • bfraser joined the channel
      • Vase joined the channel
      • TomasNunez has quit
      • kjstone00 joined the channel
      • ghostpl_ joined the channel
      • gentunian joined the channel
      • rtoren joined the channel
      • thuk joined the channel
      • io_syl joined the channel
      • wschen joined the channel
      • io_syl has quit
      • thuk has quit
      • jerryitt joined the channel
      • idwer has quit
      • tbragin has quit
      • centran joined the channel
      • centran
        when doing an if in a filter and the field may contain an array how do you make sure you just switch on the first element?
      • torqu3e joined the channel
      • torqu3e_ joined the channel
      • wpf joined the channel
      • shafjac_ joined the channel
      • nemothekid joined the channel
      • shafjac_ has quit
      • chenryn joined the channel
      • gentunian has quit
      • cajoel has quit
      • NoodlesNZ has quit
      • cajoel joined the channel
      • JDiPierro has quit
      • vangap joined the channel
      • cajoel_ joined the channel
      • cajoel has quit
      • cajoel_ is now known as cajoel
      • RicardoSSP has quit
      • kireevco joined the channel
      • chenryn has quit
      • yimmy joined the channel
      • __topwobble joined the channel
      • shafjac_ joined the channel
      • tigryss__ joined the channel
      • __topwobble
        Im confused: why would you use a "date" filter versus specifying "timestamp" in your grok pattern?
      • shafjac_ has quit
      • ghostpl_ joined the channel
      • tigryss_ has quit
      • in3xes has quit
      • when groking an input that includes the timestamp string, do you normally exclude it afterwards to clean up the log, or keep it in the message?
      • whack
        __topwobble: great question!
      • kireevco has quit
      • __topwobble: so, grok's job is specifically to pull out text and give it names, like %{NUMBER:whatever} matches a text for numbers and calls the match "whatever"
      • at this point, it's still just text and has no intrinsic meaning to a computer (say, as a time concept)
      • Like, under the hood, if you ask a computer what time it is, it'll probably give you some text back, but there's an underlying data structure that allows the computer to do operations on that time value
      • like adding minutes to a time, or formatting it in a certain way, etc
      • the date filter takes a field with a time text and, based on your configuration, will parse it into something Logstash knows is "time"
      • so after you use the date filter, logstash will know what the time meaning of the text "Feb 27 19:43:00" means
      • __topwobble
        ok. but why not just include "timestamp" in your grok filter pattern?
      • whack
        you can, but it's still text at that point
      • by text, I mean some characters with no real meaning to a computer
      • __topwobble
        even if I call it "timestamp"?
      • whack
        like "Feb 27" to a human who speaks english knows this means February 27th
      • but to a computer it's a string of text with 5 characters, F, e, b, space, 2, 7
      • even if you call it timestamp
      • it's still just a piece of text named "timestamp"
      • __topwobble
        ah. i thought "timestamp" was special
      • whack
        so you use the date filter to tell Logstash to take this text and parse it
      • __topwobble
      • whack
        yeah, I admit we don't document it clearly
      • logstashbot
      • __topwobble
        im matching timestamp in every pattern right now
      • whack
        ahh ok cool!
      • So if grok is successful, you'll have a 'timestamp' field with something like "2015-03-01T19:43:00Z" or something as the text
      • you'll want to use the date filter to help logstash know what (conceptually) the time of teh event was
      • otherwise the default time (@timestamp field) is the time Logstash received it
      • which isn't correct in most cases, so you'll want to use grok (like oyu are) and date filter to tell Logstash, "No, <this> is the time the event occurred"
      • __topwobble
        in my example, "timestamp" is not getting set correctly, but seems to match
      • whack
        your date filter commented out has the wrong pattern
      • TIMESTAMP_ISO8601:timestamp will match a the TIMESTAMP_ISO8601 pattern
      • and your date filter: dd/MMM/yyyy:HH:mm:ss Z is the wrong pattern
      • you probably want match => [ "timestamp", "ISO8601" ]
      • (we provide a shorthand for the actual pattern that matches ISO8601)
      • __topwobble
        my date filter is commented out
      • cpe has quit
      • whack
        yep
      • __topwobble
        so... im confused :D updated the GIST with sample input and its output. Its got the wrong timestamp value
      • whack
        hypothetically, I'm saying, if you uncomment your date filter, it won't work because it's using the wrong pattern
      • __topwobble
        ah, right
      • whack
        "timestamp" => "2015-03-01T21:24:21.043Z", <-- looks correct to me
      • but to tell logstash "This is the real time of th eevent" you have to use the date filter
      • to set this field: "@timestamp" => "2015-03-02T03:48:29.664Z",
      • cpe joined the channel
      • jerius joined the channel
      • I Know it looks like a piece of text, but that's logstash just printing it in a way that you can read
      • __topwobble
        there it is! works now
      • I thought I need %{ after the date match
      • "ISO8601" versus %{"ISO8601"}
      • MartinCleaver has quit
      • hmm strange. I need to specify "timestamp" in both the pattern AND the date filter. I would have thought just the second
      • JempInDaKella has quit
      • JempInDaKella joined the channel
      • just read the name of every repo in github.com/logstash-plugins. Awesome stuff to come in next version it seems
      • vaxx joined the channel
      • rwhavens joined the channel
      • kjstone00 joined the channel
      • bradox has quit
      • shafjac_ joined the channel
      • vaxx has quit
      • pkdubey4u joined the channel
      • shafjac_ has quit
      • yimmy has quit
      • whack
        __topwobble: yep!