2016-06-10 129 views
1

我的配置文件輸入定義爲:錯誤logstash配置文件

input { 
    file { 
     path => 「/Users/user/Desktop/user/apache_logs」 
    } 
} 

configtest拋出我的錯誤:

The given configuration is invalid. Reason: Expected one of #, ", ', -, [, { at line 3, column 11 (byte 27) after input { 
    file { 
     path => {:level=>:fatal} 

我在做什麼錯在這裏?

回答

1

您沒有使用ASCII雙引號字符,即您使用代替"

試試這個:

input { 
    file { 
     path => "/Users/user/Desktop/user/apache_logs" 
    } 
}