From 83bd23945cce1ac08955d4bba96f8f2b01d59838 Mon Sep 17 00:00:00 2001 From: sneak Date: Mon, 23 Feb 2026 00:01:50 +0700 Subject: [PATCH] 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. --- README.md | 4 ++-- src/main.js | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6523735..c994646 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,8 @@ code lives in `src/main.js` with a class-based architecture: ### Monitoring targets -- **9 WAN hosts**: Google Cloud Console, AWS Console, GitHub, Cloudflare, Azure, - DigitalOcean, Fastly, Akamai, datavi.be +- **11 WAN hosts**: datavi.be, Anthropic API, OpenAI API, AWS, GCP, Azure, + DigitalOcean, Cloudflare, Fastly, Akamai, GitHub - **1 Local host**: Local Gateway (192.168.100.1), tracked separately from WAN stats diff --git a/src/main.js b/src/main.js index 24800bc..b817cdc 100644 --- a/src/main.js +++ b/src/main.js @@ -16,15 +16,17 @@ const CONFIG = Object.freeze({ }); 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: "GitHub", url: "https://github.com" }, - { name: "Cloudflare", url: "https://www.cloudflare.com" }, + { name: "Google Cloud Console", url: "https://console.cloud.google.com" }, { name: "Microsoft Azure", url: "https://portal.azure.com" }, { name: "DigitalOcean", url: "https://www.digitalocean.com" }, + { name: "Cloudflare", url: "https://www.cloudflare.com" }, { name: "Fastly CDN", url: "https://www.fastly.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" }];