Last month time filter

Hello,

I was hoping someone could help me on how to create a time filter that would contain all the data for the preivous month.

For example, if it was the 1st of January, I would want this time filter to return all the data for December (31 days). If it was March, I would want this time filter to return all the data for February (28 or 29 days).

Thanks for your help,
Mike

Hello @Amphagory

Welcome Back!

We can add custom date picker following below navigation :

Stack Management > timepicker:quickRanges > you can add below part

{
    "from": "now/M-1M",
      "to": "now/M-1M",
    "display": "Last Month(Custom)"
}

Example :

Post adding & reloading the browser we will see the option available in the dropdown :

Thanks!!