HiveBrain v1.2.0
Get Started
← Back to all entries
snippetdockerMinor

How do you monitor varnish cache inside a docker container?

Submitted by: @import:stackexchange-devops··
0
Viewed 0 times
varnishhowyoucontainerdockercachemonitorinside

Problem

How do you monitor varnish cache inside a docker container?

I have found many tools on Google relating to this but we are focusing only on nagios and new relic.

Solution

Varnish is monitored with what they call VSM. It's a file in your container. If you bind mount the folder where the files is, you can share the same folder / files in other containers that will be able to read it, and thus will be able to monitor your varnish instance.
See the note about VSM and containers in varnish docs.
I have been able to launch a varnishstat with statistics in a container with varnish in the image, but no varnish running, like this:

docker run --rm -it \
       --entrypoint=/bin/sh \
       -v /var/lib/docker/overlay2/$hash/merged/usr/local/var/varnish/$hostname:/varnish \
      emgag/varnish:5.1.3 varnishstat -N /varnish/_.vsm

Code Snippets

docker run --rm -it \
       --entrypoint=/bin/sh \
       -v /var/lib/docker/overlay2/$hash/merged/usr/local/var/varnish/$hostname:/varnish \
      emgag/varnish:5.1.3 varnishstat -N /varnish/_.vsm

Context

StackExchange DevOps Q#2411, answer score: 2

Revisions (0)

No revisions yet.