Created
April 15, 2019 06:50
-
-
Save garkin/4113062cc40b9aba213445a7bbfa5839 to your computer and use it in GitHub Desktop.
WeaveMesh v1 docker plugin force restart monitor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.7' | |
services: | |
monitor: | |
build: ./weave_monitor | |
image: custom/weave_monitor | |
network_mode: "none" | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
restart: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"os" | |
"strings" | |
"time" | |
// https://godoc.org/github.com/docker/docker/client | |
"github.com/docker/docker/api/types" | |
"github.com/docker/docker/api/types/filters" | |
"github.com/docker/docker/client" | |
) | |
const ( | |
initCount = 60 | |
initInterval = 1 * time.Second | |
restInterval = 10 * time.Second | |
networkName = "weave" | |
pluginToken = "weavemesh" | |
) | |
func main() { | |
if os.Getenv("DOCKER_HOST") == "" { | |
err := os.Setenv("DOCKER_HOST", "unix:///var/run/docker.sock") | |
if err != nil { | |
panic(err) | |
} | |
} | |
fmt.Printf("%s Starting monitoring DOCKER_HOST = %s\n", now(), os.Getenv("DOCKER_HOST")) | |
cli, err := client.NewClientWithOpts(client.FromEnv) | |
for err != nil { | |
fmt.Println("Failed to open Docker connection:", err) | |
time.Sleep(initInterval) | |
cli, err = client.NewClientWithOpts(client.FromEnv) | |
} | |
ctx := context.Background() | |
cli.NegotiateAPIVersion(ctx) | |
for i := 0; i < initCount; i++ { | |
time.Sleep(initInterval) | |
tick(ctx, cli) | |
} | |
for { | |
time.Sleep(restInterval) | |
tick(ctx, cli) | |
} | |
} | |
func tick(ctx context.Context, cli *client.Client) { | |
// fmt.Printf("%s: Checking up containers\n", now()) | |
options := types.ContainerListOptions{All: true, Filters: filters.NewArgs()} | |
options.Filters.Add("network", networkName) | |
options.Filters.Add("status", "exited") | |
containers, err := cli.ContainerList(ctx, options) | |
if err != nil { | |
panic(err) | |
} | |
if len(containers) == 0 { | |
return | |
} | |
for _, c := range containers { | |
cont, err := cli.ContainerInspect(ctx, c.ID) | |
if err != nil { | |
continue | |
} | |
/* Skip healthy containers */ | |
if cont.State.ExitCode == 0 { | |
continue | |
} | |
/* Monitor only {restart: always} */ | |
if !cont.HostConfig.RestartPolicy.IsAlways() { | |
continue | |
} | |
/* Skip errors, not related to the WeaveMesh */ | |
if !strings.Contains(cont.State.Error, pluginToken) { | |
continue | |
} | |
identifier := cont.Name | |
if identifier == "" { | |
identifier = cont.ID[:10] | |
} | |
fmt.Printf("%s: Restarting container %s\n", now(), identifier) | |
err = cli.ContainerRestart(ctx, c.ID, nil) | |
} | |
} | |
func now() string { | |
return time.Now().Format(time.RFC3339) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.12-alpine as builder | |
RUN apk add --update --no-cache git | |
WORKDIR /go/src/github.com/garkin/application/ | |
RUN go get github.com/docker/docker/client | |
COPY app.go . | |
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o app . | |
FROM alpine:latest | |
WORKDIR /root/ | |
COPY --from=builder /go/src/github.com/garkin/application/app . | |
RUN chmod +x ./app | |
CMD ["./app"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment