Re: Importing from file - assistance please
Posted: Wed Feb 24, 2016 8:37 pm
Thanks jolson,
I've appeared to get it sort of working with some redundant fields but i'll fix that up soon enough.
The histogram is now able to graph the data, but I still get occurences of the line below.
I'm assuming that because I have some data that doesn't have this field and it can't graph just those specific lines, it is shooting out this message.
Thoughts?
I've appeared to get it sort of working with some redundant fields but i'll fix that up soon enough.
Code: Select all
if [host] ==xxx.xxx.xx.xxx' {
grok {
match => ['message', '%{TIMESTAMP_ISO8601:im_timestamp}']
}
}
date {
locale => "en"
match => [ "im_timestamp", "YYYY-MM-dd HH:mm:ss,SSS"]
timezone => "Australia/Sydney"
target => "logTimestamp"
}Code: Select all
FacetPhaseExecutionException[Facet [0]: (key) field [im_timestamp] not found]Thoughts?