For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
BlogLog InRequest Demo
HomeProductDevelopersSelf-HostingChangelog
HomeProductDevelopersSelf-HostingChangelog
  • Getting Started
    • Overview
  • Agent Builder
    • Using the Agent Builder
  • Prompts
    • Prompt Engineering
    • Collaboration
    • Custom Models
    • Multimodality
    • Prompt Caching
  • Workflows
    • Introduction
    • Experimenting
    • Integrating
    • Function Calling
  • Evaluation & Test Suites
    • Quantitative Evaluation
    • Evaluating RAG Pipelines
    • Online Evaluations
  • Metrics
    • Out of the Box Metrics
    • Custom Metrics
    • Reusing Metrics in Test Suites
  • Deployments
    • Deployment Lifecycle Management
    • Observability in Production
    • Environments
    • Release Tags
    • Release Reviews
  • Monitoring
    • Monitoring Production Trends
    • Track Workflow Execution Costs
    • Datadog Integration
    • Webhook Integration
    • Execution URLs
  • Documents
    • Uploading Documents
    • Integrating w/ Search API
    • Metadata Filtering
  • Security
    • Data Privacy and Storage
    • HMAC Authentication
    • Role-Based Access Control (RBAC)
    • Static IPs
  • Organizations
    • Manage Organization Access
    • Data Retention Policies
LogoLogo
BlogLog InRequest Demo
On this page
  • Accessing Workflow Execution Details Directly
  • URL Format
  • Use Cases
  • Obtaining Execution IDs
  • Example Integration
Monitoring

Execution URLs

Was this page helpful?
Previous

Easy Guide to Uploading Documents on Vellum AI

Next
Built with

Accessing Workflow Execution Details Directly

Vellum provides a convenient way to directly access Prompt and Workflow Execution Details using just the Execution ID. This feature makes it easier to cross-link to specific Vellum executions from your internal tools, issue trackers, or monitoring systems for debugging purposes.

URL Format

The format for accessing Prompt or Workflow Execution Details is:

https://app.vellum.ai/workflows/executions/<execution-id>

Simply replace <execution-id> with the actual Execution ID of the Workflow you want to view.

Use Cases

Direct execution URLs are particularly useful for:

  1. Debugging: Include links to specific executions in error reports or issue tickets
  2. Cross-referencing: Reference Vellum executions from external monitoring systems
  3. Documentation: Link to example executions in your internal documentation
  4. Team collaboration: Share specific execution details with team members
  5. Monitoring integration: Include direct links in alerts or notifications

Obtaining Execution IDs

You can obtain workflow Execution IDs from:

  • The Executions tab in your Prompt or Workflow Deployment
  • The Vellum API response when executing a Prompt or Workflow
  • Webhook payloads (if configured)
  • Datadog events (if integrated)

Example Integration

Here’s an example of how you might include a direct execution URL in an error logging system:

1// Example error logging with direct execution link
2function logExecutionError(executionId, errorDetails) {
3 const executionUrl = `app.vellum.ai/workflows/executions/${executionId}`;
4 logger.error(`Workflow execution failed. Details: ${errorDetails}. View in Vellum: ${executionUrl}`);
5}

This direct linking capability makes it easy to reference specific executions in your internal systems without needing to navigate through the Vellum UI, streamlining your debugging and monitoring workflows.