Splunk Search

How to create dashboards which are useful for Juniper team to check if any down or outage?

sekhar463
Path Finder

Hi All,

Good day, I have juniper data in Splunk using sourcetype = juniper*

but need some searches to create dashboards which are useful for juniper team to check if any down or outage 

could you please tell me any  searches for this juniper dashboard 

Tags (1)
0 Karma

MYilmaz
Explorer

Hi @sekhar463  

Can u try this.

 

| tstats latest(_time) as latest_time where index=yourindex sourcetpye=juniper* by sourcetype 
| append 
    [| search index=yourindex sourcetype=juniper* 
    | eval latest_time=relative_time(now(),"-10m")] 
| stats max(*) as * by sourcetype 
| eval dif = now() - latest_time 
| search dif > 600

 

 

it will work if there is no log from any sourcetype in the last 10 minutes. You can set the time according to you.

0 Karma

sekhar463
Path Finder

what is this search will give.

if any searches to get juniper interfaces down like juniper routing neighbor down

0 Karma

MYilmaz
Explorer

This search will actually help to detect when there is no log from resource types.(interface down or any problem in logging etc.) If this is not exactly what you want, can you specify your request in more detail?

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...