mirror of
https://github.com/whitney-server/upptime.git
synced 2026-08-10 05:43:36 -07:00
Compare commits
11 Commits
e6de9e32e2
...
ebf71cb919
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ebf71cb919 | ||
|
|
49ebfaf76d | ||
|
|
b6a89ff6e6 | ||
|
|
ce71e0a476 | ||
|
|
6f67643943 | ||
|
|
07f03f56ab | ||
|
|
4cd63105ea | ||
|
|
ea06d9e35f | ||
|
|
678de3466a | ||
|
|
356000ab74 | ||
|
|
bd66492434 |
9
.github/workflows/graphs.yml
vendored
9
.github/workflows/graphs.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -21,6 +21,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [graphs]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Generate graphs
|
||||
@ -29,10 +32,10 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Generate graphs
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "graphs"
|
||||
env:
|
||||
|
||||
9
.github/workflows/response-time.yml
vendored
9
.github/workflows/response-time.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -21,6 +21,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [response_time]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Check status
|
||||
@ -29,10 +32,10 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Update response time
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "response-time"
|
||||
env:
|
||||
|
||||
15
.github/workflows/setup.yml
vendored
15
.github/workflows/setup.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -22,6 +22,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [setup]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Setup Upptime
|
||||
@ -30,23 +33,23 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Update template
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "update-template"
|
||||
env:
|
||||
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Update response time
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "response-time"
|
||||
env:
|
||||
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||
SECRETS_CONTEXT: ${{ toJson(secrets) }}
|
||||
- name: Update summary in README
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "readme"
|
||||
env:
|
||||
@ -57,7 +60,7 @@ jobs:
|
||||
workflow: Graphs CI
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Generate site
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "site"
|
||||
env:
|
||||
|
||||
9
.github/workflows/site.yml
vendored
9
.github/workflows/site.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -24,6 +24,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [static_site]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Build and deploy site
|
||||
@ -33,10 +36,10 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Generate site
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "site"
|
||||
env:
|
||||
|
||||
9
.github/workflows/summary.yml
vendored
9
.github/workflows/summary.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -21,6 +21,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [summary]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Generate README
|
||||
@ -29,10 +32,10 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Update summary in README
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "readme"
|
||||
env:
|
||||
|
||||
7
.github/workflows/update-template.yml
vendored
7
.github/workflows/update-template.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -21,6 +21,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [update_template]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Build
|
||||
@ -29,7 +32,7 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Update template
|
||||
uses: upptime/uptime-monitor@master
|
||||
|
||||
7
.github/workflows/updates.yml
vendored
7
.github/workflows/updates.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -21,6 +21,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [updates]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Deploy updates
|
||||
@ -29,7 +32,7 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Update code
|
||||
uses: upptime/updates@master
|
||||
|
||||
9
.github/workflows/uptime.yml
vendored
9
.github/workflows/uptime.yml
vendored
@ -6,7 +6,7 @@
|
||||
# Your changes will be overwritten when the Upptime template updates (by default, weekly)
|
||||
# Instead, change .upptimerc.yml configuration and the workflows will be generated accordingly.
|
||||
#
|
||||
# 🔼 Upptime @v1.41.9
|
||||
# 🔼 Upptime @v1.41.10
|
||||
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||
|
||||
# * Source: https://github.com/upptime/upptime
|
||||
@ -21,6 +21,9 @@ on:
|
||||
repository_dispatch:
|
||||
types: [uptime]
|
||||
workflow_dispatch:
|
||||
concurrency:
|
||||
group: ${{ github.repository }}-${{ github.head_ref || github.ref_name }}-upptime
|
||||
cancel-in-progress: false
|
||||
jobs:
|
||||
release:
|
||||
name: Check status
|
||||
@ -29,10 +32,10 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
ref: ${{ github.head_ref || github.ref_name }}
|
||||
token: ${{ secrets.GH_PAT || github.token }}
|
||||
- name: Check endpoint status
|
||||
uses: upptime/uptime-monitor@v1.41.9
|
||||
uses: upptime/uptime-monitor@v1.41.10
|
||||
with:
|
||||
command: "update"
|
||||
env:
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://jakesphotos.whitney.rip
|
||||
status: down
|
||||
code: 404
|
||||
responseTime: 185
|
||||
lastUpdated: 2026-05-29T00:03:53.791Z
|
||||
responseTime: 225
|
||||
lastUpdated: 2026-05-30T00:02:10.130Z
|
||||
startTime: 2025-03-12T23:19:10.667Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://jake.runyan.dev
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 375
|
||||
lastUpdated: 2026-05-29T00:03:41.010Z
|
||||
responseTime: 493
|
||||
lastUpdated: 2026-05-30T00:01:56.955Z
|
||||
startTime: 2025-03-12T23:19:09.991Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://jakeswestcoast.com
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 283
|
||||
lastUpdated: 2026-05-29T00:03:55.955Z
|
||||
responseTime: 250
|
||||
lastUpdated: 2026-05-30T00:02:12.187Z
|
||||
startTime: 2025-03-20T08:14:43.020Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://apply.whitney.rip
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 423
|
||||
lastUpdated: 2026-05-29T00:03:56.753Z
|
||||
responseTime: 534
|
||||
lastUpdated: 2026-05-30T00:02:13.450Z
|
||||
startTime: 2026-05-08T01:56:05.765Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://git.whitney.rip
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 401
|
||||
lastUpdated: 2026-05-29T00:03:54.219Z
|
||||
responseTime: 344
|
||||
lastUpdated: 2026-05-30T00:02:10.501Z
|
||||
startTime: 2025-03-15T08:56:56.728Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://grafana.whitney.rip
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 475
|
||||
lastUpdated: 2026-05-29T00:03:55.636Z
|
||||
responseTime: 468
|
||||
lastUpdated: 2026-05-30T00:02:11.900Z
|
||||
startTime: 2025-03-20T08:14:41.508Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://www.whitney.rip
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 457
|
||||
lastUpdated: 2026-05-29T00:03:40.596Z
|
||||
responseTime: 379
|
||||
lastUpdated: 2026-05-30T00:01:56.421Z
|
||||
startTime: 2025-03-12T23:19:09.215Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://images.whitney.rip
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 415
|
||||
lastUpdated: 2026-05-29T00:03:54.660Z
|
||||
responseTime: 409
|
||||
lastUpdated: 2026-05-30T00:02:10.939Z
|
||||
startTime: 2025-03-15T08:56:57.696Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://recipes.whitney.rip
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 445
|
||||
lastUpdated: 2026-05-29T00:03:55.131Z
|
||||
responseTime: 438
|
||||
lastUpdated: 2026-05-30T00:02:11.404Z
|
||||
startTime: 2025-03-15T08:56:58.220Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
url: https://workouts.whitney.rip
|
||||
status: up
|
||||
code: 200
|
||||
responseTime: 323
|
||||
lastUpdated: 2026-05-29T00:03:56.305Z
|
||||
responseTime: 672
|
||||
lastUpdated: 2026-05-30T00:02:12.888Z
|
||||
startTime: 2026-03-26T02:51:06.168Z
|
||||
generator: Upptime <https://github.com/upptime/upptime>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user