UiPath Documentation
test-cloud
latest
false
Important :
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.

Guide de l'administrateur de Test Cloud

Data Export data model

Data Export sends data in two formats depending on the data source selected:

  • Event-based (JSON) — discrete events emitted when something happens in UiPath (a job changes state, a queue item is processed, an audit action is recorded). Delivered to Azure Event Hub or AWS SQS.
  • OTEL Trace — hierarchical spans representing agent and Maestro execution traces in OpenTelemetry format. Delivered to Arize, Databricks, or any OTLP (OpenTelemetry Protocol)-compatible endpoint.

Event-based (JSON) exports

Orchestrator Events

Orchestrator emits events for Jobs, Queue Items, Machines, and Robot Logs. Each event includes a common envelope plus an entity-specific body.

Champs communs

All Orchestrator events include the following fields:

ChampDescription
TypeÉvénementString identifying the event type (for example, job.created, queueitem.added).
SchemaVersionSchema version identifier.
HorodatageHorodatage UTC de l'événement.
TenantKeyTenant identifier.
NomLocataireTenant display name.
FolderKeyFolder identifier.
NomDossierNom complet du dossier.
FullFolderPathFull folder path.
Job events

Emitted on: job.created, job.started, job.stopped, job.pending, job.completed, job.faulted, job.stopping, job.terminating

ChampSaisie de texteDescription
Clé (Key)GUIDUnique job identifier.
Heure de créationHorodatageJob creation time.
StartTimeHorodatageExecution start time.
EndTimeHorodatageExecution end time.
État (State)Chaîne de caractères (string)Job status: Pending, Running, Stopping, Terminating, Faulted, Successful, Stopped, Suspended, Resumed.
ProcessNameChaîne de caractères (string)Source package name.
DisplayNameChaîne de caractères (string)Display name in Orchestrator.
Nom du Robot (RobotName)Chaîne de caractères (string)Executing robot identifier.
Nom de la machine hôteChaîne de caractères (string)Execution machine name.
Queue item events

Emitted on: queueitem.added, queueItem.deferred, queueItem.reviewStatusChanged, queueItem.retried, queueItem.updated, queueItem.transactionAbandoned, queueItem.transactionCompleted, queueItem.transactionFailed, queueItem.transactionRetried, queueItem.transactionStarted

ChampSaisie de texteDescription
Clé (Key)GUIDQueue item identifier.
QueueDefinitionIdNumériqueQueue numeric ID.
État (Status)Chaîne de caractères (string)Item status: New, InProgress, Failed, Successful, Abandoned, Retried, Deleted, Unknown.
État de révision (ReviewStatus)Chaîne de caractères (string)Review classification: None, InReview, Verified, Retried, Unknown.
Priorité (Priority)Chaîne de caractères (string)Item priority: High, Normal, Low, Unknown.
DueDateDateTimeProcessing deadline.
Heure de créationDateTimeCreation timestamp.
Démarrer le traitement (StartProcessing)DateTimeProcessing start time.
Terminer le traitement (EndProcessing)DateTimeProcessing completion time.
DeferDateDateTimeEarliest available processing time.
SecondsInPreviousAttemptsNumériqueDuration of the previous attempt in seconds.
Nombre de nouvelles tentatives (RetryNumber)NumériqueNumber of processing attempts.
Progression (Progress)Chaîne de caractères (string)Business flow progress.
Données d'analyseChaîne de caractères (string)Analytics property key-value pairs.
SortieChaîne de caractères (string)Output data from the Set Transaction Status activity.
Données spécifiques (SpecificData)Chaîne de caractères (string)Custom data from the Specific Content property or Add Queue Item activity.
CreatorJobIdNumériqueCreating job identifier.
ExecutorJobIdNumériqueExecuting job identifier.
ProcessExceptionReasonChaîne de caractères (string)Failure summary.
ProcessExceptionDetailsChaîne de caractères (string)Failure details.
ProcessExceptionTypeChaîne de caractères (string)Error type: ApplicationException, BusinessException, None.

The Queue object embedded in each event includes: Key, Name, Description, MaxNumberOfRetries, EnforceUniqueReference, SlaInMinutes, RiskSlaInMinutes.

Remarque :

SpecificData, SpecificContent, and Output are not included in queueItem.deferred and queueItem.reviewStatusChanged events.

Machine events

Emitted on: machine.created, machine.updated, machine.deleted, machine.assign, machine.unassign

ChampSaisie de texteDescription
Id de la machineNumériqueMachine numeric ID.
MachineKeyGUIDMachine identifier.
Nom de machine (Machine Name)Chaîne de caractères (string)Machine custom name.
AutomationCloudSlotsNumériqueReserved runtime slots.
HeadlessSlotsNumériqueHeadless mode slots.
NonProductionSlotsNumériqueNon-production environment slots.
UnattendedSlotsNumériqueUnattended execution slots.

Machine session events (machineSession.status) include:

ChampSaisie de texteDescription
MachineKeyGUIDMachine identifier.
Nom de machine (Machine Name)Chaîne de caractères (string)Machine custom name.
Nom de la machine hôteChaîne de caractères (string)Host system name.
Nom d'utilisateur du serviceChaîne de caractères (string)Robot service account.
Statut de la machineChaîne de caractères (string)Status: Available, Busy, Disconnected, Unknown.
HorodatageDateTimeEvent timestamp.
IsUnresponsiveBooléenWhether the connection is unresponsive.
Robot log events

Emitted on: robotlog

ChampSaisie de texteDescription
MessageChaîne de caractères (string)Log content.
Niveau (Level)Chaîne de caractères (string)Severity: Trace, Info, Warn, Error, Fatal.
TypeJournalChaîne de caractères (string)Category: User, Default, Error, Business, ExecutionStep, Info, Security, Technical.
HorodatageDateTimeGeneration timestamp.
JobIdGUIDJob key.
ProcessNameChaîne de caractères (string)Executing process name.
Version du processusChaîne de caractères (string)Process version.
Nom du Robot (RobotName)Chaîne de caractères (string)Robot identifier.
Id de la machineNumériqueMachine numeric ID.
MachineKeyGUIDMachine identifier.
Nom de machine (Machine Name)Chaîne de caractères (string)Machine name.
Nom de la machine hôteChaîne de caractères (string)Host machine name (session logs only).
Identité WindowsChaîne de caractères (string)Acting user account.
InitiéPar (initiatedBy)Chaîne de caractères (string)Execution source: Assistant, Studio, StudioX, Orchestrator, CommandLine, RobotAPI.
FileNameChaîne de caractères (string)Executed .xaml file name.
InfoActivitéJSONActivity metadata: DisplayName, State, Activity, Arguments.
Champs personnalisésJSONCustom fields added via the AddLogFields activity.
QueueNameChaîne de caractères (string)Source queue name (queue processing only).
Id de la transactionGUIDTransaction key (queue processing only).
transactionStateChaîne de caractères (string)Started, Ended, Postponed (queue processing only).
transactionStatusChaîne de caractères (string)Start, Success, Failed, BusinessException, ApplicationException (queue processing only).
Délai d'exécution de la transaction (Transaction Execution Time)NumériqueExecution duration in seconds (queue processing only).
totalExecutionTimeInSecondsNumériqueTotal execution duration (queue processing only).
queueItemPriorityChaîne de caractères (string)High, Normal, Low (queue transaction end logs only).
queueItemReviewStatusChaîne de caractères (string)InReview, Verified, Reported, Retried (queue transaction end logs only).
ProcessingExceptionReasonChaîne de caractères (string)Exception reason (queue transaction end logs only).
Type d'exception de traitementChaîne de caractères (string)ApplicationException or BusinessException (queue transaction end logs only).

Maestro Events

Maestro emits events for Process Runs, Element Runs, and Incidents.

Standard fields

All Maestro events include the following fields:

ChampDescription
OrganizationIdIdentifier of the organization emitting the event.
TenantIdIdentifier of the tenant emitting the event.
FolderKeyFolder or workspace identifier.
ProcessKeyIdentifier of the process definition.
InstanceIdIdentifier of the process instance.
RunIdIdentifier of the process run.
SpanTypeMaestro event type: Incident, ProcessRun, ElementRun, InstanceOperation.
État (Status)Current lifecycle state of the event.
EventUniqueIdGlobally unique identifier of the emitted event.
EventTimeUtcTimestamp when the event was emitted.
TraceAttributesOptional trace-level metadata (nullable).
SpanAttributesStringified JSON of additional span-specific attributes.
Incident fields
ChampDescription
ElementIdElement where the incident occurred.
ElementRunIdElement run associated with the incident.
IncidentUpdateTimeUtcTimestamp when the incident was last updated.
Commentaire (Comment)Optional comment associated with the incident.
ErrorCodeError code for the incident.
ErrorMessageShort error message.
ErrorDetailsDetailed error information.
DebugModeDebug mode state when the incident occurred.
Process run fields
ChampDescription
StartTimeUtcProcess run start time in UTC.
SpanNameHuman-readable name of the span or event.
Identifiant du traçageDistributed trace identifier for correlation.
SpanIdSpan identifier for this process run.
ParentSpanIdParent span identifier (nullable for root spans).
PackageIdPackage identifier.
PackageKeyPackage key, typically includes version.
PackageVersionVersion du package.
Nom de la versionHuman-readable release name.
ExternalIdExternal correlation identifier.
SourceTrigger source of the run (for example, Manual).
DebugModeTypeDebug mode configuration.
CreatorUserKeyUser that initiated the run (nullable).
CaseInstanceIdCase instance identifier (nullable).
CaseManagementMetadataCase management metadata (nullable).
Element run fields
ChampDescription
StartTimeUtcElement execution start time in UTC.
EndTimeUtcElement execution end time in UTC.
SpanNameHuman-readable name of the span or event.
Identifiant du traçageDistributed trace identifier for correlation.
SpanIdSpan identifier for this element run.
ParentSpanIdParent span identifier (nullable).
VariablesStructured variables captured at element execution.
VariablesJsonVariables serialized as JSON.
ElementRun.ElementIdIdentifier of the element.
ElementRun.ElementNameDisplay name of the element.
ElementRun.ElementTypeElement type.
ElementRun.ElementExtensionTypeExtension type (nullable).
ElementRun.ElementRunIdElement run identifier.
ElementRun.IncomingFlowIdIncoming flow identifier.
ElementRun.IncomingFlowIdsIncoming flow identifiers array (nullable).
ElementRun.CaseStageElementIdCase stage element identifier (nullable).
ElementRun.CaseManagementMetadataCase metadata at element level (nullable).
Example: Element run event
{
  "ElementRun": {
    "ProcessRun": {
      "ProcessInstance": {
        "OrganizationId": "85d09b09-268b-4748-abfd-738402122e7d",
        "TenantId": "1777e378-59ea-4c6a-a6bf-c2e88fb6d2a1",
        "FolderKey": "cb0b27ed-0211-4a77-81a7-00530f85c67a",
        "PackageId": "Trace.Test.agentic.Agentic.Process",
        "PackageKey": "Trace.Test.agentic.Agentic.Process:1.0.0",
        "PackageVersion": "1.0.0",
        "ReleaseName": "Agentic Process",
        "ProcessKey": "ee34bc76-4989-487d-8cdc-0bc6ea87fae4",
        "InstanceId": "aafa3baa-dd48-46b9-bfea-2cf1acd999c3",
        "CaseInstanceId": null,
        "ExternalId": "44777039",
        "Source": "Manual",
        "DebugModeType": "None",
        "CreatorUserKey": null
      },
      "RunId": "aafa3baa-dd48-46b9-bfea-2cf1acd999c3",
      "CaseManagementMetadata": null
    },
    "ElementId": "__Action=Pending__",
    "ElementName": "",
    "ElementType": "__InstanceAction__",
    "ElementExtensionType": null,
    "ElementRunId": "4e410977-6373-4c02-ba81-1699ac94bdc6",
    "IncomingFlowId": "",
    "IncomingFlowIds": null,
    "CaseStageElementId": null,
    "CaseManagementMetadata": null
  },
  "StartTimeUtc": "2026-01-06T21:15:42.7806522Z",
  "EndTimeUtc": "2026-01-06T21:15:42.7806522Z",
  "Status": "Pending",
  "Variables": {},
  "VariablesJson": "{}",
  "SpanName": "Instance Created",
  "TraceId": "aafa3baa-dd48-46b9-bfea-2cf1acd999c3",
  "SpanId": "4e410977-6373-4c02-ba81-1699ac94bdc6",
  "ParentSpanId": null,
  "SpanType": "InstanceOperation",
  "EventUniqueId": "d0195ac7-3770-44f8-8d88-a74b53b6218a",
  "EventTimeUtc": "2026-01-06T21:15:42.7806522Z",
  "TraceAttributes": null,
  "SpanAttributes": "{\"spanType\":\"InstanceOperation\",\"operationType\":\"InstanceCreated\",\"comment\":\"\",\"userId\":\"00000000-0000-0000-0000-000000000000\"}"
}
{
  "ElementRun": {
    "ProcessRun": {
      "ProcessInstance": {
        "OrganizationId": "85d09b09-268b-4748-abfd-738402122e7d",
        "TenantId": "1777e378-59ea-4c6a-a6bf-c2e88fb6d2a1",
        "FolderKey": "cb0b27ed-0211-4a77-81a7-00530f85c67a",
        "PackageId": "Trace.Test.agentic.Agentic.Process",
        "PackageKey": "Trace.Test.agentic.Agentic.Process:1.0.0",
        "PackageVersion": "1.0.0",
        "ReleaseName": "Agentic Process",
        "ProcessKey": "ee34bc76-4989-487d-8cdc-0bc6ea87fae4",
        "InstanceId": "aafa3baa-dd48-46b9-bfea-2cf1acd999c3",
        "CaseInstanceId": null,
        "ExternalId": "44777039",
        "Source": "Manual",
        "DebugModeType": "None",
        "CreatorUserKey": null
      },
      "RunId": "aafa3baa-dd48-46b9-bfea-2cf1acd999c3",
      "CaseManagementMetadata": null
    },
    "ElementId": "__Action=Pending__",
    "ElementName": "",
    "ElementType": "__InstanceAction__",
    "ElementExtensionType": null,
    "ElementRunId": "4e410977-6373-4c02-ba81-1699ac94bdc6",
    "IncomingFlowId": "",
    "IncomingFlowIds": null,
    "CaseStageElementId": null,
    "CaseManagementMetadata": null
  },
  "StartTimeUtc": "2026-01-06T21:15:42.7806522Z",
  "EndTimeUtc": "2026-01-06T21:15:42.7806522Z",
  "Status": "Pending",
  "Variables": {},
  "VariablesJson": "{}",
  "SpanName": "Instance Created",
  "TraceId": "aafa3baa-dd48-46b9-bfea-2cf1acd999c3",
  "SpanId": "4e410977-6373-4c02-ba81-1699ac94bdc6",
  "ParentSpanId": null,
  "SpanType": "InstanceOperation",
  "EventUniqueId": "d0195ac7-3770-44f8-8d88-a74b53b6218a",
  "EventTimeUtc": "2026-01-06T21:15:42.7806522Z",
  "TraceAttributes": null,
  "SpanAttributes": "{\"spanType\":\"InstanceOperation\",\"operationType\":\"InstanceCreated\",\"comment\":\"\",\"userId\":\"00000000-0000-0000-0000-000000000000\"}"
}

Audit Log Events

Audit log exports support both tenant-level and organization-level audit events.

Tenant-level sources:

Identity and access: Identity, OMS, KMS, Licensing, AuthZ, Routing

Products and services: Integration Service, Data Service, Test Manager, Automation Ops, Apps, Document Understanding

Organization-level sources: Organization-scoped policy and user management events.

Standard fields
ChampDescription
IdGlobally unique identifier of the audit event.
LocalIdInternal sequential identifier for ordering.
Date de créationTimestamp when the event was created.
Dernière modificationTimestamp of the last modification (nullable).
VersionVersion of the audit event record.
État (State)Internal lifecycle state of the event.
État (Status)Outcome of the event (numeric enum).
TypeÉvénementIdentifier of the action performed.
EventSourceIdentifier of the product or system emitting the event.
EventTargetIdentifier of the event category.
EventDetailsEmbedded JSON with event-specific details (see below).
ServiceNameHuman-readable name of the emitting service.
ClientInfoEmbedded JSON with IpAddress and IpCountry.
ActorIdUnique identifier of the actor.
ActorNameDisplay name of the actor.
ActorEmailEmail of the actor (nullable).
ActorDetailsEmbedded JSON with metadata describing the actor.
OrganizationIdOrganization identifier.
NomOrganisationOrganization name.
TenantIdTenant identifier (nullable for organization-level events).
NomLocataireTenant name (nullable for organization-level events).
OrigineInfrastructure or regional origin of the event.
EventDetails fields by service

The EventDetails field is a JSON string whose structure depends on the emitting service.

Identity / Authentication events:

ChampDescription
User.IdIdentifier of the user.
User.DisplayNameUser display name.
User.EmailUser email.
User.TypeUser type (enum).
LoginMethodAuthentication method.
ID de clientOAuth client identifier.
ÉtenduesGranted or requested scopes.

Apps events:

ChampDescription
appIdUnique app identifier.
appNameApplication name.
appTypeType of application.
versionApplication version.
DescriptionApp description.
folderNameFolder containing the app.
isActionAppWhether the app is an action app.
isPublicAppWhether the app is publicly visible.

Integration Service events:

ChampDescription
ConnectionIdIntegration connection identifier.
ConnectionNameName of the connection.
ConnecteurConnector display name.
ConnectorKeyUnique connector key.

Admin / Policy events:

ChampDescription
PolicyIdPolicy identifier.
PolicyNamePolicy name.
CreatedPolicyPolicy creation metadata.
DeletedPolicyPolicy deletion metadata.
ModifiedFieldsFields changed during the update.

License Resource Manager events:

ChampDescription
ProductNameLicensed product name.
OldQuantityPrevious license quantity.
NewQuantityUpdated license quantity.
TenantIdAffected tenant.
NomLocataireAffected tenant name.
AdminNameAdministrator who performed the change.

Data Service (DataFabric) events:

ChampDescription
EntityIdIdentifier of the DataFabric entity.
EntityName (Nom de l'entité)Name of the entity.
RecordId (ID de l'enregistrement)Identifier of the affected record.
changedPropertiesProperties modified by the operation.
HorodatageDataFabric-specific event timestamp.
Example: Audit log event
{
  "LocalId": 158693,
  "State": 0,
  "LastModified": null,
  "Version": 1,
  "Id": "6cfeca16-2f9f-4ca1-8d06-be64003df865",
  "CreatedOn": "2026-01-10T16:15:46.5597482",
  "OrganizationId": "2511e08f-6fa5-40af-b4bb-ef3f077cb7a1",
  "OrganizationName": "2511e08f-6fa5-40af-b4bb-ef3f077cb7a1",
  "TenantId": null,
  "TenantName": null,
  "ActorId": "810e5c03-8284-47d4-a0b8-da238ee636e6",
  "ActorName": "System Administrator",
  "ActorEmail": null,
  "ActorDetails": "{\"Type\":1}",
  "EventType": "4ffc49e7-15b1-4c31-ba2d-a6dcdce716e7",
  "EventSource": "80c7a790-c3a8-4077-b4a4-fe6f9f947855",
  "EventTarget": "738aa382-1e14-48c8-a296-2868a1e5a22a",
  "EventDetails": "{\"User\":{\"Id\":\"1f8292e0-c86c-4bb3-b3bc-f9cebe546bbd\",\"DisplayName\":\"Test User\",\"Email\":\"plt_basic_auth_multi_org@uipath-qa.com\",\"Type\":0}}",
  "ServiceName": "Identity",
  "Status": 0,
  "ClientInfo": null,
  "Origin": "alp-wus2-01-platform"
}
{
  "LocalId": 158693,
  "State": 0,
  "LastModified": null,
  "Version": 1,
  "Id": "6cfeca16-2f9f-4ca1-8d06-be64003df865",
  "CreatedOn": "2026-01-10T16:15:46.5597482",
  "OrganizationId": "2511e08f-6fa5-40af-b4bb-ef3f077cb7a1",
  "OrganizationName": "2511e08f-6fa5-40af-b4bb-ef3f077cb7a1",
  "TenantId": null,
  "TenantName": null,
  "ActorId": "810e5c03-8284-47d4-a0b8-da238ee636e6",
  "ActorName": "System Administrator",
  "ActorEmail": null,
  "ActorDetails": "{\"Type\":1}",
  "EventType": "4ffc49e7-15b1-4c31-ba2d-a6dcdce716e7",
  "EventSource": "80c7a790-c3a8-4077-b4a4-fe6f9f947855",
  "EventTarget": "738aa382-1e14-48c8-a296-2868a1e5a22a",
  "EventDetails": "{\"User\":{\"Id\":\"1f8292e0-c86c-4bb3-b3bc-f9cebe546bbd\",\"DisplayName\":\"Test User\",\"Email\":\"plt_basic_auth_multi_org@uipath-qa.com\",\"Type\":0}}",
  "ServiceName": "Identity",
  "Status": 0,
  "ClientInfo": null,
  "Origin": "alp-wus2-01-platform"
}

OTEL Trace exports

Agent and Maestro traces are exported in OpenTelemetry (OTEL) format. Each execution generates a tree of spans — one root span per agent or Maestro run, with child spans for each LLM call, tool call, and guardrail evaluation.

OTEL span fields

OTEL FieldDescription
traceIdTrace identifier. Groups all spans belonging to one execution.
spanIdUnique identifier for this span.
parentSpanIdParent span identifier. Empty string for root spans.
nameHuman-readable span name (for example, Agent run - googlesearch, LLM call).
kindSpan kind: SPAN_KIND_INTERNAL or SPAN_KIND_CLIENT.
startTimeUnixNanoSpan start time in Unix nanoseconds.
endTimeUnixNanoSpan end time in Unix nanoseconds.
status.codeExecution status: STATUS_CODE_OK or STATUS_CODE_ERROR.
status.messageStatus message (empty string when no error).
attributes.*Span attributes flattened using dot notation (see below).

UiPath attribute mapping

UiPath's internal trace fields map to OTEL attributes as follows:

Champ UiPathOTEL attributeRemarques
Idspan_idUnique span identifier.
Identifiant du traçagetrace_idTrace identifier.
ParentIdparent_span_idNull for root spans.
NomnameSpan name.
StartTimestart_time_unix_nanoConverted to Unix nanoseconds.
EndTimeend_time_unix_nanoConverted to Unix nanoseconds.
État (Status)status.code1 = OK, 2 = ERROR.
AttributsattributesJSON string parsed into key-value pairs using dot notation.
SpanType, OrganizationId, TenantId, FolderKey, JobKey, ProcessKey, Source, VerbosityLevelattributes.uipath.*All UiPath metadata fields.

Span attribute types

The Attributes field in UiPath's internal schema contains a JSON string that is parsed and flattened into OTEL span attributes using dot notation. The structure depends on the span type.

agentRun attributes (attributes.type = "agentRun"):

AttributDescription
type, agentId, agentName, agentVersionAgent identity fields.
systemPrompt, userPromptAgent prompts.
inputSchema, outputSchemaInput and output schemas.
input, output, sourceExecution inputs, outputs, and trigger source.
errorError details, if present.

completion attributes (attributes.type = "completion"):

AttributDescription
type, modelSpan type and LLM model identifier.
settings.maxTokens, settings.temperatureLLM settings.
toolCallsArray of tool calls made during completion.
usage.completionTokens, usage.promptTokens, usage.totalTokensToken usage.
usage.isByoExecution, usage.executionDeploymentType, usage.isPiiMaskedExecution metadata.
errorError details, if present.

toolCall attributes (attributes.type = "toolCall"):

AttributDescription
type, callId, toolNameTool call identity.
arguments, toolTypeCall arguments and tool type.
RésultatTool call result.
errorError details, if present.

toolGuardrailEvaluation attributes (attributes.type = "toolGuardrailEvaluation"):

AttributDescription
type, guardrailName, guardrailDescriptionGuardrail identity.
guardrailAction, details, actionGuardrail action and outcome.
arguments, resultEvaluation inputs and result.
severityLevelSeverity classification.
errorError details, if present.

Export limits

LimiteValeur (Value)
Max individual attribute value32 KB
Max total attributes per span256 KB
Max OTLP batch size~1 MB (protobuf)
File attachmentsMetadata only (ID, filename, MIME type). File content is not exported.
Example: OTEL trace (four spans for one agent run)
[
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "a4bd5687817248fc",
    "parentSpanId": "",
    "name": "Agent run - googlesearch",
    "kind": "SPAN_KIND_INTERNAL",
    "startTimeUnixNano": "1728000235632009500",
    "endTimeUnixNano": "1728000248153231700",
    "attributes.type": "agentRun",
    "attributes.agentId": "80a61442-d3e1-4d10-966e-47e0bccc707d",
    "attributes.agentName": "googlesearch",
    "attributes.agentVersion": "1.0.0",
    "attributes.input.search_query": "google",
    "attributes.output.summary": "The search results for 'Google' include the official Google homepage.",
    "attributes.source": "playground",
    "attributes.uipath.organization_id": "9568beba-50a8-49d1-801e-f2d1711089fd",
    "attributes.uipath.tenant_id": "86011afe-5252-4e44-8805-b3430072d040",
    "attributes.uipath.span_type": "agentRun",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  },
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "4c10aa5169c44a17",
    "parentSpanId": "a4bd5687817248fc",
    "name": "LLM call",
    "kind": "SPAN_KIND_CLIENT",
    "startTimeUnixNano": "1728000238084433000",
    "endTimeUnixNano": "1728000245772907200",
    "attributes.type": "completion",
    "attributes.model": "gpt-4o-2024-11-20",
    "attributes.settings.maxTokens": 16384,
    "attributes.settings.temperature": 0,
    "attributes.usage.completionTokens": 491,
    "attributes.usage.promptTokens": 1110,
    "attributes.usage.totalTokens": 1601,
    "attributes.uipath.span_type": "completion",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  },
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "0fde078a923d484e",
    "parentSpanId": "4c10aa5169c44a17",
    "name": "LLM",
    "kind": "SPAN_KIND_CLIENT",
    "startTimeUnixNano": "1728000238979846800",
    "endTimeUnixNano": "1728000245095082400",
    "attributes.type": "completion",
    "attributes.model": "gpt-4o-2024-11-20",
    "attributes.uipath.span_type": "completion",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  },
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "7fc828f5295d4788",
    "parentSpanId": "a4bd5687817248fc",
    "name": "Agent output",
    "kind": "SPAN_KIND_INTERNAL",
    "startTimeUnixNano": "1728000246820034400",
    "endTimeUnixNano": "1728000246820034400",
    "attributes.type": "agentOutput",
    "attributes.output.summary": "The search results for 'Google' include the official Google homepage.",
    "attributes.uipath.span_type": "agentOutput",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  }
]
[
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "a4bd5687817248fc",
    "parentSpanId": "",
    "name": "Agent run - googlesearch",
    "kind": "SPAN_KIND_INTERNAL",
    "startTimeUnixNano": "1728000235632009500",
    "endTimeUnixNano": "1728000248153231700",
    "attributes.type": "agentRun",
    "attributes.agentId": "80a61442-d3e1-4d10-966e-47e0bccc707d",
    "attributes.agentName": "googlesearch",
    "attributes.agentVersion": "1.0.0",
    "attributes.input.search_query": "google",
    "attributes.output.summary": "The search results for 'Google' include the official Google homepage.",
    "attributes.source": "playground",
    "attributes.uipath.organization_id": "9568beba-50a8-49d1-801e-f2d1711089fd",
    "attributes.uipath.tenant_id": "86011afe-5252-4e44-8805-b3430072d040",
    "attributes.uipath.span_type": "agentRun",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  },
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "4c10aa5169c44a17",
    "parentSpanId": "a4bd5687817248fc",
    "name": "LLM call",
    "kind": "SPAN_KIND_CLIENT",
    "startTimeUnixNano": "1728000238084433000",
    "endTimeUnixNano": "1728000245772907200",
    "attributes.type": "completion",
    "attributes.model": "gpt-4o-2024-11-20",
    "attributes.settings.maxTokens": 16384,
    "attributes.settings.temperature": 0,
    "attributes.usage.completionTokens": 491,
    "attributes.usage.promptTokens": 1110,
    "attributes.usage.totalTokens": 1601,
    "attributes.uipath.span_type": "completion",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  },
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "0fde078a923d484e",
    "parentSpanId": "4c10aa5169c44a17",
    "name": "LLM",
    "kind": "SPAN_KIND_CLIENT",
    "startTimeUnixNano": "1728000238979846800",
    "endTimeUnixNano": "1728000245095082400",
    "attributes.type": "completion",
    "attributes.model": "gpt-4o-2024-11-20",
    "attributes.uipath.span_type": "completion",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  },
  {
    "traceId": "10f78499ce774eaba05699f234e1c75d",
    "spanId": "7fc828f5295d4788",
    "parentSpanId": "a4bd5687817248fc",
    "name": "Agent output",
    "kind": "SPAN_KIND_INTERNAL",
    "startTimeUnixNano": "1728000246820034400",
    "endTimeUnixNano": "1728000246820034400",
    "attributes.type": "agentOutput",
    "attributes.output.summary": "The search results for 'Google' include the official Google homepage.",
    "attributes.uipath.span_type": "agentOutput",
    "status.code": "STATUS_CODE_OK",
    "status.message": ""
  }
]

Cette page vous a-t-elle été utile ?

Connecter

Besoin d'aide ? Assistance

Vous souhaitez apprendre ? UiPath Academy

Vous avez des questions ? UiPath Forum

Rester à jour