Getting Data In

UF status was not connected dashboard

sekhar463
Path Finder

Hi All,

we are working on to create a dashboard on UF status connection by using phone home interval in DS using search below

but while checking if forwarder phone connection last few secs in DS still it was showing as not connected in list.

please let us know what needs to be changes in the search to get exact result and also search was running slowly.

 

index=_internal source=*metrics.log group=tcpin_connections earliest=-2d@d
| eval Host=coalesce(hostname, sourceHost)
| eval age=(now()-_time)
| stats
min(age) AS age
max(_time) AS LastTime
BY Host
| convert ctime(LastTime) AS "Last Active On"
| eval Status=if(age< 1800,"Running","DOWN")
| rename age AS Age
| eval Age=tostring(Age,"duration")
| sort Status
| dedup Host
| table Host Status Age "Last Active On",
| where Status="DOWN"

Labels (2)
0 Karma

Jawahir
Communicator

In Monitoring Console you can see the forwarder status. There is an in built dashboard available for it.  

Refer for more info about the built in alert/reports: Configure forwarder monitoring for the Monitoring Console

gcusello
SplunkTrust
SplunkTrust

Hi @sekhar463,

to display forwarders' status I usually use a lookup (called e.g. perimer.csv) containing the Forwarders to monitor (eventually updated using a script) in a field called host and running a search like this:

| tstats count WHERE index=_internal BY host
| eval host=lower(host)
| append [ | inputlookup perimeter.csv | eval host=lower(host), count=0 | fields host count ]
| stats sum(count) AS total BY host
| eval status=if(total=0,"Missing","Present")
| table host status

 Ciao.

Giuseppe

Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...