# Io/console not supported when starting logstash 2.3.2 on Win 10

**URL:** https://discuss.elastic.co/t/io-console-not-supported-when-starting-logstash-2-3-2-on-win-10/50382
**Category:** Logstash
**Created:** [May 18, 2016, 11:45pm UTC](https://discuss.elastic.co/t/io-console-not-supported-when-starting-logstash-2-3-2-on-win-10/50382 "2016-05-18T23:45:42Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![bhawanaus](https://avatars.discourse-cdn.com/v4/letter/b/94ad74/32.png) [@bhawanaus](https://discuss.elastic.co/u/bhawanaus)
#### Post date: [May 18, 2016, 11:45pm UTC](https://discuss.elastic.co/t/io-console-not-supported-when-starting-logstash-2-3-2-on-win-10/50382/1 "2016-05-18T23:45:42Z")

</div>

C:\Users\bhagupta\elk\_poc\logstash-2.3.2\logstash-2.3.2\bin\>logstash -f logstash.conf  
io/console not supported; tty will not be manipulated  
Settings: Default pipeline workers: 4

Note : After this nothing get displayed on console.

Below are the contents from my logstash.conf file

input {  
file {  
path =\> ["C:/Users/bhagupta/elk\_poc/output.log"]  
type =\> "apache"  
start\_position =\> "beginning"  
sincedb\_path =\> "/dev/null"  
}  
}  
filter {  
grok {  
match =\> { "message" =\> "%{COMBINEDAPACHELOG}"}  
}  
}  
output {  
stdout {  
codec =\> rubydebug  
}  
elasticsearch {}  
}

I guess it's unable to read the content from output.log file. Can somebody help me in resolving this problem?

---

<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: [May 19, 2016, 3:31am UTC](https://discuss.elastic.co/t/io-console-not-supported-when-starting-logstash-2-3-2-on-win-10/50382/2 "2016-05-19T03:31:10Z")

</div>

You can ignore the "io/console not supported; tty will not be manipulated" message.

What's the modification time of the input file (output.log)? If older than 24 hours, make sure you adjust the file input's `ignore_older` setting.

---

<div class="post-metadata">

### Author: ![bhawanaus](https://avatars.discourse-cdn.com/v4/letter/b/94ad74/32.png) [@bhawanaus](https://discuss.elastic.co/u/bhawanaus)
#### Post date: [May 19, 2016, 6:06pm UTC](https://discuss.elastic.co/t/io-console-not-supported-when-starting-logstash-2-3-2-on-win-10/50382/3 "2016-05-19T18:06:54Z")

</div>

I'm trying to parse my application logs using logstash filters. The log file contents are like below

17 May 2016 11:45:53,391 [tomcat-http--10] INFO com.visa.vrm.aop.aspects.LoggingAspect - RTaBzeTuarf |macBook|com.visa.vrm.admin.controller.OrgController|getOrgs|1006

I'm trying to create a dashboard (line chart) using logstash and want to show the activities on it. For e.g request comes in from some server with correlation id and have to see which class it calls with corresponding method and how long it took to execute.

The message is like  
correlation id | server-name | class name | method name | time taken  
log file e.g  
RTaBzeTuarf |macBook|com.visa.vrm.admin.controller.OrgController|getOrgs|1006

Do I've to create grok filters or I've to define some pattern ? Please advise

---

<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: [May 20, 2016, 5:32am UTC](https://discuss.elastic.co/t/io-console-not-supported-when-starting-logstash-2-3-2-on-win-10/50382/4 "2016-05-20T05:32:50Z")

</div>

Yes, you need a grok filter to extract discrete fields from your logs. You probably won't find a singular pre-cooked grok pattern that's usable out of the box, but there are certainly building blocks that you can put together.

---

<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:56am UTC](https://discuss.elastic.co/t/io-console-not-supported-when-starting-logstash-2-3-2-on-win-10/50382/5 "2017-07-06T04:56:52Z")

</div>


