mirror of
https://github.com/TheSL18/upptime.git
synced 2024-11-19 15:11:45 -06:00
Compare commits
8 Commits
2c1c18585a
...
dafc6a3c25
Author | SHA1 | Date | |
---|---|---|---|
|
dafc6a3c25 | ||
|
2afb52c726 | ||
|
908d210cf7 | ||
|
60083d697a | ||
|
fe1783eb59 | ||
|
a07db6a8c1 | ||
|
ab63fdc6bb | ||
196b31300a |
40
.gitea/ISSUE_TEMPLATE/bug_report.md
Normal file
40
.gitea/ISSUE_TEMPLATE/bug_report.md
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
title: ''
|
||||||
|
labels: 'bug'
|
||||||
|
assignees: 'AnandChowdhary'
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- If you have a question, you should use Discussions instead: https://github.com/upptime/upptime/discussions -->
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Screenshots**
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
|
**Desktop (please complete the following information):**
|
||||||
|
- OS: [e.g. iOS]
|
||||||
|
- Browser [e.g. chrome, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Smartphone (please complete the following information):**
|
||||||
|
- Device: [e.g. iPhone6]
|
||||||
|
- OS: [e.g. iOS8.1]
|
||||||
|
- Browser [e.g. stock browser, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
8
.gitea/ISSUE_TEMPLATE/config.yml
Normal file
8
.gitea/ISSUE_TEMPLATE/config.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
blank_issues_enabled: true
|
||||||
|
contact_links:
|
||||||
|
- name: Feature requests and ideas
|
||||||
|
url: https://github.com/upptime/upptime/discussions/new?category=ideas
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
- name: Questions
|
||||||
|
url: https://github.com/upptime/upptime/discussions/new?category=q-a
|
||||||
|
about: Please ask and answer questions here
|
17
.gitea/ISSUE_TEMPLATE/maintainance-event.md
Normal file
17
.gitea/ISSUE_TEMPLATE/maintainance-event.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
name: Maintenance Event
|
||||||
|
about: Schedule a work window
|
||||||
|
title: "[Scheduled Maintenance] Site down for Maintenance"
|
||||||
|
labels: maintenance
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!--
|
||||||
|
start: 2021-08-24T13:00:00.220Z
|
||||||
|
end: 2021-08-24T14:00:00.220Z
|
||||||
|
expectedDown: google, hacker-news
|
||||||
|
-->
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Who/what/when/where/why is this maintenance happening
|
39
.gitea/workflows/graphs.yml
Normal file
39
.gitea/workflows/graphs.yml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Graphs CI
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [graphs]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Generate graphs
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Generate graphs
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
with:
|
||||||
|
command: "graphs"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
40
.gitea/workflows/response-time.yml
Normal file
40
.gitea/workflows/response-time.yml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Response Time CI
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 23 * * *"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [response_time]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Check status
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Update response time
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
with:
|
||||||
|
command: "response-time"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
SECRETS_CONTEXT: ${{ toJson(secrets) }}
|
72
.gitea/workflows/setup.yml
Normal file
72
.gitea/workflows/setup.yml
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Setup CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- ".upptimerc.yml"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [setup]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Setup Upptime
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Update template
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
with:
|
||||||
|
command: "update-template"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Update response time
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
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.36.2
|
||||||
|
with:
|
||||||
|
command: "readme"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Generate graphs
|
||||||
|
uses: benc-uk/workflow-dispatch@v1
|
||||||
|
with:
|
||||||
|
workflow: Graphs CI
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Generate site
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
with:
|
||||||
|
command: "site"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- uses: peaceiris/actions-gh-pages@v3.7.3
|
||||||
|
name: GitHub Pages Deploy
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
publish_dir: "site/status-page/__sapper__/export/"
|
||||||
|
force_orphan: "false"
|
||||||
|
user_name: "Upptime Bot"
|
||||||
|
user_email: "73812536+upptime-bot@users.noreply.github.com"
|
48
.gitea/workflows/site.yml
Normal file
48
.gitea/workflows/site.yml
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Static Site CI
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 1 * * *"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [static_site]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Build and deploy site
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Generate site
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
with:
|
||||||
|
command: "site"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- uses: peaceiris/actions-gh-pages@v3.7.3
|
||||||
|
name: GitHub Pages Deploy
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
publish_dir: "site/status-page/__sapper__/export/"
|
||||||
|
force_orphan: "false"
|
||||||
|
user_name: "Upptime Bot"
|
||||||
|
user_email: "73812536+upptime-bot@users.noreply.github.com"
|
39
.gitea/workflows/summary.yml
Normal file
39
.gitea/workflows/summary.yml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Summary CI
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [summary]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Generate README
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Update summary in README
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
with:
|
||||||
|
command: "readme"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
39
.gitea/workflows/update-template.yml
Normal file
39
.gitea/workflows/update-template.yml
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Update Template CI
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [update_template]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Update template
|
||||||
|
uses: upptime/uptime-monitor@master
|
||||||
|
with:
|
||||||
|
command: "update-template"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
37
.gitea/workflows/updates.yml
Normal file
37
.gitea/workflows/updates.yml
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Updates CI
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 3 * * *"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [updates]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Deploy updates
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Update code
|
||||||
|
uses: upptime/updates@master
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
40
.gitea/workflows/uptime.yml
Normal file
40
.gitea/workflows/uptime.yml
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
#
|
||||||
|
# ===============================
|
||||||
|
# Do not edit this file directly!
|
||||||
|
# ===============================
|
||||||
|
#
|
||||||
|
# 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.36.2
|
||||||
|
# GitHub-powered open-source uptime monitor and status page by Anand Chowdhary
|
||||||
|
|
||||||
|
# * Source: https://github.com/upptime/upptime
|
||||||
|
# * Docs and more: https://upptime.js.org
|
||||||
|
# * More by Anand Chowdhary: https://anandchowdhary.com
|
||||||
|
|
||||||
|
|
||||||
|
name: Uptime CI
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "*/5 * * * *"
|
||||||
|
repository_dispatch:
|
||||||
|
types: [uptime]
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
name: Check status
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
token: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
- name: Check endpoint status
|
||||||
|
uses: upptime/uptime-monitor@v1.36.2
|
||||||
|
with:
|
||||||
|
command: "update"
|
||||||
|
env:
|
||||||
|
GH_PAT: ${{ secrets.GH_PAT || github.token }}
|
||||||
|
SECRETS_CONTEXT: ${{ toJson(secrets) }}
|
@ -1,7 +1,7 @@
|
|||||||
# Change these first
|
# Change these first
|
||||||
owner: TheSL18 # Your GitHub organization or username, where this repository lives
|
owner: TheSL18 # Your GitHub organization or username, where this repository lives
|
||||||
repo: upptime # The name of this repository
|
repo: upptime # The name of this repository
|
||||||
user-agent: TheSL18
|
user-agent: TheSL1
|
||||||
|
|
||||||
sites:
|
sites:
|
||||||
- name: API Listas Negras Globalists
|
- name: API Listas Negras Globalists
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
url: $API_LISTAS_NEGRAS_GLOBALISTS
|
url: $API_LISTAS_NEGRAS_GLOBALISTS
|
||||||
status: up
|
status: up
|
||||||
code: 301
|
code: 301
|
||||||
responseTime: 179
|
responseTime: 221
|
||||||
lastUpdated: 2024-01-24T23:02:25.506Z
|
lastUpdated: 2024-01-25T02:34:08.153Z
|
||||||
startTime: 2024-01-22T21:59:06.851Z
|
startTime: 2024-01-22T21:59:06.851Z
|
||||||
generator: Upptime <https://github.com/upptime/upptime>
|
generator: Upptime <https://github.com/upptime/upptime>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
url: $API_LOGIN_GLOBALISTS
|
url: $API_LOGIN_GLOBALISTS
|
||||||
status: up
|
status: up
|
||||||
code: 200
|
code: 200
|
||||||
responseTime: 203
|
responseTime: 287
|
||||||
lastUpdated: 2024-01-24T23:02:25.970Z
|
lastUpdated: 2024-01-25T02:34:08.683Z
|
||||||
startTime: 2024-01-22T21:32:17.946Z
|
startTime: 2024-01-22T21:32:17.946Z
|
||||||
generator: Upptime <https://github.com/upptime/upptime>
|
generator: Upptime <https://github.com/upptime/upptime>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
url: $API_S3_CONDOR
|
url: $API_S3_CONDOR
|
||||||
status: up
|
status: up
|
||||||
code: 200
|
code: 200
|
||||||
responseTime: 237
|
responseTime: 224
|
||||||
lastUpdated: 2024-01-24T23:02:26.449Z
|
lastUpdated: 2024-01-25T02:34:09.154Z
|
||||||
startTime: 2024-01-22T21:32:20.024Z
|
startTime: 2024-01-22T21:32:20.024Z
|
||||||
generator: Upptime <https://github.com/upptime/upptime>
|
generator: Upptime <https://github.com/upptime/upptime>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
url: $API_S3_DRAGGANE
|
url: $API_S3_DRAGGANE
|
||||||
status: down
|
status: down
|
||||||
code: 403
|
code: 403
|
||||||
responseTime: 94
|
responseTime: 97
|
||||||
lastUpdated: 2024-01-24T23:02:27.223Z
|
lastUpdated: 2024-01-25T02:34:09.982Z
|
||||||
startTime: 2024-01-22T21:32:24.546Z
|
startTime: 2024-01-22T21:32:24.546Z
|
||||||
generator: Upptime <https://github.com/upptime/upptime>
|
generator: Upptime <https://github.com/upptime/upptime>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
url: $S3_CONDOR_WEB
|
url: $S3_CONDOR_WEB
|
||||||
status: up
|
status: up
|
||||||
code: 200
|
code: 200
|
||||||
responseTime: 179
|
responseTime: 225
|
||||||
lastUpdated: 2024-01-24T23:02:26.864Z
|
lastUpdated: 2024-01-25T02:34:09.619Z
|
||||||
startTime: 2024-01-22T21:32:22.648Z
|
startTime: 2024-01-22T21:32:22.648Z
|
||||||
generator: Upptime <https://github.com/upptime/upptime>
|
generator: Upptime <https://github.com/upptime/upptime>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
url: $S3_DRAGGANE_WEB
|
url: $S3_DRAGGANE_WEB
|
||||||
status: down
|
status: down
|
||||||
code: 403
|
code: 403
|
||||||
responseTime: 71
|
responseTime: 104
|
||||||
lastUpdated: 2024-01-24T23:02:27.552Z
|
lastUpdated: 2024-01-25T02:34:10.352Z
|
||||||
startTime: 2024-01-22T21:32:26.544Z
|
startTime: 2024-01-22T21:32:26.544Z
|
||||||
generator: Upptime <https://github.com/upptime/upptime>
|
generator: Upptime <https://github.com/upptime/upptime>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
url: $GLOBALISTS_WEB
|
url: $GLOBALISTS_WEB
|
||||||
status: up
|
status: up
|
||||||
code: 204
|
code: 204
|
||||||
responseTime: 172
|
responseTime: 214
|
||||||
lastUpdated: 2024-01-24T23:02:27.969Z
|
lastUpdated: 2024-01-25T02:34:10.818Z
|
||||||
startTime: 2024-01-22T21:59:09.718Z
|
startTime: 2024-01-22T21:59:09.718Z
|
||||||
generator: Upptime <https://github.com/upptime/upptime>
|
generator: Upptime <https://github.com/upptime/upptime>
|
||||||
|
Loading…
Reference in New Issue
Block a user