Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/cmd/logstash/loki.conf

39 lines
628 B

input {
beats {
port => 5044
}
}
output {
loki {
url => "http://localhost:3100/loki/api/v1/push"
#tenant_id => "fake" #default none
#message_field => "message" #default message
#batch_wait => 1 ## in seconds #default 1 second
#batch_size => 102400 #bytes #default 102400 bytes
#min_delay => 1
#max_delay => 300
#retries => 10
# Basic auth credentials
#username => "test"
#password => "test"
# TLS config
# cert => /path/to/certificate.pem
# key => /path/to/key.key
# ca_cert => /path/to/ca.pem
# insecure_skip_verify => false
}
}