Improve ops monitoring and chart loading

This commit is contained in:
2569718930@qq.com
2026-05-31 03:21:58 +08:00
parent ca72072da0
commit 2a6d8748f4
38 changed files with 3110 additions and 637 deletions
+15
View File
@@ -11,6 +11,7 @@ type TrackableAnalyticsEvent =
| "trial_created"
| "payment_start"
| "payment_success"
| "degraded_auth_profile"
| "signup_completed"
| "dashboard_active"
| "paywall_feature_clicked"
@@ -41,6 +42,15 @@ function getStoredId(storage: Storage, key: string) {
return value;
}
function getDeviceType() {
if (!isClient()) return "unknown";
const width = window.innerWidth || 0;
const ua = navigator.userAgent || "";
if (/ipad|tablet/i.test(ua) || (width >= 768 && width < 1100)) return "tablet";
if (/mobi|android|iphone/i.test(ua) || width < 768) return "mobile";
return "desktop";
}
export function getAnalyticsClientId() {
if (!isClient()) return "";
try {
@@ -88,6 +98,11 @@ export function trackAppEvent(
...payload,
path: window.location.pathname,
href: window.location.href,
referrer: document.referrer || "",
language: navigator.language || "",
timezone: Intl.DateTimeFormat().resolvedOptions().timeZone || "",
device_type: getDeviceType(),
viewport: `${window.innerWidth || 0}x${window.innerHeight || 0}`,
captured_at: new Date().toISOString(),
},
};
+23 -3
View File
@@ -16,16 +16,29 @@ export const opsApi = {
systemStatus() {
return opsFetch<Record<string, unknown>>("/api/system/status");
},
sourceHealth(limit = 80) {
return opsFetch<Record<string, unknown>>(`/api/ops/source-health?limit=${limit}`);
},
paymentRuntime() {
return opsFetch<Record<string, unknown>>("/api/payments/runtime");
},
listPayments(limit = 50) {
return opsFetch<{ payments?: Array<Record<string, unknown>>; total?: number }>(`/api/ops/payments?limit=${limit}`);
},
billingRisk(days = 30, limit = 80) {
return opsFetch<Record<string, unknown>>(`/api/ops/billing-risk?days=${days}&limit=${limit}`);
},
async funnel(days = 30) {
const raw = await opsFetch<{
events?: Record<string, { total?: number; unique_users?: number }>;
events?: Record<string, { total?: number; unique_users?: number; unique_actors?: number }>;
diagnostics?: Record<string, { total?: number; unique_actors?: number; by_reason?: { name: string; count: number }[] }>;
rates?: Record<string, number>;
traffic?: {
referrers?: { name: string; count: number }[];
countries?: { name: string; count: number }[];
devices?: { name: string; count: number }[];
landing_paths?: { name: string; count: number }[];
};
window_days?: number;
}>(`/api/ops/analytics/funnel?days=${days}`);
const stepOrder = ["landing_view", "enter_terminal", "login_start", "signup_success", "trial_created", "payment_start", "payment_success"];
@@ -41,6 +54,7 @@ export const opsApi = {
const steps = stepOrder.map((key, i) => {
const evt = raw?.events?.[key];
const count = evt?.total ?? 0;
const uniqueActors = evt?.unique_actors ?? evt?.unique_users ?? 0;
let pct_of_prev: number | undefined;
if (i > 0) {
const prevCount = raw?.events?.[stepOrder[i - 1]]?.total ?? 0;
@@ -48,9 +62,15 @@ export const opsApi = {
} else {
pct_of_prev = 100;
}
return { label: stepLabels[key] ?? key, count, pct_of_prev };
return { key, label: stepLabels[key] ?? key, count, uniqueActors, pct_of_prev };
});
return { steps, rates: raw?.rates, window_days: raw?.window_days };
return {
diagnostics: raw?.diagnostics ?? {},
rates: raw?.rates,
steps,
traffic: raw?.traffic ?? {},
window_days: raw?.window_days,
};
},
users(q: string, limit = 20) {
return opsFetch<Record<string, unknown>>(`/api/ops/users?q=${encodeURIComponent(q)}&limit=${limit}`);