O/p not getting in console

Hi All,
I m trying to load CSV file for that i used below config file.its running without error in cmd prompt but I didnt get output.
This my CSV File with header
cds,rtype,schoolname,districtname,countyname,charter_flag,coe_flag,dass_flag,studentgroup,currdenom,currdenom_swd,currstatus,priordenom,priordenom_swd,priorstatus,change,statuslevel,changelevel,color,box,hscutpoints,curradjustment,prioradjustment,pairshare_method,caa_denom,caa_level1_num,caa_level1_pct,caa_level2_num,caa_level2_pct,caa_level3_num,caa_level3_pct,ReportingYear
00000000000000,X,,,,,,,AA,172224,,-51.8,177009,,-52.7,0.9,2,3,2,180,,,,,,,,,,,,2018
00000000000000,X,,,,,,,AI,16662,,-36.8,17234,,-39.1,2.3,2,3,2,180,,,,,,,,,,,,2018
This is my logstash config file.
input {
file {
path => "D:/State_Dashboard/EnglishLanguageArtsLiteracy/ElaAcademicIndicator2018_V1.csv"
start_position => "beginning"
}
}
filter {
csv {
separator => ","
autodetect_column_names => true
autogenerate_column_names => true
}

      }
output {
	  stdout
		  { 
		  codec => rubydebug 
		  }
       }

cmd prompt :

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