diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-04 14:25:34 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-04 14:25:34 -0700 |
commit | d2d7f2dbafd33090279f2c20df0485311f4d1dcd (patch) | |
tree | ee3877315c85caa026820f5851f9e3b7f289a53a /hosts | |
parent | prometheus: add scraper for HTTP (diff) | |
download | world-d2d7f2dbafd33090279f2c20df0485311f4d1dcd.tar.gz |
prometheus: set the scheme for the URLs
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/common/server/prometheus.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hosts/common/server/prometheus.nix b/hosts/common/server/prometheus.nix index 9128f31..7f6b207 100644 --- a/hosts/common/server/prometheus.nix +++ b/hosts/common/server/prometheus.nix @@ -90,11 +90,11 @@ in { params = { module = [ "http_2xx" ]; }; static_configs = [{ targets = [ - "fcuny.net" - "git.fcuny.net" - "notes.fcuny.net" - "dash.fcuny.net" - "music.fcuny.net" + "https://fcuny.net" + "https://git.fcuny.net" + "https://notes.fcuny.net" + "https://dash.fcuny.net" + "https://music.fcuny.net" ]; }]; relabel_configs = [ |