Getting Data In

How to add multiple json events as one array?

yuvarajsap
New Member

I am getting output json like this:

{
    "preview": false,
    "result": {
        "job": "abdghytr",
        "Status": "STARTING",
        "_time": "2018-01-22T10:12:55.000+0000",
        "source": "/opt/CA/WorkloadAutomationAE",
        "host": "testmachine",
        "machine": "testmachine-068",
        "event": "CHANGE_STATUS"
    }
} {
    "preview": false,
    "result": {
        "job": "nscdlu8317_w15-repgii",
        "Status": "SUCCESS",
        "_time": "2018-01-22T10:12:55.000+0000",
        "source": "/opt/CA/WorkloadAutomationAE",
        "host": "testmachine",
        "machine": "testmachine-068",
        "event": "CHANGE_STATUS",
        "exitcodestatus": "0"
    }
} 

But I want the output like below with array.

[{
    "preview": false,
    "result": {
        "job": "abdghytr",
        "Status": "STARTING",
        "_time": "2018-01-22T10:12:55.000+0000",
        "source": "/opt/CA/WorkloadAutomationAE",
        "host": "testmachine",
        "machine": "testmachine-068",
        "event": "CHANGE_STATUS"
    }
}, {
    "preview": false,
    "result": {
        "job": "nscdlu8317_w15-repgii",
        "Status": "SUCCESS",
        "_time": "2018-01-22T10:12:55.000+0000",
        "source": "/opt/CA/WorkloadAutomationAE",
        "host": "testmachine",
        "machine": "testmachine-068",
        "event": "CHANGE_STATUS",
        "exitcodestatus": "0"
    }
} ]

can some one please help.

Tags (2)
0 Karma

p_gurav
Champion

Can you provide some sample raw event before indexing?

0 Karma
Get Updates on the Splunk Community!

Exciting News: The AppDynamics Community Joins Splunk!

Hello Splunkers,   I’d like to introduce myself—I’m Ryan, the former AppDynamics Community Manager, and I’m ...

The All New Performance Insights for Splunk

Splunk gives you amazing tools to analyze system data and make business-critical decisions, react to issues, ...

Good Sourcetype Naming

When it comes to getting data in, one of the earliest decisions made is what to use as a sourcetype. Often, ...