|
You are here |
blog.quigley.codes | ||
| | | | |
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... | |
| | | | |
www.perrotta.dev
|
|
| | | | | In this post: how to properly start docker on an Alpine Linux server. | |
| | | | |
taylorbrazelton.com
|
|
| | | | | ||
| | | | |
davidhblog.wordpress.com
|
|
| | | If I were to rank the books I've read during the lifetime of this blog (and there are over 500 of them) in order of enjoyment, Eleanor Catton's The Rehearsal(2008) would be right at the top of the list. I bought it on a whim, knowing nothing about it; I was nearly put off by... | ||