Getting Data In

How to parse json file to create a table for application usage.

gbatye
New Member

Hello,

I have the following data in a json file:

Format is application: days since last used.

{
"AdobePhotoshop": "34",
"VmWareFusion": "6"
}

I want to create a table that counts the number of machines within a given time range that looks something like this:

Application     usage last 7 days       usage 7-30   usage 30-90   usage over 90-
AdobePhoto                 4                            1                    5                      0
VmWareFusion             6                            5                    0                      1

Any ideas? Also does it make sense to store the data in a json format or is there a better option? Thanks!

Tags (2)
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

I'd prefer to store the data in JSON with standardized field names, something like this:

{"Applications": [
  {"Name": "AdobePhotoshop", "DaysSinceLastUse", "34"},
  {"Name": "VmWareFusion", "DaysSinceLastUse", "6"}
]}

That makes using the data very easy, you could extract the fields using spath or the appropriate props.conf settings (I think indexed_extractions = JSON), and run very easy statistics over the values, e.g. splitting by app name. Adding further properties to an application object is very simple to do here.

As your data is now, using the JSON field name makes the following search pipeline extremely clumsy, if at all feasible. It'd likely be better to regex those fields from there than relying on the JSON field names. Basically, this is no real object structure (the O in JSON).

0 Karma
Get Updates on the Splunk Community!

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer at Splunk .conf24 ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...

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 ...