Using the redis Filebeat module to collect the logs for multiple redis instances and visualize them with the redis dashboard in Kibana, how to visualize the logs for the redis instances separately? Is there anything that can be done in the filebeat.yml config file or Kibana settings to make the logs for the redis instance distinguishable from each other so they can be visualized and analyzed independently in Kibana?
Current filebeat.yml:
filebeat.autodiscover:
providers:
- type: docker
templates:
- condition:
contains:
docker.container.image: redis
config:
- module: redis
log:
input:
type: docker
containers:
path: '/usr/share/filebeat/containers/'
stream: 'all'
ids:
- '${data.docker.container.id}'
output.elasticsearch:
hosts: 'elasticsearch:9200'
setup.kibana:
host: 'kibana:5601'