181 lines
5.4 KiB
JavaScript
181 lines
5.4 KiB
JavaScript
/**
|
|
* Telemetry Submission Service
|
|
* Handles sending telemetry data to remote gateway endpoint
|
|
*/
|
|
|
|
import { z } from "zod";
|
|
import { getConfig } from "./config-manager.js";
|
|
|
|
// Telemetry data validation schema
|
|
const TelemetryDataSchema = z.object({
|
|
timestamp: z.string().datetime(),
|
|
userId: z.string().min(1),
|
|
commandName: z.string().min(1),
|
|
modelUsed: z.string().optional(),
|
|
providerName: z.string().optional(),
|
|
inputTokens: z.number().optional(),
|
|
outputTokens: z.number().optional(),
|
|
totalTokens: z.number().optional(),
|
|
totalCost: z.number().optional(),
|
|
currency: z.string().optional(),
|
|
commandArgs: z.any().optional(),
|
|
fullOutput: z.any().optional(),
|
|
});
|
|
|
|
// Configuration
|
|
const GATEWAY_ENDPOINT = "http://localhost:4444/api/v1/telemetry";
|
|
const MAX_RETRIES = 3;
|
|
const RETRY_DELAY = 1000; // 1 second
|
|
|
|
/**
|
|
* Get telemetry configuration from environment or config
|
|
* @returns {Object} Configuration object with apiKey, userId, and email
|
|
*/
|
|
function getTelemetryConfig() {
|
|
// Try environment variables first (for testing)
|
|
const envApiKey =
|
|
process.env.GATEWAY_API_KEY || process.env.TELEMETRY_API_KEY;
|
|
const envUserId =
|
|
process.env.GATEWAY_USER_ID || process.env.TELEMETRY_USER_ID;
|
|
const envEmail =
|
|
process.env.GATEWAY_USER_EMAIL || process.env.TELEMETRY_USER_EMAIL;
|
|
|
|
if (envApiKey && envUserId && envEmail) {
|
|
return { apiKey: envApiKey, userId: envUserId, email: envEmail };
|
|
}
|
|
|
|
// Fall back to config file
|
|
const config = getConfig();
|
|
return {
|
|
apiKey: config?.telemetryApiKey,
|
|
userId: config?.telemetryUserId,
|
|
email: config?.telemetryUserEmail,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Submits telemetry data to the remote gateway endpoint
|
|
* @param {Object} telemetryData - The telemetry data to submit
|
|
* @returns {Promise<Object>} - Result object with success status and details
|
|
*/
|
|
export async function submitTelemetryData(telemetryData) {
|
|
try {
|
|
// Check user opt-out preferences first
|
|
const config = getConfig();
|
|
if (config && config.telemetryEnabled === false) {
|
|
return {
|
|
success: true,
|
|
skipped: true,
|
|
reason: "Telemetry disabled by user preference",
|
|
};
|
|
}
|
|
|
|
// Get telemetry configuration
|
|
const telemetryConfig = getTelemetryConfig();
|
|
if (
|
|
!telemetryConfig.apiKey ||
|
|
!telemetryConfig.userId ||
|
|
!telemetryConfig.email
|
|
) {
|
|
return {
|
|
success: false,
|
|
error:
|
|
"Telemetry configuration incomplete. Set GATEWAY_API_KEY, GATEWAY_USER_ID, and GATEWAY_USER_EMAIL environment variables or configure in .taskmasterconfig",
|
|
};
|
|
}
|
|
|
|
// Validate telemetry data
|
|
try {
|
|
TelemetryDataSchema.parse(telemetryData);
|
|
} catch (validationError) {
|
|
return {
|
|
success: false,
|
|
error: `Telemetry data validation failed: ${validationError.message}`,
|
|
};
|
|
}
|
|
|
|
// Filter out sensitive fields before submission and ensure userId is set
|
|
const { commandArgs, fullOutput, ...safeTelemetryData } = telemetryData;
|
|
safeTelemetryData.userId = telemetryConfig.userId; // Ensure correct userId
|
|
|
|
// Attempt submission with retry logic
|
|
let lastError;
|
|
for (let attempt = 1; attempt <= MAX_RETRIES; attempt++) {
|
|
try {
|
|
const response = await fetch(GATEWAY_ENDPOINT, {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${telemetryConfig.apiKey}`, // Use Bearer token format
|
|
"X-User-Email": telemetryConfig.email, // Add required email header
|
|
},
|
|
body: JSON.stringify(safeTelemetryData),
|
|
});
|
|
|
|
if (response.ok) {
|
|
const result = await response.json();
|
|
return {
|
|
success: true,
|
|
id: result.id,
|
|
attempt,
|
|
};
|
|
} else {
|
|
// Handle HTTP error responses
|
|
const errorData = await response.json().catch(() => ({}));
|
|
const errorMessage = `HTTP ${response.status} ${response.statusText}`;
|
|
|
|
// Don't retry on certain status codes (rate limiting, auth errors, etc.)
|
|
if (
|
|
response.status === 429 ||
|
|
response.status === 401 ||
|
|
response.status === 403
|
|
) {
|
|
return {
|
|
success: false,
|
|
error: errorMessage,
|
|
statusCode: response.status,
|
|
};
|
|
}
|
|
|
|
// For other HTTP errors, continue retrying
|
|
lastError = new Error(errorMessage);
|
|
}
|
|
} catch (networkError) {
|
|
lastError = networkError;
|
|
}
|
|
|
|
// Wait before retry (exponential backoff)
|
|
if (attempt < MAX_RETRIES) {
|
|
await new Promise((resolve) =>
|
|
setTimeout(resolve, RETRY_DELAY * Math.pow(2, attempt - 1))
|
|
);
|
|
}
|
|
}
|
|
|
|
// All retries failed
|
|
return {
|
|
success: false,
|
|
error: lastError.message,
|
|
attempts: MAX_RETRIES,
|
|
};
|
|
} catch (error) {
|
|
// Graceful error handling - never throw
|
|
return {
|
|
success: false,
|
|
error: `Telemetry submission failed: ${error.message}`,
|
|
};
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Submits telemetry data asynchronously without blocking execution
|
|
* @param {Object} telemetryData - The telemetry data to submit
|
|
*/
|
|
export function submitTelemetryDataAsync(telemetryData) {
|
|
// Fire and forget - don't block execution
|
|
submitTelemetryData(telemetryData).catch((error) => {
|
|
// Silently log errors without blocking
|
|
console.debug("Telemetry submission failed:", error);
|
|
});
|
|
}
|