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!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...