Skip to content

Commit 73c1b76

Browse files
author
Torben Frey
committed
Changed to go modules
1 parent 6084385 commit 73c1b76

File tree

4 files changed

+440
-1
lines changed

4 files changed

+440
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
downdetector-credentials.yaml
2+
downdetector-exporter

downdetector-exporter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/go-kit/kit/log"
1919
kitlog "github.com/go-kit/kit/log"
2020
"github.com/go-kit/kit/log/level"
21-
"github.com/urfave/cli"
21+
"github.com/urfave/cli/v2"
2222

2323
"github.com/coreos/go-systemd/daemon"
2424
"github.com/prometheus/client_golang/prometheus"

go.mod

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module github.com/kic68/downdetector-exporter
2+
3+
go 1.16
4+
5+
require (
6+
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
7+
github.com/go-kit/kit v0.11.0
8+
github.com/goccy/go-yaml v1.8.10
9+
github.com/prometheus/client_golang v1.11.0
10+
github.com/urfave/cli/v2 v2.3.0
11+
)

0 commit comments

Comments
 (0)