HOW-TO: set the time picker to "This month"

Hi guys,

If you go to Kibana > Settings > Advanced > time picker
it sets the default time filter on the top-right of Kibana UI
for example:
{ "from": "now-24h", "to": "now", "mode": "quick" }

Could somebody please help me and advise the equivalent
of the "Quick" mode also for the option This month

How the JSON setting would look like then ?

Nikos

Hi Nikos,

I believe the value you are looking for is:

{
  "from": "now/M",
  "to": "now/M",
  "mode": "quick"
}
1 Like

Thanks. Indeed.