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!

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Enhance Security Operations with Automated Threat Analysis in the Splunk EcosystemAre you leveraging ...

Splunk Developers: Go Beyond the Dashboard with These .Conf25 Sessions

  Whether you’re building custom apps, diving into SPL2, or integrating AI and machine learning into your ...

Index This | How do you write 23 only using the number 2?

July 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this month’s ...