2

我一直试图在网上搜索这个,但无法获得任何线索。有没有办法我们可以将logstash执行输出打印到日志文件?例如,我正在使用 jdbc 插件按照 sql_last_start 读取数据。我想知道查询执行的时间、响应的记录数以及下一次执行的时间。

假设一个表测试有以下列 [id,name,updated_on] 代码:

input {
    jdbc {      
        jdbc_connection_string => "jdbc:oracle:oci:MyDB"       
        jdbc_user => "testUser"
        jdbc_password => "testPassword"        
        jdbc_driver_library => "C:\app\Administrator\product\11.2.0\client_1\ojdbc6.jar"     
        jdbc_driver_class => "Java::oracle.jdbc.driver.OracleDriver"    
        statement => "SELECT * from test where updated_on >= :sql_last_start"
        schedule => "* * * * *"
        jdbc_fetch_size=>3
    }
}
output {
    stdout { codec => rubydebug }
    file {
             path => "C:\logstashOutput.txt"
             message_format => "%{@timestamp}: %{id} - %{name} at :sql_last_start"
       }
}
4

1 回答 1

1

启动Logstash时可以添加参数日志级别参数

--verbose
Increase verbosity to the first level, less verbose.

--debug
Increase verbosity to the last level, more verbose.

例如:

./logstash-1.4.2/bin/logstash agent -f YOUR_CONFIG_FILE --verbose
于 2015-10-20T00:33:00.910 回答