I am unable to display my data in separate columns in kibana visualization

input {
file {
path => "C:/Users/zondol/data/example.csv.csv"
start_position => "beginning"
sincedb_path => "NUL"

}

}

filter {

    csv {

       separator => ";"

       columns => [",Jan","Feb","March","April"]

       }   

}

output {

elasticsearch{

 hosts => "http://localhost:9200"
 index => "months"
 document_type => "output_input_log"
}

stdout{codec => rubydebug}

}

![Visualize|690x269](upload://wspDnD4xhfBEcDR0I8QAzFBtnJb.png) 

I want all these to be in coloumns .e.g Jan= col1

Can you share what you have so far? Are you able to see the data in kibana (i.e. is it ingesting properly?)

The screenshot looks like it got wrapped in a code block.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.