File size: 10,115 Bytes
9e4583c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | /**
* Usage Analytics — Aggregation functions for the analytics dashboard
*
* Processes usage.json history entries into dashboard-ready data:
* summary cards, daily trends, activity heatmap, model breakdown, etc.
*/
import { calculateCost } from "@/lib/usageDb";
/**
* Compute date range boundaries
* @param {string} range - "1d" | "7d" | "30d" | "90d" | "ytd" | "all"
* @returns {{ start: Date, end: Date }}
*/
function getDateRange(range: string) {
const end = new Date();
let start;
switch (range) {
case "1d":
start = new Date(end);
start.setDate(start.getDate() - 1);
break;
case "7d":
start = new Date(end);
start.setDate(start.getDate() - 7);
break;
case "30d":
start = new Date(end);
start.setDate(start.getDate() - 30);
break;
case "90d":
start = new Date(end);
start.setDate(start.getDate() - 90);
break;
case "ytd":
start = new Date(end.getFullYear(), 0, 1);
break;
case "all":
default:
start = new Date(0);
break;
}
return { start, end };
}
/**
* Format a Date to "YYYY-MM-DD" string
*/
function toDateKey(date: Date) {
const y = date.getFullYear();
const m = String(date.getMonth() + 1).padStart(2, "0");
const d = String(date.getDate()).padStart(2, "0");
return `${y}-${m}-${d}`;
}
/**
* Short model name (strip provider prefix paths)
*/
function shortModelName(model: string) {
if (!model) return "unknown";
// "accounts/fireworks/models/gpt-oss-120b" → "gpt-oss-120b"
const parts = model.split("/");
return parts[parts.length - 1] || model;
}
/**
* Compute all analytics data from usage history
* @param {Array} history - Array of usage entries
* @param {string} range - Time range filter
* @param {Object} connectionMap - Map of connectionId → account name
* @returns {Object} Analytics data
*/
export async function computeAnalytics(
history: any[],
range = "30d",
connectionMap: Record<string, string> = {}
) {
const { start, end } = getDateRange(range);
// ---- Filtered entries ----
const entries = history.filter((e) => {
const t = new Date(e.timestamp);
return t >= start && t <= end;
});
// ---- Summary ----
const summary = {
totalTokens: 0,
promptTokens: 0,
completionTokens: 0,
totalCost: 0,
totalRequests: entries.length,
uniqueModels: new Set<string>(),
uniqueAccounts: new Set<string>(),
uniqueApiKeys: new Set<string>(),
};
// ---- Daily trend ----
const dailyMap: Record<string, any> = {}; // "YYYY-MM-DD" → { requests, promptTokens, completionTokens, cost }
const dailyByModelMap: Record<string, Record<string, number>> = {}; // "YYYY-MM-DD" → { modelShort → tokens }
// ---- Activity heatmap (always last 365 days, regardless of range filter) ----
const heatmapStart = new Date();
heatmapStart.setDate(heatmapStart.getDate() - 364);
const activityMap: Record<string, number> = {};
// ---- By model / account / provider ----
const byModelMap: Record<string, any> = {};
const byAccountMap: Record<string, any> = {};
const byProviderMap: Record<string, any> = {};
const byApiKeyMap: Record<string, any> = {};
// ---- Weekly pattern (0=Sun..6=Sat) ----
const weeklyTokens = [0, 0, 0, 0, 0, 0, 0];
const weeklyCounts = [0, 0, 0, 0, 0, 0, 0];
// ---- Single pass over ALL history for heatmap ----
for (const entry of history) {
const entryDate = new Date(entry.timestamp);
if (entryDate >= heatmapStart) {
const key = toDateKey(entryDate);
const tokens =
(entry.tokens?.input ?? entry.tokens?.prompt_tokens ?? 0) +
(entry.tokens?.output ?? entry.tokens?.completion_tokens ?? 0);
activityMap[key] = (activityMap[key] || 0) + tokens;
}
}
// ---- Single pass over filtered entries for everything else ----
for (const entry of entries) {
const pt = entry.tokens?.input ?? entry.tokens?.prompt_tokens ?? 0;
const ct = entry.tokens?.output ?? entry.tokens?.completion_tokens ?? 0;
const totalTkns = pt + ct;
const entryDate = new Date(entry.timestamp);
const dateKey = toDateKey(entryDate);
const dayOfWeek = entryDate.getDay();
const modelShort = shortModelName(entry.model);
// Cost
let cost = 0;
try {
cost = await calculateCost(entry.provider, entry.model, entry.tokens);
} catch {
/* ignore */
}
// Summary
summary.promptTokens += pt;
summary.completionTokens += ct;
summary.totalTokens += totalTkns;
summary.totalCost += cost;
if (entry.model) summary.uniqueModels.add(modelShort);
if (entry.connectionId) summary.uniqueAccounts.add(entry.connectionId);
if (entry.apiKeyId || entry.apiKeyName) {
summary.uniqueApiKeys.add(entry.apiKeyId || entry.apiKeyName);
}
// Daily trend
if (!dailyMap[dateKey]) {
dailyMap[dateKey] = {
date: dateKey,
requests: 0,
promptTokens: 0,
completionTokens: 0,
cost: 0,
};
}
dailyMap[dateKey].requests++;
dailyMap[dateKey].promptTokens += pt;
dailyMap[dateKey].completionTokens += ct;
dailyMap[dateKey].cost += cost;
// Daily by model
if (!dailyByModelMap[dateKey]) dailyByModelMap[dateKey] = {};
dailyByModelMap[dateKey][modelShort] = (dailyByModelMap[dateKey][modelShort] || 0) + totalTkns;
// Weekly pattern
weeklyTokens[dayOfWeek] += totalTkns;
weeklyCounts[dayOfWeek]++;
// By model
if (!byModelMap[modelShort]) {
byModelMap[modelShort] = {
model: modelShort,
provider: entry.provider,
requests: 0,
promptTokens: 0,
completionTokens: 0,
totalTokens: 0,
cost: 0,
};
}
byModelMap[modelShort].requests++;
byModelMap[modelShort].promptTokens += pt;
byModelMap[modelShort].completionTokens += ct;
byModelMap[modelShort].totalTokens += totalTkns;
byModelMap[modelShort].cost += cost;
// By account
const accountName = entry.connectionId
? connectionMap[entry.connectionId] || `Account ${entry.connectionId.slice(0, 8)}`
: entry.provider || "unknown";
if (!byAccountMap[accountName]) {
byAccountMap[accountName] = { account: accountName, totalTokens: 0, requests: 0, cost: 0 };
}
byAccountMap[accountName].totalTokens += totalTkns;
byAccountMap[accountName].requests++;
byAccountMap[accountName].cost += cost;
// By provider
const prov = entry.provider || "unknown";
if (!byProviderMap[prov]) {
byProviderMap[prov] = {
provider: prov,
requests: 0,
promptTokens: 0,
completionTokens: 0,
totalTokens: 0,
cost: 0,
};
}
byProviderMap[prov].requests++;
byProviderMap[prov].promptTokens += pt;
byProviderMap[prov].completionTokens += ct;
byProviderMap[prov].totalTokens += totalTkns;
byProviderMap[prov].cost += cost;
// By API key
if (entry.apiKeyId || entry.apiKeyName) {
const keyName = entry.apiKeyName || entry.apiKeyId || "unknown";
const keyLabel = entry.apiKeyId ? `${keyName} (${entry.apiKeyId})` : keyName;
if (!byApiKeyMap[keyLabel]) {
byApiKeyMap[keyLabel] = {
apiKey: keyLabel,
apiKeyId: entry.apiKeyId || null,
apiKeyName: keyName,
requests: 0,
promptTokens: 0,
completionTokens: 0,
totalTokens: 0,
cost: 0,
};
}
byApiKeyMap[keyLabel].requests++;
byApiKeyMap[keyLabel].promptTokens += pt;
byApiKeyMap[keyLabel].completionTokens += ct;
byApiKeyMap[keyLabel].totalTokens += totalTkns;
byApiKeyMap[keyLabel].cost += cost;
}
}
// ---- Build sorted arrays ----
const dailyTrend = Object.values(dailyMap).sort((a, b) => a.date.localeCompare(b.date));
// Daily by model — collect all unique model names
const allModels = new Set<string>();
for (const day of Object.values(dailyByModelMap)) {
for (const m of Object.keys(day)) allModels.add(m);
}
const dailyByModel = dailyTrend.map((d) => {
const row = { date: d.date };
for (const m of allModels) {
row[m] = dailyByModelMap[d.date]?.[m] || 0;
}
return row;
});
const byModel = Object.values(byModelMap)
.sort((a, b) => b.totalTokens - a.totalTokens)
.map((m) => ({
...m,
pct: summary.totalTokens > 0 ? ((m.totalTokens / summary.totalTokens) * 100).toFixed(1) : "0",
}));
const byAccount = Object.values(byAccountMap).sort((a, b) => b.totalTokens - a.totalTokens);
const byProvider = Object.values(byProviderMap).sort((a, b) => b.totalTokens - a.totalTokens);
const byApiKey = Object.values(byApiKeyMap).sort((a, b) => b.totalTokens - a.totalTokens);
// Weekly pattern (avg tokens per day of week)
const weekDays = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
const weeklyPattern = weekDays.map((name, i) => ({
day: name,
avgTokens: weeklyCounts[i] > 0 ? Math.round(weeklyTokens[i] / weeklyCounts[i]) : 0,
totalTokens: weeklyTokens[i],
}));
// Streak — consecutive days with activity (from today going back)
let streak = 0;
const today = new Date();
for (let i = 0; i < 365; i++) {
const d = new Date(today);
d.setDate(d.getDate() - i);
const key = toDateKey(d);
if (activityMap[key] && activityMap[key] > 0) {
streak++;
} else if (i > 0) {
break; // Stop at first gap (skip today if no activity yet)
}
}
return {
summary: {
totalTokens: summary.totalTokens,
promptTokens: summary.promptTokens,
completionTokens: summary.completionTokens,
totalCost: summary.totalCost,
totalRequests: summary.totalRequests,
uniqueModels: summary.uniqueModels.size,
uniqueAccounts: summary.uniqueAccounts.size,
uniqueApiKeys: summary.uniqueApiKeys.size,
streak,
},
dailyTrend,
dailyByModel,
modelNames: [...allModels],
byModel,
byAccount,
byProvider,
byApiKey,
activityMap,
weeklyPattern,
range,
};
}
|