Logstash Startup completed but no data loaded

I am using logstash to feed my CSV file into my elasticsearch , my logstash startup completed but the files
didn't load into the index.
I try checking by using GET /_cat/indices?v

health status index pri rep docs.count docs.deleted store.size pri.store.size
green open .marvel-es-data 1 1 3 0 7.8kb 3.9kb
green open .marvel-es-2016.03.11 1 1 801 32 584.8kb 278.1kb
green open .kibana 1 1 2 0 29.9kb 14.9kb
green open xxxxx 5 1 0 0 1.5kb 795b

Providing your config would be helpful.

input {
file {
path => ['CSV\xxx.csv']
type => "data"
start_position => "beginning"

     }

Thanks Mark.
It started when I copy and paste all the data after starting the logstash.
But in Kibana i do not see any of the field names, as i am getting the error " _csvparsefailure"

I created my index in elasticsearch,

PUT /approved
{
"mappings" : {
"default" : {
"properties" : {
"Name and Appl #" : {"type": "string", "index" : "not_analyzed" },
"Suppl #" : {"type": "integer", "index" : "not_analyzed" },
"Ace Ingrs":{"type": "string", "index" : "not_analyzed" },
"Compy #" : {"type": "string", "index" : "not_analyzed" },
"Appral Type" : {"type": "string", "index" : "not_analyzed" },
"appral date" : {"type": "date", "format" : "yyyy-MM-dd" }
}
}
}
}
;
I provided my config file. Can you please help me in resolve this.

If you are getting a _csvparsefailure then your CSV filter is wrong, what does the actual data look llke?

Also, please format your code with the </> button, it makes it easier to read.

Thanks Mark.
My csv file looks like,

And can you please tell me where I have to put the </> button.

Start by removing the elasticsearch output and swapping the file input for stdin { codec => rubydebug}.
Then run LS and push through a line of your file and check the output, then make changes and go from there.

Thanks Mark,
I removed the stdout from output and added #stdin { #codec => rubydebug #}
I am getting the same error _csvparsefailure

I just tested it and it works fine;

{
             "message" => "\"PROPRANOLOL HYDROCHLORIDE (NDA #016419)\",\"029\",\"PROPRANOLOL HYDROCHLORIDE\",\"BAXTER HLTHCARE CORP\",\"Labeling Revision\",\"04/01/2008\"",
            "@version" => "1",
          "@timestamp" => "2016-03-14T00:54:43.799Z",
                "host" => "bender.local",
    "Name and Appl. #" => "PROPRANOLOL HYDROCHLORIDE (NDA #016419)",
            "Suppl. #" => "029",
             "Act Ing" => "PROPRANOLOL HYDROCHLORIDE",
                 "Com" => "BAXTER HLTHCARE CORP",
           "Appr Type" => "Labeling Revision",
           "Appr Date" => "04/01/2008"
}

Thanks Mark.