@inventsekar We have onboarded the data coming from csv files in inputs.conf as below and the data is loaded every day as new csv is created with date stamp. [monitor:<path>/file_*.csv] disabled = false sourcetype = <sourcetype> index=<index> With this config, we are getting the data into splunk and each row in csv is loaded as separate event. Query: index=<index> sourcetype=<sourcetype>. All we need is to see the data similar to csv ie. we need to have a single line header and corresponding data for those columns (just how we see when we load the csv from Add inputs via Splunk GUI). As of now, events are like as shown below and it repeats every day for new csv files 6/17/24 3:07:26.000 AM col1,col2,col3,col4,col5,col6 host = <host> source =<source> sourcetype =<sourcetype> 6/17/24 3:07:26.000 AM data1,data2,data3,data4,data5,data6 host = <host> source =<source> sourcetype =<sourcetype> We need the output in below format when we run query: col1 col2 col3 col4 col5 col6 data1 data2 data3 data4 data5 data6 Regards, Sid
... View more