@Juris
The default filter value of 7 days is hardcoded in Hue.
You can find this set in your cluster hosts
/usr/lib/hue/apps/jobbrowser/src/jobbrowser/templates/job_browser.mako
[default file] as shown below. As a workaround this file can be edited across all hosts followed by Hue restart but changes would persist for all users. We generally don't recommend to edit the install files but just providing you with the information here.
self.timeValueFilter = ko.observable (7).extend({ throttle: 500 });
self.timeUnitFilter = ko.observable ('days').extend({ throttle: 500 });
Hope this helps,
Paras
Was your question answered? Make sure to mark the answer as the accepted solution.
If you find a reply useful, say thanks by clicking on the thumbs up button.