48 lines
1.0 KiB
TypeScript
48 lines
1.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export enum TelemetryTarget {
|
|
GCP = 'gcp',
|
|
LOCAL = 'local',
|
|
}
|
|
|
|
const DEFAULT_TELEMETRY_TARGET = TelemetryTarget.LOCAL;
|
|
const DEFAULT_OTLP_ENDPOINT = 'http://localhost:4317';
|
|
|
|
export { DEFAULT_TELEMETRY_TARGET, DEFAULT_OTLP_ENDPOINT };
|
|
export {
|
|
initializeTelemetry,
|
|
shutdownTelemetry,
|
|
isTelemetrySdkInitialized,
|
|
} from './sdk.js';
|
|
export {
|
|
logCliConfiguration,
|
|
logUserPrompt,
|
|
logToolCall,
|
|
logApiRequest,
|
|
logApiError,
|
|
logApiResponse,
|
|
logFlashFallback,
|
|
logSlashCommand,
|
|
} from './loggers.js';
|
|
export {
|
|
StartSessionEvent,
|
|
EndSessionEvent,
|
|
UserPromptEvent,
|
|
ToolCallEvent,
|
|
ApiRequestEvent,
|
|
ApiErrorEvent,
|
|
ApiResponseEvent,
|
|
TelemetryEvent,
|
|
FlashFallbackEvent,
|
|
SlashCommandEvent,
|
|
makeSlashCommandEvent,
|
|
SlashCommandStatus,
|
|
} from './types.js';
|
|
export { SpanStatusCode, ValueType } from '@opentelemetry/api';
|
|
export { SemanticAttributes } from '@opentelemetry/semantic-conventions';
|
|
export * from './uiTelemetry.js';
|