logger_logstash_backend
1.0.0
Un backend pour Elixir Logger qui enverra les journaux à l'entrée Logstash UDP.
input {
udp {
codec => json
port => 10001
queue_size => 10000
workers => 10
type => default_log_type
}
}
output {
stdout {}
elasticsearch {
protocol => http
}
}
Pour l'utiliser dans vos projets Mix, ajoutez-le d'abord en tant que dépendance :
def deps do
[ { :logger_logstash_backend , "~> 3.0.0" } ]
end
Exécutez ensuite mix deps.get pour l’installer.
Ajoutez logger et tzdata comme applications :
def application do
[ applications: [ :logger , :timex ] ]
end
Logger . add_backend { LoggerLogstashBackend , :debug }
Logger . configure { LoggerLogstashBackend , :debug } ,
host: "127.0.0.1" ,
port: 10001 ,
level: :debug ,
metadata: ...
config :logger ,
backends: [ { LoggerLogstashBackend , :error_log } , :console ]
config :logger , :error_log ,
host: "some.host.com" ,
port: 10001 ,
level: :error ,
type: "my_type_of_app_or_node" ,
metadata: [
extra_fields: "go here"
]