mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-27 13:34:15 -07:00
69 lines
1.7 KiB
TypeScript
69 lines
1.7 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 {
|
|
GcpTraceExporter,
|
|
GcpMetricExporter,
|
|
GcpLogExporter,
|
|
} from './gcp-exporters.js';
|
|
export {
|
|
logCliConfiguration,
|
|
logUserPrompt,
|
|
logToolCall,
|
|
logApiRequest,
|
|
logApiError,
|
|
logApiResponse,
|
|
logFlashFallback,
|
|
logSlashCommand,
|
|
logConversationFinishedEvent,
|
|
logKittySequenceOverflow,
|
|
logChatCompression,
|
|
logToolOutputTruncated,
|
|
} from './loggers.js';
|
|
export type { SlashCommandEvent, ChatCompressionEvent } from './types.js';
|
|
export {
|
|
SlashCommandStatus,
|
|
EndSessionEvent,
|
|
UserPromptEvent,
|
|
ApiRequestEvent,
|
|
ApiErrorEvent,
|
|
ApiResponseEvent,
|
|
FlashFallbackEvent,
|
|
StartSessionEvent,
|
|
ToolCallEvent,
|
|
ConversationFinishedEvent,
|
|
KittySequenceOverflowEvent,
|
|
ToolOutputTruncatedEvent,
|
|
} from './types.js';
|
|
export { makeSlashCommandEvent, makeChatCompressionEvent } from './types.js';
|
|
export type { TelemetryEvent } from './types.js';
|
|
export { SpanStatusCode, ValueType } from '@opentelemetry/api';
|
|
export { SemanticAttributes } from '@opentelemetry/semantic-conventions';
|
|
export * from './uiTelemetry.js';
|
|
export { HighWaterMarkTracker } from './high-water-mark-tracker.js';
|
|
export { RateLimiter } from './rate-limiter.js';
|
|
export { ActivityType } from './activity-types.js';
|
|
export {
|
|
ActivityDetector,
|
|
getActivityDetector,
|
|
recordUserActivity,
|
|
isUserActive,
|
|
} from './activity-detector.js';
|