An open API service indexing awesome lists of open source software.

https://github.com/netways/kubernetes-logstash-pipeline

Ready made code to parse logs from Kubernetes
https://github.com/netways/kubernetes-logstash-pipeline

Last synced: 4 months ago
JSON representation

Ready made code to parse logs from Kubernetes

Awesome Lists containing this project

README

          

# kubernetes-logstash-pipeline
Ready made code to parse logs from Kubernetes
**!!! Currently the Pipeline will works for kubernetes cluster which is runing with containerd as CRI.**

## Input and Output ##

This pipeline does not provide inputs or outputs so you can configure whatever you need. Files named `input.conf` and `output.conf` will not interfere with updates via git, so name your files accordingly.

Here are examples how your files could look if you want to use a local Redis instance.

```
input {
redis {
host => localhost
key => "kubernetes"
data_type => list
}
}

output {
redis {
key => "forwarder"
data_type => list
host => localhost
}
}
```