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:
parent
cb8d47d7aa
commit
83bd23945c
@ -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
|
||||
|
||||
|
||||
10
src/main.js
10
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" }];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user