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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...