I use docker-compose to run envoy, I need to look at the statistics that will be generated by outlier_detection for this in cluster_manager I specified the path in
event_log_path: /var/log/event.log
However, I can't figure out how can I open this file to view it? Using volume in docker compose doesn't help
Some options:
docker exec -ti my_container sh -c "cat /var/log/event.log"
docker ps
docker cp Your_container_ID:/var/log/event.log /my_host_folder
And editing the file in your host.