All Apps and Add-ons

Dash Board

RAYUDU_NARA
Explorer

I want to show the services names and the status of the services on one dash board.

0 Karma

niketn
Legend

@RAYUDU_NARA, can you please try the following run anywhere search based on the sample data provided?

| makeresults
| eval _raw="The profiles present in the environment are: Dmgr01,arglr2p,arglr2s,arglr2s_solr,arglr2p_solr
The total number of profiles are: 5
the profile which we are now validating is: Dmgr01
ADMU0508I: The Deployment Manager \"dmgr\" is STARTED
DMGR is Running
the profile which we are now validating is: arglr2p
ADMU0508I: The Application Server \"server1\" is STARTED
Application Server is Running
ADMU0508I: The Node Agent \"nodeagent\" is STARTED
Node Server is Running
the profile which we are now validating is: arglr2s
ADMU0508I: The Application Server \"server1\" is STARTED
Application Server is Running
ADMU0508I: The Node Agent \"nodeagent\" is STARTED
Node Server is Running
the profile which we are now validating is: arglr2s_solr
ADMU0508I: The Application Server \"solrServer\" is STARTED
Application Server is Running
ADMU0508I: The Node Agent \"nodeagent\" is STARTED
Node Server is Running
the profile which we are now validating is: arglr2p_solr
ADMU0508I: The Application Server \"solrServer\" is STARTED
Application Server is Running
ADMU0508I: The Node Agent \"nodeagent\" is STARTED
Node Server is Running"
| rex "[^:]+:\sThe (?<ServiceType>[^\"]+)\s\"(?<Service>[^\"]+)\"\sis\s(?<Status>[^\s]+)" max_match=0
| eval data=mvzip(Service,mvzip(ServiceType,Status)) 
| fields - _raw
| fields data
| mvexpand data
| eval data=split(data,",")
| eval Service=mvindex(data,0)
| eval ServiceType=mvindex(data,1)
| eval Status=mvindex(data,2)
| fields - data
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

RAYUDU_NARA
Explorer

Thank you Niketnilay.

0 Karma
Get Updates on the Splunk Community!

Mastering Data Pipelines: Unlocking Value with Splunk

 In today's AI-driven world, organizations must balance the challenges of managing the explosion of data with ...

The Latest Cisco Integrations With Splunk Platform!

Join us for an exciting tech talk where we’ll explore the latest integrations in Cisco &#43; Splunk! We’ve ...

AI Adoption Hub Launch | Curated Resources to Get Started with AI in Splunk

Hey Splunk Practitioners and AI Enthusiasts! It’s no secret (or surprise) that AI is at the forefront of ...