Getting Data In

Send csv data to Http Event Collector

learnkhru
New Member

Hi,I want to send a csv pure data file as it is to splunk via Http Event Collector. How can I do it? Can I send it to /raw or /event or something?

How to make splunk to parse it properly?

Thanks

0 Karma

thambisetty
SplunkTrust
SplunkTrust

@learnkhru 

You need to have a program which will call Splunk HEC URL and post data which you would like to forward to Splunk. you can not forward/post csv file just with csv and having SPLUNK HEC endpoint without using any programming language.

There are other options to read files using Splunk. No need to use Splunk HEC.

————————————
If this helps, give a like below.
0 Karma

to4kawa
Ultra Champion

dl_json.py

import requests
import json
headers = {'accept': 'application/json', 'content-type': 'application/json'}
url = 'https://www3.nhk.or.jp/news/special/coronavirus/data/47patients-data.json'
response=requests.get(url,headers=headers)
json_obj = response.json()
f = open("output.json","w")
json.dump(json_obj, f)

It's easier to download in python like this
The csv can be parsed.

0 Karma

learnkhru
New Member

No, I meant to send a csv file to splunk's HEC

The actuall data itself in the file with the commas and everything...

Is it possible?

0 Karma
Get Updates on the Splunk Community!

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...