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!

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Answers Content Calendar, July Edition I

Hello Community! Welcome to another month of Community Content Calendar series! For the month of July, we will ...