# Logstash startup completed does not get dislayed

**URL:** https://discuss.elastic.co/t/logstash-startup-completed-does-not-get-dislayed/62325
**Category:** Logstash
**Created:** [October 6, 2016, 3:06am UTC](https://discuss.elastic.co/t/logstash-startup-completed-does-not-get-dislayed/62325 "2016-10-06T03:06:37Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![platstar](https://avatars.discourse-cdn.com/v4/letter/p/9de053/32.png) [@platstar](https://discuss.elastic.co/u/platstar)
#### Post date: [October 6, 2016, 3:06am UTC](https://discuss.elastic.co/t/logstash-startup-completed-does-not-get-dislayed/62325/1 "2016-10-06T03:06:37Z")

</div>

Hi everyone  
I am using Window and trying to use Logstash 2.4.0. I am using the following config file

**Conf Content**  
input {  
file {  
path =\> ["D:\ELK\logstash.log\*.csv"]  
start\_position =\> "beginning"  
}  
}

filter {  
csv {  
columns =\> ["billing\_entity","invoice"]  
separator =\> ","  
}

#grok {

# match =\> { "call" =\> "%{WORD:billing\_entity} %{WORD:invoice} %{WORD:company} %{WORD:username} %{WORD:reference} %{NUMBER:line\_number} %{NUMBER:recipient\_number} %{WORD:zone} %{WORD:network} %{DATE:date} %{TIME:time} %{WORD:country} %{WORD:duration} %{NUMBER:cost} %{WORD:currency} %{WORD:call\_origin} %{WORD:billing\_type}" }

#}  
}

output {  
csv {  
fields =\> ["billing\_entity","invoice"]  
path =\> "D:\ELK\logstash.log\output\1.csv"  
}  
}

**Source CSV Content**  
billing\_entity,invoice  
a,b  
1,2  
1,2  
a,b

**Execute Screen**

 ![](https://us1.discourse-cdn.com/elastic/original/2X/d/d3cd8c166d8fad097018e5009799d6a8978bdd37.png)

I am stuck after this. Logstash startup complete message doesn't get displayed or file. Kindly help me.

---

<div class="post-metadata">

### Author: ![magnusbaeck](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/magnusbaeck/32/44943_2.png) [@magnusbaeck](https://discuss.elastic.co/u/magnusbaeck)
#### Post date: [October 6, 2016, 5:48am UTC](https://discuss.elastic.co/t/logstash-startup-completed-does-not-get-dislayed/62325/2 "2016-10-06T05:48:49Z")

</div>

> Logstash startup complete message doesn't get displayed or file.

What do you mean? You're getting the "Pipeline main started" message so Logstash does start up.

Is Logstash not reading the file? Please consult previous questions about this problem as it's extremely common for people to not get this right. Here are some keywords and hints:

- If the file is older than 24 hours you need to adjust the file input's `ignore_older` option.
- If Logstash thinks it already has processed the file you need to delete the sincedb file or set `sincedb_path` to "nul" (Windows) or "/dev/null" (not Windows).
- Logstash might not have access to the file.
- There might be a typo in the filename pattern.

Please do not post screenshots. Use copy/paste.

---

<div class="post-metadata">

### Author: ![platstar](https://avatars.discourse-cdn.com/v4/letter/p/9de053/32.png) [@platstar](https://discuss.elastic.co/u/platstar)
#### Post date: [October 6, 2016, 1:18pm UTC](https://discuss.elastic.co/t/logstash-startup-completed-does-not-get-dislayed/62325/3 "2016-10-06T13:18:32Z")

</div>

Thank your reminder and information to help.  
The cause of the problem is the data file encode should be UTF-8.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 6, 2017, 4:35am UTC](https://discuss.elastic.co/t/logstash-startup-completed-does-not-get-dislayed/62325/4 "2017-07-06T04:35:23Z")

</div>


