You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to save a dashboard with a "now"-based date (for example, from:now-1w%2Fw) causes a fatal error:
Dashboard:
Request to Elasticsearch failed:
"MapperParsingException[failed to parse [timeTo]];
nested: MapperParsingException[failed to parse date field [now],
tried both date format [dateOptionalTime], and timestamp number with locale []];
nested: IllegalArgumentException[Invalid format: \"now\"]; "
I'm using Kibana 4.1.0.
The text was updated successfully, but these errors were encountered:
So this appears to happen when an absolute dashboard is stored first, then a now-based (eg relative) one is later stored. Elasticsearch detects the field as a date instead of the string on the first dashboard, and locks the field to type 'date' forever more. As elasticsearch does not support relative dates in its date field, an exception is thrown.
We can create a fix for this, but it will require a re-index of your .kibana index .
rashidkpc
pushed a commit
to rashidkpc/kibana
that referenced
this issue
Sep 16, 2015
Attempting to save a dashboard with a "now"-based date (for example,
from:now-1w%2Fw
) causes a fatal error:I'm using Kibana 4.1.0.
The text was updated successfully, but these errors were encountered: