Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt

Use this file to discover all available pages before exploring further.


Type Alias: LogSpansIngestRequest

type LogSpansIngestRequest = object;
Defined in: src/types/new-api.types.ts LogSpansIngestRequest Request model for ingesting spans.

Properties

clientVersion?

optional clientVersion: string | null;
Defined in: src/types/new-api.types.ts Client Version

experimentId?

optional experimentId: string | null;
Defined in: src/types/new-api.types.ts Experiment Id Experiment id associated with the traces.

loggingMethod?

optional loggingMethod: LoggingMethod;
Defined in: src/types/new-api.types.ts

logStreamId?

optional logStreamId: string | null;
Defined in: src/types/new-api.types.ts Log Stream Id Log stream id associated with the traces.

metricsTestingId?

optional metricsTestingId: string | null;
Defined in: src/types/new-api.types.ts Metrics Testing Id Metrics testing id associated with the traces.

parentId

parentId: string;
Defined in: src/types/new-api.types.ts Parent Id Parent trace or span id.

reliable?

optional reliable: boolean;
Defined in: src/types/new-api.types.ts Reliable Whether or not to use reliable logging. If set to False, the method will respond immediately before verifying that the traces have been successfully ingested, and no error message will be returned if ingestion fails. If set to True, the method will wait for the traces to be successfully ingested or return an error message if there is an ingestion failure.

spans

spans: (
  | object & AgentSpan
  | object & WorkflowSpan
  | object & LlmSpan
  | object & RetrieverSpan
  | object & ToolSpan
  | object & ControlSpan)[];
Defined in: src/types/new-api.types.ts Spans List of spans to log.

traceId

traceId: string;
Defined in: src/types/new-api.types.ts Trace Id Trace id associated with the spans.