config update
This commit is contained in:
parent
8e0f0bd70a
commit
e494c12473
1 changed files with 19 additions and 7 deletions
|
@ -1,11 +1,25 @@
|
||||||
|
ui:
|
||||||
|
title: "IXVD - Status Page"
|
||||||
|
header: "IXVD's Status Page"
|
||||||
|
description: "This is the status page for IXVD. Here you can check what's going on!"
|
||||||
|
buttons:
|
||||||
|
- name: Home
|
||||||
|
link: "https://ixvd.net"
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
type: sqlite
|
type: sqlite
|
||||||
path: /data/data.db
|
path: /data/data.db
|
||||||
caching: true
|
caching: true
|
||||||
|
|
||||||
x-http-endpoint: &default-http
|
x-default-endpoint: &default
|
||||||
group: http
|
|
||||||
interval: 10m
|
interval: 10m
|
||||||
|
group: misc
|
||||||
|
ui: &default-ui
|
||||||
|
hide-url: true
|
||||||
|
|
||||||
|
x-http-endpoint: &default-http
|
||||||
|
<<: *default
|
||||||
|
group: http
|
||||||
conditions: &default-http-conditions
|
conditions: &default-http-conditions
|
||||||
- "[STATUS] == 200"
|
- "[STATUS] == 200"
|
||||||
|
|
||||||
|
@ -29,9 +43,9 @@ endpoints:
|
||||||
url: "https://push.ixvd.net"
|
url: "https://push.ixvd.net"
|
||||||
|
|
||||||
- name: rabbitmq
|
- name: rabbitmq
|
||||||
|
<<: *default
|
||||||
group: core
|
group: core
|
||||||
url: "tcp://rabbitmq:5672"
|
url: "tcp://rabbitmq:5672"
|
||||||
interval: 10m
|
|
||||||
conditions:
|
conditions:
|
||||||
- "[CONNECTED] == true"
|
- "[CONNECTED] == true"
|
||||||
|
|
||||||
|
@ -52,9 +66,9 @@ endpoints:
|
||||||
# DEVOPS #
|
# DEVOPS #
|
||||||
|
|
||||||
- name: gitlab
|
- name: gitlab
|
||||||
|
<<: *default
|
||||||
group: devops
|
group: devops
|
||||||
url: "tcp://gitlab:80"
|
url: "tcp://gitlab:80"
|
||||||
interval: 10m
|
|
||||||
conditions:
|
conditions:
|
||||||
- "[CONNECTED] == true" # because i've implemented something in the gitlab container
|
- "[CONNECTED] == true" # because i've implemented something in the gitlab container
|
||||||
|
|
||||||
|
@ -62,11 +76,9 @@ endpoints:
|
||||||
# GAMES #
|
# GAMES #
|
||||||
|
|
||||||
- name: hopper
|
- name: hopper
|
||||||
|
<<: *default
|
||||||
group: games
|
group: games
|
||||||
url: "tcp://ixvd.net:25565"
|
url: "tcp://ixvd.net:25565"
|
||||||
ui:
|
|
||||||
hide-hostname: true
|
|
||||||
hide-url: true
|
|
||||||
conditions:
|
conditions:
|
||||||
- "[CONNECTED] == true"
|
- "[CONNECTED] == true"
|
||||||
|
|
||||||
|
|
Reference in a new issue