The time filter is not saved as part of the toolbar and should not be in my opinion. The information panel displays data organized in a certain way, and each user should be able to change the date range of his presentation, but they will consider it necessary.
If you want to change the default kibana value, you can do this by changing the code.
Go to the file "services / timefilter.js", and there is a variable called timeDefaults . You can change it according to the default value that interests you.
In code, it looks like this:
var timeDefaults = { from: 'now-15m', to: 'now' };
The from and to properties are parsed using the ISO8601 format.
gillyb
source share