Hi
I use JDBC driver to connect Logstash with a data base and run a SP in statement.
the result of SP is one number(integer) and two columns.
I want to send these into one log in Elasticsearch
Could you please tell me how can I write the filter?
For example: I wrote this for the integer:
filter {
mutate {
add_field => {count => "%{untitled}"}
convert => {count => integer}
What can I do for two columns?!?