We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[logs-*-]YYYY.MM.DD doesn't match logs-syslog-20150811.
[logs-*-]YYYY.MM.DD
This comes from
kibana/src/ui/public/index_patterns/_mapper.js
Line 104 in 1e555c5
var matches = all.filter(function (existingIndex) { var parsed = moment(existingIndex, indexPattern.id); return existingIndex === parsed.format(indexPattern.id); });
NB: Here we have:
existingIndex == 'logs-syslog-20150811' indexPattern.id == '[logs-*-]YYYY.MM.DD' parsed.format(indexPattern.id) == 'logs-*-2015.08.11'
Workaround is to change to:
var matches = all.filter(function (existingIndex) { var parsed = moment(existingIndex, indexPattern.id); var formatted = parsed.format(indexPattern.id); return (existingIndex === formatted) || (formatted.indexOf('*') != -1); });
NB: Consider the above patch public-domain. you can merge it (I won't sign the CLA).
The text was updated successfully, but these errors were encountered:
We're deprecating time based indices, see here: #4342
Sorry, something went wrong.
No branches or pull requests
[logs-*-]YYYY.MM.DD
doesn't match logs-syslog-20150811.This comes from
kibana/src/ui/public/index_patterns/_mapper.js
Line 104 in 1e555c5
NB: Here we have:
Workaround is to change to:
NB: Consider the above patch public-domain. you can merge it (I won't sign the CLA).
The text was updated successfully, but these errors were encountered: