Add Anthropic and OpenAI API endpoints to monitoring targets

Reorder host list: datavi.be first, then LLM APIs, then cloud
providers (AWS, GCP, Azure), then CDN/hosting, then GitHub.
This commit is contained in:
Jeffrey Paul 2026-02-23 00:01:50 +07:00
parent cb8d47d7aa
commit 83bd23945c
2 changed files with 8 additions and 6 deletions

View File

@ -51,8 +51,8 @@ code lives in `src/main.js` with a class-based architecture:
### Monitoring targets ### Monitoring targets
- **9 WAN hosts**: Google Cloud Console, AWS Console, GitHub, Cloudflare, Azure, - **11 WAN hosts**: datavi.be, Anthropic API, OpenAI API, AWS, GCP, Azure,
DigitalOcean, Fastly, Akamai, datavi.be DigitalOcean, Cloudflare, Fastly, Akamai, GitHub
- **1 Local host**: Local Gateway (192.168.100.1), tracked separately from WAN - **1 Local host**: Local Gateway (192.168.100.1), tracked separately from WAN
stats stats

View File

@ -16,15 +16,17 @@ const CONFIG = Object.freeze({
}); });
const WAN_HOSTS = [ const WAN_HOSTS = [
{ name: "Google Cloud Console", url: "https://console.cloud.google.com" }, { name: "datavi.be", url: "https://datavi.be" },
{ name: "Anthropic API", url: "https://api.anthropic.com" },
{ name: "OpenAI API", url: "https://api.openai.com" },
{ name: "AWS Console", url: "https://console.aws.amazon.com" }, { name: "AWS Console", url: "https://console.aws.amazon.com" },
{ name: "GitHub", url: "https://github.com" }, { name: "Google Cloud Console", url: "https://console.cloud.google.com" },
{ name: "Cloudflare", url: "https://www.cloudflare.com" },
{ name: "Microsoft Azure", url: "https://portal.azure.com" }, { name: "Microsoft Azure", url: "https://portal.azure.com" },
{ name: "DigitalOcean", url: "https://www.digitalocean.com" }, { name: "DigitalOcean", url: "https://www.digitalocean.com" },
{ name: "Cloudflare", url: "https://www.cloudflare.com" },
{ name: "Fastly CDN", url: "https://www.fastly.com" }, { name: "Fastly CDN", url: "https://www.fastly.com" },
{ name: "Akamai", url: "https://www.akamai.com" }, { name: "Akamai", url: "https://www.akamai.com" },
{ name: "datavi.be", url: "https://datavi.be" }, { name: "GitHub", url: "https://github.com" },
]; ];
const LOCAL_HOSTS = [{ name: "Local Gateway", url: "http://192.168.100.1" }]; const LOCAL_HOSTS = [{ name: "Local Gateway", url: "http://192.168.100.1" }];