1
우리의 응용 프로그램은 불안정하며 1000 개의 elmah 오류 로그 파일을 생성합니다. 우리는 응용 프로그램의 어느 부분이 오류가 발생하기 쉽고 불안정한지를 확인하려고합니다. 우리는 ElasticSearch, LogStash, Kibana를 사용하여 이러한 로그를 검색하고 경향을 생성하기로 결정했습니다. 이 시나리오에서 logstash를 구성하려고합니다. "구성에 문제가 있습니다." "logstash agent -f logstash-simple2.conf"명령을 실행할 때 오류가 발생합니다. 나는 무엇을 잘못 할 수 있 었는가? 모든 포인터는 감사하겠습니다.Logstash에서 XML 구문 분석에 문제가 발생했습니다.
logstash-simple2.conf :
input {
stdin {
type => "stdin-type"
}
file {
type => "file"
pattern => ["Z:/PROD/availability2/2014-04-15/00/**/*.xml"]
}
}
output {
stdout { }
elasticsearch { embedded => true }
}
입력 파일 :
실제 오류 :
?[33mUsing milestone 2 input plugin 'file'. This plugin should be stable, but if you see strange behavior, please let us know! For more information on plugin milestones, see http://logstash.net/docs/1.4.0/plugin-milestones {:level=>:warn}?[0m?[31mUnknown setting 'pattern' for file {:level=>:error}?[0m
Error: Something is wrong with your configuration.You may be interested in the '--configtest' flag which you can use to validate logstash's configuration before you choose to restart a running system.