Splunk Enterprise

Help to list the .conf files from conf objects

PraveenaR
Explorer

I need to get the list of .conf files.

On running my below Splunk Query,

"| rest /services/configs/conf-props"

it returns the conf objects, but I need to find the .conf files instead of objects.

Any help would be appreciated!

Thanks!

Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Try | rest /servicesNS/-/-/properties

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

Try | rest /servicesNS/-/-/properties

---
If this reply helps you, Karma would be appreciated.

PraveenaR
Explorer

@richgalloway ,

In similar way I need to list all the macros as files instead of config objects.

Any help would be appreciated.

Thanks!

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

I think that you can found answers from this conf presentation:

r. Ismo

PraveenaR
Explorer

@richgalloway ,

The query you mentioned helps to display the properties as config objects, but not as files.

My use case is to list as files from the config objects listed.

Any help on this would be appreciated.

Thanks!

0 Karma

PraveenaR
Explorer

Thanks for quick response!

I need to display both config files and views in a single query.

My Below queries work fine if I run seperately,

Queries:

1.     | rest splunk_server=local /servicesNS/-/-/data/ui/views
         | table eai:acl.sharing eai:acl.owner id
         | rename eai:acl.owner as owner, eai:acl.sharing AS sharing

2.     | rest /servicesNS/-/-/properties

My use case is to display both config files and views together with updated time.

Any help would be appreciated!

Thanks!

 

0 Karma

richgalloway
SplunkTrust
SplunkTrust

The challenge is finding common field values between the two queries so you can merge their results.

| rest splunk_server=local /servicesNS/-/-/data/ui/views
| table eai:acl.sharing eai:acl.owner id
| rename eai:acl.owner as owner, eai:acl.sharing AS sharing
| append [| rest /servicesNS/-/-/properties ]
| stats values(*) as * by <<some shared field name(s)>>

BTW, Splunk rarely updates the Updated field so I wouldn't try to use it for anything.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Combine Multiline Logs into a Single Event with SOCK: a Step-by-Step Guide for ...

Combine multiline logs into a single event with SOCK - a step-by-step guide for newbies Olga Malita The ...

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...