How to see the data from the time range >=90 days in discover and alerting

Dear Experts,

Please let us know how to see or set a dashboard to view greater than 90days of data. every time we select the time range in the discover option.

You can also set an absolute date&time. See the screenshot below:
kibana

Thank You Dainel. I trying to create an alert for more than 90 days of records for my audit purpose.
I only see the "last" xx days in the option, but I need more than > 90 days old data. Could you please help me with how to set it up? I tried in-dev tools and got the expected result.

GET kafka-xxxx-xxxx.*/_search
{
"_source": ["data.xxxxxx.xxxx.xxxx","@timestamp"],
"query": {
"range": {
"@timestamp": {
"gte": "now-90d"
}
}
}
}

But unable to achieve in alerting part.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.