Getting Data In

how - metadata host by index and sourcetype recentTime

robf
Path Finder

This search produces the most recent timestamp for every host for aa specific index

| metadata type=hosts index=windows |
convert ctime(*Time) | table host
index recentTime

how can i break it down a level further by last tinme a host reported in for a given sourcetype and index?

eg

    host   index    sourcetype   recenttime
    host1  windows   system      30/06/2014 04:55
    host1  windows   security    30/06/2014 05:15
0 Karma

somesoni2
Revered Legend

There is no in-build metadata which gives this information grouped by index, sourcetype and host all.

You can try this to get the the timestamp of last written entry for index, sourcetype host combination. This is the fastest available search I believe for this requirement (other than @martin's which is specific to Splunk6).

|metasearch index=clm_transactions sourcetype=* host=* | stats max(_time) as recentTime by index sourcetype host

select appropriate time range for the search so that you can cover most of the host. It won't report for the hosts which have written any entries in given time range.

strive
Influencer

metadata type=hosts doesn't contain sourcetye information.

Check this

http://answers.splunk.com/answers/10005/how-to-get-host-sourcetype-and-source-from-a-single-metadata...

You may need different combinations. This link http://answers.splunk.com/tags/metadata/ has questions tagged with metadata. Some of these may help you.

0 Karma

strive
Influencer

|metasearch index=* sourcetype=* host=* | table index sourcetype host

This wont fetch recentTime

0 Karma

linu1988
Champion

Hello Rob,
If you are on Splunk 6 @martin_mueller 's answer will help you get the info.

http://answers.splunk.com/answers/145995/alert-if-source-stops-indexing

Or

you can maintain a lookup table and make the comparison with metadata.

Thanks,
L

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

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...