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!

App Platform's 2025 Year in Review: A Year of Innovation, Growth, and Community

As we step into 2026, it’s the perfect moment to reflect on what an extraordinary year 2025 was for the Splunk ...

Operationalizing Entity Risk Score with Enterprise Security 8.3+

Overview Enterprise Security 8.3 introduces a powerful new feature called “Entity Risk Scoring” (ERS) for ...

Unlock Database Monitoring with Splunk Observability Cloud

  In today’s fast-paced digital landscape, even minor database slowdowns can disrupt user experiences and ...