Skip to content

Commit 6322fa3

Browse files
authored
Merge branch 'master' into use_custom_resolver
2 parents 8cfd3b4 + c374649 commit 6322fa3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2809
-712
lines changed

.examples/docker-compose-grafana-prometheus/grafana/provisioning/dashboards/gatus.json

Lines changed: 750 additions & 450 deletions
Large diffs are not rendered by default.

.examples/nixos/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# NixOS
2+
3+
Gatus is implemented as a NixOS module. See [gatus.nix](./gatus.nix) for example
4+
usage.

.examples/nixos/gatus.nix

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
services.gatus = {
3+
enable = true;
4+
5+
settings = {
6+
web.port = 8080;
7+
8+
endpoints = [
9+
{
10+
name = "website";
11+
url = "https://twin.sh/health";
12+
interval = "5m";
13+
14+
conditions = [
15+
"[STATUS] == 200"
16+
"[BODY].status == UP"
17+
"[RESPONSE_TIME] < 300"
18+
];
19+
}
20+
];
21+
};
22+
};
23+
}

.github/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ coverage:
77
patch: off
88
project:
99
default:
10-
target: 75%
10+
target: 70%
1111
threshold: null
1212

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
name: benchmark
2020
runs-on: ubuntu-latest
21-
timeout-minutes: 5
21+
timeout-minutes: 15
2222
steps:
2323
- uses: actions/setup-go@v5
2424
with:

.github/workflows/publish-custom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
publish-custom:
1010
runs-on: ubuntu-latest
11-
timeout-minutes: 20
11+
timeout-minutes: 60
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Set up QEMU

.github/workflows/publish-experimental.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [workflow_dispatch]
33
jobs:
44
publish-experimental:
55
runs-on: ubuntu-latest
6-
timeout-minutes: 20
6+
timeout-minutes: 60
77
steps:
88
- uses: actions/checkout@v4
99
- name: Set up QEMU

.github/workflows/publish-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
publish-latest:
1212
runs-on: ubuntu-latest
1313
if: ${{ (github.event.workflow_run.conclusion == 'success') && (github.event.workflow_run.head_repository.full_name == github.repository) }}
14-
timeout-minutes: 90
14+
timeout-minutes: 240
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up QEMU

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
publish-release:
77
name: publish-release
88
runs-on: ubuntu-latest
9-
timeout-minutes: 60
9+
timeout-minutes: 240
1010
steps:
1111
- uses: actions/checkout@v4
1212
- name: Set up QEMU

.github/workflows/test-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
test-ui:
1313
runs-on: ubuntu-latest
14-
timeout-minutes: 10
14+
timeout-minutes: 30
1515
steps:
1616
- uses: actions/checkout@v4
1717
- run: make frontend-install-dependencies

0 commit comments

Comments
 (0)