paygate-mcp 8.6.0 → 8.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -0
- package/dist/server.d.ts +2 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +273 -0
- package/dist/server.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -113,6 +113,8 @@ Agent → PayGate (auth + billing) → Your MCP Server (stdio or HTTP)
|
|
|
113
113
|
- **Cost Analysis** — `GET /admin/costs` cost-centric view with per-tool and per-namespace cost breakdowns, hourly spending trends, top spenders, average cost per call, and namespace filtering
|
|
114
114
|
- **Rate Limit Analysis** — `GET /admin/rate-limits` rate limit utilization analysis with per-key and per-tool breakdown, denial trends, most throttled keys, and current window utilization
|
|
115
115
|
- **Quota Analysis** — `GET /admin/quotas` quota utilization analysis with per-key daily/monthly usage vs limits, per-tool denial breakdown, most constrained keys, and global/per-key quota source tracking
|
|
116
|
+
- **Denial Analysis** — `GET /admin/denials` comprehensive denial breakdown by reason type (insufficient_credits, rate_limited, quota_exceeded, key_suspended, etc.) with per-key and per-tool stats, hourly trends, and most denied keys
|
|
117
|
+
- **Traffic Analysis** — `GET /admin/traffic` request volume analysis with tool popularity, hourly volume, top consumers by call count, namespace breakdown, peak hour identification, and success rates
|
|
116
118
|
- **Config Hot Reload** — `POST /config/reload` reloads pricing, rate limits, webhooks, quotas, and behavior flags from config file without server restart
|
|
117
119
|
- **Webhook Events** — POST batched usage events to any URL for external billing/alerting
|
|
118
120
|
- **Config File Mode** — Load all settings from a JSON file (`--config`)
|
|
@@ -2614,6 +2616,45 @@ curl http://localhost:3000/admin/quotas -H "X-Admin-Key: YOUR_ADMIN_KEY"
|
|
|
2614
2616
|
|
|
2615
2617
|
Returns quota configuration (global or null), key counts with/without quotas, denial summary with denial rate, per-key daily/monthly call and credit usage vs limits with utilization percentages, quota source (per-key/global/none), per-tool quota denial counts, hourly denial trends (last 24 hours), and top 10 most constrained keys ranked by daily call utilization. Read-only.
|
|
2616
2618
|
|
|
2619
|
+
### Denial Analysis
|
|
2620
|
+
|
|
2621
|
+
```bash
|
|
2622
|
+
curl http://localhost:3000/admin/denials -H "X-Admin-Key: YOUR_ADMIN_KEY"
|
|
2623
|
+
```
|
|
2624
|
+
|
|
2625
|
+
```json
|
|
2626
|
+
{
|
|
2627
|
+
"summary": { "totalCalls": 150, "totalDenials": 12, "denialRate": 0.08 },
|
|
2628
|
+
"byReason": { "insufficient_credits": 5, "rate_limited": 4, "quota_exceeded": 2, "key_suspended": 1 },
|
|
2629
|
+
"perKey": [
|
|
2630
|
+
{ "name": "heavy-user", "calls": 50, "denials": 8, "denialRate": 0.16, "topReason": "rate_limited" }
|
|
2631
|
+
],
|
|
2632
|
+
"perTool": [{ "tool": "summarize", "calls": 80, "denials": 6, "denialRate": 0.075, "topReason": "insufficient_credits" }],
|
|
2633
|
+
"hourlyTrends": [{ "hour": "2025-01-15T14", "calls": 20, "denials": 3 }],
|
|
2634
|
+
"mostDenied": [{ "name": "heavy-user", "denials": 8, "calls": 50, "denialRate": 0.16, "topReason": "rate_limited" }]
|
|
2635
|
+
}
|
|
2636
|
+
```
|
|
2637
|
+
|
|
2638
|
+
Returns denial summary with denial rate, breakdown by canonical reason type (insufficient_credits, rate_limited, tool_rate_limited, quota_exceeded, key_suspended, api_key_expired, invalid_api_key, missing_api_key, tool_not_allowed, ip_not_allowed, spending_limit_exceeded, etc.), per-key denial counts with top reason, per-tool denial counts, hourly denial trends (last 24 hours), and top 10 most denied keys. Read-only.
|
|
2639
|
+
|
|
2640
|
+
### Traffic Analysis
|
|
2641
|
+
|
|
2642
|
+
```bash
|
|
2643
|
+
curl http://localhost:3000/admin/traffic -H "X-Admin-Key: YOUR_ADMIN_KEY"
|
|
2644
|
+
```
|
|
2645
|
+
|
|
2646
|
+
```json
|
|
2647
|
+
{
|
|
2648
|
+
"summary": { "totalCalls": 500, "totalAllowed": 470, "totalDenied": 30, "successRate": 0.94, "uniqueKeys": 8, "uniqueTools": 3, "peakHour": "2025-01-15T14", "peakHourCalls": 85 },
|
|
2649
|
+
"toolPopularity": [{ "tool": "summarize", "calls": 250, "successRate": 0.96, "credits": 2500 }],
|
|
2650
|
+
"hourlyVolume": [{ "hour": "2025-01-15T14", "calls": 85, "allowed": 80, "denied": 5, "credits": 400 }],
|
|
2651
|
+
"topConsumers": [{ "name": "heavy-user", "calls": 150, "successRate": 0.92, "credits": 1380 }],
|
|
2652
|
+
"byNamespace": [{ "namespace": "production", "calls": 400, "allowed": 380, "credits": 3800 }]
|
|
2653
|
+
}
|
|
2654
|
+
```
|
|
2655
|
+
|
|
2656
|
+
Returns traffic summary with success rate and peak hour, tool popularity ranked by call count with success rates and credit totals, hourly volume (last 24 hours) with allowed/denied/credit breakdowns, top 10 consumers by call count, and namespace breakdown with per-namespace stats. Read-only.
|
|
2657
|
+
|
|
2617
2658
|
### IP Allowlisting
|
|
2618
2659
|
|
|
2619
2660
|
Restrict API keys to specific IP addresses or CIDR ranges:
|
package/dist/server.d.ts
CHANGED
|
@@ -248,6 +248,8 @@ export declare class PayGateServer {
|
|
|
248
248
|
private handleCostAnalysis;
|
|
249
249
|
private handleRateLimitAnalysis;
|
|
250
250
|
private handleQuotaAnalysis;
|
|
251
|
+
private handleDenialAnalysis;
|
|
252
|
+
private handleTrafficAnalysis;
|
|
251
253
|
private handleGetNotes;
|
|
252
254
|
private handleAddNote;
|
|
253
255
|
private handleDeleteNote;
|
package/dist/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"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"}
|
package/dist/server.js
CHANGED
|
@@ -834,6 +834,18 @@ class PayGateServer {
|
|
|
834
834
|
res.writeHead(405, { 'Content-Type': 'application/json' });
|
|
835
835
|
res.end(JSON.stringify({ error: 'Method not allowed. Use GET.' }));
|
|
836
836
|
return;
|
|
837
|
+
case '/admin/denials':
|
|
838
|
+
if (req.method === 'GET')
|
|
839
|
+
return this.handleDenialAnalysis(req, res);
|
|
840
|
+
res.writeHead(405, { 'Content-Type': 'application/json' });
|
|
841
|
+
res.end(JSON.stringify({ error: 'Method not allowed. Use GET.' }));
|
|
842
|
+
return;
|
|
843
|
+
case '/admin/traffic':
|
|
844
|
+
if (req.method === 'GET')
|
|
845
|
+
return this.handleTrafficAnalysis(req, res);
|
|
846
|
+
res.writeHead(405, { 'Content-Type': 'application/json' });
|
|
847
|
+
res.end(JSON.stringify({ error: 'Method not allowed. Use GET.' }));
|
|
848
|
+
return;
|
|
837
849
|
// ─── Plugin endpoints ──────────────────────────────────────────────
|
|
838
850
|
case '/plugins':
|
|
839
851
|
return this.handleListPlugins(req, res);
|
|
@@ -1380,6 +1392,8 @@ class PayGateServer {
|
|
|
1380
1392
|
costAnalysis: 'GET /admin/costs — Cost analysis with per-tool, per-namespace breakdown, hourly trends, and top spenders (requires X-Admin-Key)',
|
|
1381
1393
|
rateLimitAnalysis: 'GET /admin/rate-limits — Rate limit utilization analysis with per-key and per-tool breakdown, denial trends, and most throttled keys (requires X-Admin-Key)',
|
|
1382
1394
|
quotaAnalysis: 'GET /admin/quotas — Quota utilization analysis with per-key and per-tool breakdown, denial trends, most constrained keys, and configuration display (requires X-Admin-Key)',
|
|
1395
|
+
denialAnalysis: 'GET /admin/denials — Comprehensive denial breakdown by reason type with per-key and per-tool stats, hourly trends, and most denied keys (requires X-Admin-Key)',
|
|
1396
|
+
trafficAnalysis: 'GET /admin/traffic — Traffic volume analysis with tool popularity, hourly volume, top consumers, namespace breakdown, and peak hour identification (requires X-Admin-Key)',
|
|
1383
1397
|
...(this.oauth ? {
|
|
1384
1398
|
oauthMetadata: 'GET /.well-known/oauth-authorization-server — OAuth 2.1 server metadata',
|
|
1385
1399
|
oauthRegister: 'POST /oauth/register — Register OAuth client',
|
|
@@ -5012,6 +5026,265 @@ class PayGateServer {
|
|
|
5012
5026
|
mostConstrained,
|
|
5013
5027
|
}));
|
|
5014
5028
|
}
|
|
5029
|
+
// ─── /admin/denials — Comprehensive denial analysis ───────────────────────
|
|
5030
|
+
handleDenialAnalysis(req, res) {
|
|
5031
|
+
if (!this.checkAdmin(req, res))
|
|
5032
|
+
return;
|
|
5033
|
+
const events = this.gate.meter.getEvents();
|
|
5034
|
+
// ── Categorize deny reasons into canonical types ──
|
|
5035
|
+
function categorize(reason) {
|
|
5036
|
+
if (reason.includes('rate_limited') && !reason.includes('tool_rate_limited'))
|
|
5037
|
+
return 'rate_limited';
|
|
5038
|
+
if (reason.includes('tool_rate_limited'))
|
|
5039
|
+
return 'tool_rate_limited';
|
|
5040
|
+
if (reason.includes('insufficient_credits'))
|
|
5041
|
+
return 'insufficient_credits';
|
|
5042
|
+
if (reason.includes('key_suspended'))
|
|
5043
|
+
return 'key_suspended';
|
|
5044
|
+
if (reason.includes('api_key_expired'))
|
|
5045
|
+
return 'api_key_expired';
|
|
5046
|
+
if (reason.includes('invalid_api_key'))
|
|
5047
|
+
return 'invalid_api_key';
|
|
5048
|
+
if (reason.includes('missing_api_key'))
|
|
5049
|
+
return 'missing_api_key';
|
|
5050
|
+
if (reason.includes('tool_not_allowed') && !reason.includes('token_tool_not_allowed'))
|
|
5051
|
+
return 'tool_not_allowed';
|
|
5052
|
+
if (reason.includes('token_tool_not_allowed'))
|
|
5053
|
+
return 'token_tool_not_allowed';
|
|
5054
|
+
if (reason.includes('ip_not_allowed'))
|
|
5055
|
+
return 'ip_not_allowed';
|
|
5056
|
+
if (reason.includes('spending_limit_exceeded'))
|
|
5057
|
+
return 'spending_limit_exceeded';
|
|
5058
|
+
if (reason.includes('quota_exceeded'))
|
|
5059
|
+
return 'quota_exceeded';
|
|
5060
|
+
if (reason.includes('team_budget'))
|
|
5061
|
+
return 'team_budget_exceeded';
|
|
5062
|
+
return 'other';
|
|
5063
|
+
}
|
|
5064
|
+
// ── Summary ──
|
|
5065
|
+
let totalCalls = 0;
|
|
5066
|
+
let totalDenials = 0;
|
|
5067
|
+
const byReason = {};
|
|
5068
|
+
for (const e of events) {
|
|
5069
|
+
totalCalls++;
|
|
5070
|
+
if (!e.allowed && e.denyReason) {
|
|
5071
|
+
totalDenials++;
|
|
5072
|
+
const cat = categorize(e.denyReason);
|
|
5073
|
+
byReason[cat] = (byReason[cat] || 0) + 1;
|
|
5074
|
+
}
|
|
5075
|
+
}
|
|
5076
|
+
const denialRate = totalCalls > 0
|
|
5077
|
+
? Math.round(totalDenials / totalCalls * 10000) / 10000
|
|
5078
|
+
: 0;
|
|
5079
|
+
// ── Per-key breakdown ──
|
|
5080
|
+
const keyMap = new Map();
|
|
5081
|
+
for (const e of events) {
|
|
5082
|
+
const name = e.keyName || e.apiKey.slice(0, 10);
|
|
5083
|
+
if (!keyMap.has(name))
|
|
5084
|
+
keyMap.set(name, { name, calls: 0, denials: 0, reasons: {} });
|
|
5085
|
+
const k = keyMap.get(name);
|
|
5086
|
+
k.calls++;
|
|
5087
|
+
if (!e.allowed && e.denyReason) {
|
|
5088
|
+
k.denials++;
|
|
5089
|
+
const cat = categorize(e.denyReason);
|
|
5090
|
+
k.reasons[cat] = (k.reasons[cat] || 0) + 1;
|
|
5091
|
+
}
|
|
5092
|
+
}
|
|
5093
|
+
const perKey = Array.from(keyMap.values()).map(k => ({
|
|
5094
|
+
name: k.name,
|
|
5095
|
+
calls: k.calls,
|
|
5096
|
+
denials: k.denials,
|
|
5097
|
+
denialRate: k.calls > 0 ? Math.round(k.denials / k.calls * 10000) / 10000 : 0,
|
|
5098
|
+
topReason: Object.entries(k.reasons).sort((a, b) => b[1] - a[1])[0]?.[0] || null,
|
|
5099
|
+
})).sort((a, b) => b.denials - a.denials);
|
|
5100
|
+
// ── Per-tool breakdown ──
|
|
5101
|
+
const toolMap = new Map();
|
|
5102
|
+
for (const e of events) {
|
|
5103
|
+
if (!toolMap.has(e.tool))
|
|
5104
|
+
toolMap.set(e.tool, { calls: 0, denials: 0, reasons: {} });
|
|
5105
|
+
const t = toolMap.get(e.tool);
|
|
5106
|
+
t.calls++;
|
|
5107
|
+
if (!e.allowed && e.denyReason) {
|
|
5108
|
+
t.denials++;
|
|
5109
|
+
const cat = categorize(e.denyReason);
|
|
5110
|
+
t.reasons[cat] = (t.reasons[cat] || 0) + 1;
|
|
5111
|
+
}
|
|
5112
|
+
}
|
|
5113
|
+
const perTool = Array.from(toolMap.entries())
|
|
5114
|
+
.map(([tool, stats]) => ({
|
|
5115
|
+
tool,
|
|
5116
|
+
calls: stats.calls,
|
|
5117
|
+
denials: stats.denials,
|
|
5118
|
+
denialRate: stats.calls > 0 ? Math.round(stats.denials / stats.calls * 10000) / 10000 : 0,
|
|
5119
|
+
topReason: Object.entries(stats.reasons).sort((a, b) => b[1] - a[1])[0]?.[0] || null,
|
|
5120
|
+
}))
|
|
5121
|
+
.sort((a, b) => b.denials - a.denials);
|
|
5122
|
+
// ── Hourly trends ──
|
|
5123
|
+
const hourBuckets = new Map();
|
|
5124
|
+
for (const e of events) {
|
|
5125
|
+
const hour = e.timestamp.slice(0, 13);
|
|
5126
|
+
if (!hourBuckets.has(hour))
|
|
5127
|
+
hourBuckets.set(hour, { calls: 0, denials: 0 });
|
|
5128
|
+
const h = hourBuckets.get(hour);
|
|
5129
|
+
h.calls++;
|
|
5130
|
+
if (!e.allowed && e.denyReason) {
|
|
5131
|
+
h.denials++;
|
|
5132
|
+
}
|
|
5133
|
+
}
|
|
5134
|
+
const hourlyTrends = Array.from(hourBuckets.entries())
|
|
5135
|
+
.map(([hour, stats]) => ({ hour, ...stats }))
|
|
5136
|
+
.sort((a, b) => a.hour.localeCompare(b.hour))
|
|
5137
|
+
.slice(-24);
|
|
5138
|
+
// ── Most denied keys ──
|
|
5139
|
+
const mostDenied = Array.from(keyMap.values())
|
|
5140
|
+
.filter(k => k.denials > 0)
|
|
5141
|
+
.map(k => ({
|
|
5142
|
+
name: k.name,
|
|
5143
|
+
denials: k.denials,
|
|
5144
|
+
calls: k.calls,
|
|
5145
|
+
denialRate: k.calls > 0 ? Math.round(k.denials / k.calls * 10000) / 10000 : 0,
|
|
5146
|
+
topReason: Object.entries(k.reasons).sort((a, b) => b[1] - a[1])[0]?.[0] || null,
|
|
5147
|
+
}))
|
|
5148
|
+
.sort((a, b) => b.denials - a.denials)
|
|
5149
|
+
.slice(0, 10);
|
|
5150
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
5151
|
+
res.end(JSON.stringify({
|
|
5152
|
+
summary: { totalCalls, totalDenials, denialRate },
|
|
5153
|
+
byReason,
|
|
5154
|
+
perKey,
|
|
5155
|
+
perTool,
|
|
5156
|
+
hourlyTrends,
|
|
5157
|
+
mostDenied,
|
|
5158
|
+
}));
|
|
5159
|
+
}
|
|
5160
|
+
// ─── /admin/traffic — Traffic volume analysis ─────────────────────────────
|
|
5161
|
+
handleTrafficAnalysis(req, res) {
|
|
5162
|
+
if (!this.checkAdmin(req, res))
|
|
5163
|
+
return;
|
|
5164
|
+
const events = this.gate.meter.getEvents();
|
|
5165
|
+
// ── Summary ──
|
|
5166
|
+
let totalCalls = 0;
|
|
5167
|
+
let totalAllowed = 0;
|
|
5168
|
+
let totalDenied = 0;
|
|
5169
|
+
const uniqueKeysSet = new Set();
|
|
5170
|
+
const uniqueToolsSet = new Set();
|
|
5171
|
+
for (const e of events) {
|
|
5172
|
+
totalCalls++;
|
|
5173
|
+
if (e.allowed)
|
|
5174
|
+
totalAllowed++;
|
|
5175
|
+
else
|
|
5176
|
+
totalDenied++;
|
|
5177
|
+
uniqueKeysSet.add(e.keyName || e.apiKey.slice(0, 10));
|
|
5178
|
+
uniqueToolsSet.add(e.tool);
|
|
5179
|
+
}
|
|
5180
|
+
const successRate = totalCalls > 0
|
|
5181
|
+
? Math.round(totalAllowed / totalCalls * 10000) / 10000
|
|
5182
|
+
: 0;
|
|
5183
|
+
// ── Tool popularity ──
|
|
5184
|
+
const toolMap = new Map();
|
|
5185
|
+
for (const e of events) {
|
|
5186
|
+
if (!toolMap.has(e.tool))
|
|
5187
|
+
toolMap.set(e.tool, { calls: 0, allowed: 0, credits: 0 });
|
|
5188
|
+
const t = toolMap.get(e.tool);
|
|
5189
|
+
t.calls++;
|
|
5190
|
+
if (e.allowed) {
|
|
5191
|
+
t.allowed++;
|
|
5192
|
+
t.credits += e.creditsCharged;
|
|
5193
|
+
}
|
|
5194
|
+
}
|
|
5195
|
+
const toolPopularity = Array.from(toolMap.entries())
|
|
5196
|
+
.map(([tool, stats]) => ({
|
|
5197
|
+
tool,
|
|
5198
|
+
calls: stats.calls,
|
|
5199
|
+
successRate: stats.calls > 0 ? Math.round(stats.allowed / stats.calls * 10000) / 10000 : 0,
|
|
5200
|
+
credits: stats.credits,
|
|
5201
|
+
}))
|
|
5202
|
+
.sort((a, b) => b.calls - a.calls);
|
|
5203
|
+
// ── Hourly volume ──
|
|
5204
|
+
const hourBuckets = new Map();
|
|
5205
|
+
for (const e of events) {
|
|
5206
|
+
const hour = e.timestamp.slice(0, 13);
|
|
5207
|
+
if (!hourBuckets.has(hour))
|
|
5208
|
+
hourBuckets.set(hour, { calls: 0, allowed: 0, denied: 0, credits: 0 });
|
|
5209
|
+
const h = hourBuckets.get(hour);
|
|
5210
|
+
h.calls++;
|
|
5211
|
+
if (e.allowed) {
|
|
5212
|
+
h.allowed++;
|
|
5213
|
+
h.credits += e.creditsCharged;
|
|
5214
|
+
}
|
|
5215
|
+
else {
|
|
5216
|
+
h.denied++;
|
|
5217
|
+
}
|
|
5218
|
+
}
|
|
5219
|
+
const hourlyVolume = Array.from(hourBuckets.entries())
|
|
5220
|
+
.map(([hour, stats]) => ({ hour, ...stats }))
|
|
5221
|
+
.sort((a, b) => a.hour.localeCompare(b.hour))
|
|
5222
|
+
.slice(-24);
|
|
5223
|
+
// ── Peak hour ──
|
|
5224
|
+
let peakHour = null;
|
|
5225
|
+
let peakHourCalls = 0;
|
|
5226
|
+
for (const h of hourlyVolume) {
|
|
5227
|
+
if (h.calls > peakHourCalls) {
|
|
5228
|
+
peakHour = h.hour;
|
|
5229
|
+
peakHourCalls = h.calls;
|
|
5230
|
+
}
|
|
5231
|
+
}
|
|
5232
|
+
// ── Top consumers (by call count) ──
|
|
5233
|
+
const keyMap = new Map();
|
|
5234
|
+
for (const e of events) {
|
|
5235
|
+
const name = e.keyName || e.apiKey.slice(0, 10);
|
|
5236
|
+
if (!keyMap.has(name))
|
|
5237
|
+
keyMap.set(name, { name, calls: 0, allowed: 0, credits: 0 });
|
|
5238
|
+
const k = keyMap.get(name);
|
|
5239
|
+
k.calls++;
|
|
5240
|
+
if (e.allowed) {
|
|
5241
|
+
k.allowed++;
|
|
5242
|
+
k.credits += e.creditsCharged;
|
|
5243
|
+
}
|
|
5244
|
+
}
|
|
5245
|
+
const topConsumers = Array.from(keyMap.values())
|
|
5246
|
+
.map(k => ({
|
|
5247
|
+
name: k.name,
|
|
5248
|
+
calls: k.calls,
|
|
5249
|
+
successRate: k.calls > 0 ? Math.round(k.allowed / k.calls * 10000) / 10000 : 0,
|
|
5250
|
+
credits: k.credits,
|
|
5251
|
+
}))
|
|
5252
|
+
.sort((a, b) => b.calls - a.calls)
|
|
5253
|
+
.slice(0, 10);
|
|
5254
|
+
// ── Namespace breakdown ──
|
|
5255
|
+
const nsMap = new Map();
|
|
5256
|
+
for (const e of events) {
|
|
5257
|
+
const ns = e.namespace || 'default';
|
|
5258
|
+
if (!nsMap.has(ns))
|
|
5259
|
+
nsMap.set(ns, { calls: 0, allowed: 0, credits: 0 });
|
|
5260
|
+
const n = nsMap.get(ns);
|
|
5261
|
+
n.calls++;
|
|
5262
|
+
if (e.allowed) {
|
|
5263
|
+
n.allowed++;
|
|
5264
|
+
n.credits += e.creditsCharged;
|
|
5265
|
+
}
|
|
5266
|
+
}
|
|
5267
|
+
const byNamespace = Array.from(nsMap.entries())
|
|
5268
|
+
.map(([namespace, stats]) => ({ namespace, ...stats }))
|
|
5269
|
+
.sort((a, b) => b.calls - a.calls);
|
|
5270
|
+
res.writeHead(200, { 'Content-Type': 'application/json' });
|
|
5271
|
+
res.end(JSON.stringify({
|
|
5272
|
+
summary: {
|
|
5273
|
+
totalCalls,
|
|
5274
|
+
totalAllowed,
|
|
5275
|
+
totalDenied,
|
|
5276
|
+
successRate,
|
|
5277
|
+
uniqueKeys: uniqueKeysSet.size,
|
|
5278
|
+
uniqueTools: uniqueToolsSet.size,
|
|
5279
|
+
peakHour,
|
|
5280
|
+
peakHourCalls,
|
|
5281
|
+
},
|
|
5282
|
+
toolPopularity,
|
|
5283
|
+
hourlyVolume,
|
|
5284
|
+
topConsumers,
|
|
5285
|
+
byNamespace,
|
|
5286
|
+
}));
|
|
5287
|
+
}
|
|
5015
5288
|
// ─── /keys/notes — Timestamped notes on API keys ─────────────────────────
|
|
5016
5289
|
handleGetNotes(req, res) {
|
|
5017
5290
|
if (!this.checkAdmin(req, res))
|