- Introdução
- Segurança de dados e conformidade
- Organizações
- Autenticação e segurança
- Licenciamento
- Sobre as licenças
- Preço unificado: estrutura do plano de licenciamento
- Ativar sua licença Enterprise
- Migre do Test Suite para o Test Cloud
- Migração de licença
- Atribuição de Licenças a Tenants
- Atribuição de licenças aos usuários
- Desalocando licenças de usuário
- Monitoring license allocation
- Atribuição excessiva de licenças
- Notificações de licenciamento
- Gerenciamento de Licenças de Usuário
- Tenants e serviços
- Contas e funções
- AI Trust Layer
- Aplicativos Externos
- Notificações
- Geração de logs
- Data Export
- Testes em sua organização
- Solução de problemas
- Migração para o Test Cloud
Guia do administrador do Test Cloud
Use this guide to configure Databricks as a destination for UiPath Data Export. Databricks supports OpenTelemetry (OTEL) Trace exports for Maestro and Agent traces using an OAuth 2.0 Service Principal.
Pré-requisitos
- An active Databricks workspace with administrator access.
- A Databricks Service Principal with OAuth 2.0 Client Credentials (Client ID and Client Secret).
- A Databricks table to receive OTEL trace data, with the full path in
[Catalog].[Schema].[Table]format. - Organization Administrator access in UiPath Test Cloud.
Step 1: Create a Databricks Service Principal
-
In Databricks, go to Settings > Identity and access > Service principals.
-
Create a new Service Principal and note the Application ID (Client ID).
-
Select the Secrets tab, then select Generate secret and copy the generated Client Secret.
Step 2: Grant permissions on the Service Principal
Run the following SQL statements in your Databricks workspace to grant the Service Principal access to the catalog, schema, and OTEL table where traces will be written. Replace Your_Catalog, Your_Schema, OTEL_Table, and <application-id> with your actual values.
GRANT USE_CATALOG ON CATALOG `Your_Catalog` TO `<application-id>`;
GRANT USE_SCHEMA ON SCHEMA `Your_Catalog`.`Your_Schema` TO `<application-id>`;
GRANT MODIFY, SELECT ON TABLE `Your_Catalog`.`Your_Schema`.`OTEL_Table` TO `<application-id>`;
GRANT USE_CATALOG ON CATALOG `Your_Catalog` TO `<application-id>`;
GRANT USE_SCHEMA ON SCHEMA `Your_Catalog`.`Your_Schema` TO `<application-id>`;
GRANT MODIFY, SELECT ON TABLE `Your_Catalog`.`Your_Schema`.`OTEL_Table` TO `<application-id>`;
Step 3: Configure Data Export in UiPath
-
In UiPath Test Cloud, go to Admin and select Data Export.
-
Select + Add.
-
Step 1 – Select tenant: Choose the tenant for this export, then select Next.
-
Step 2 – Select data sources: Select Maestro & Agents, then select Next.
-
Step 3 – Configure destination: Select Databricks as the connection type. Under Connection, select Add new connection and enter the following:
Campo Description Tipo de Autenticação Select OAuth 2.0 Client credentials. Workspace URL Your Databricks workspace URL (for example, https://dbc-xxxxx.azuredatabricks.net).ID do Cliente The Application ID from Step 1. Segredo do Cliente The client secret generated in Step 1. Select Connect to create the connection, then select Test Connection to validate connectivity without sending trace data.
-
Step 4 – Review and save: Review the configuration, then select Save.
Result: The new configuration appears in the Data Export table. The Status column reflects whether data is being delivered successfully.