|
You are here |
tricht.eu | ||
| | | | |
blog.quigley.codes
|
|
| | | | | TL;DR Learn from my mistakes. If you are using the default json-file driver, configure and options to have Docker automatically rotate and remove old logs... | |
| | | | |
blog.creekorful.com
|
|
| | | | | In this tutorial you'll see how to set up easily an ELK (Elastic, Logstash, Kibana) stack to have a centralized logging solution for your Docker swarm cluster. Install the stack Below you'll find the full stack to have a working ELK stack on your docker swarm. version: '3' services: elasticsearch: image: elasticsearch:7.9.3 environment: - discovery.type=single-node - ES_JAVA_OPTS=-Xms2g -Xmx2g volumes: - esdata:/usr/share/elasticsearch/data kibana: image: kibana:7.9.3 depends_on: - elasticsearch ports: - "5601:5601" logstash: image: logstash:7.9.3 ports: - "12201:12201/udp" depends_on: - elasticsearch deploy: mode: global volumes: - logstash-pipeline:/usr/share/logstash/pipeline/ volumes: esdata: driver: local logstash-pipeline: driver: local I will break do... | |
| | | | |
captnemo.in
|
|
| | | | | ||
| | | | |
blog.nuculabs.de
|
|
| | | Hi ?? This is a short tutorial describing how to monitor your Kubernetes cluster container logs using Loki stack. But why? Because it is easier to view, filter your logs in Grafana and to store them persistently in Loki rather than viewing them in a terminal. Let's get started! Assuming you already have Microk8s installed, enable the following addons: You can enable an add-on by running microk8s enable. Ex: microk8s enable dns | ||