Skip to main content
An execution is one run of work in your application. For an API service, an execution is usually one HTTP request. For a worker, it may be one job, message, scheduled task, or background operation. Foveus uses executions to show what happened, when it happened, how long it took, and what evidence was captured.

Why executions matter

Logs tell you what was written. Metrics tell you what changed. Traces show request flow. Executions show the actual unit of work you need to inspect. An execution can include:
  • service name
  • endpoint or operation
  • request context
  • response context
  • duration
  • outcome
  • logs
  • failure details
  • linked issue, if Foveus grouped it into one

Execution examples

An HTTP API request:
Each one can be represented as an execution.

What Foveus captures

The exact data depends on your SDK configuration and service type. A typical HTTP execution can include:

Service name

Foveus uses the service name to group executions by logical service. If you do not set ServiceName, Foveus uses your project assembly name. You can override it:
Use a stable logical service name.
Avoid putting the environment inside the service name.
Instead, keep the service name stable and use Environment.

Environment

Use Environment to describe where the service is running. Examples:
This helps you separate the same service across deployments.

Mode

Foveus has two modes: Foveus defaults to test. Set Mode only when sending live telemetry.

Outcomes

An execution can have an outcome such as: Foveus can use HTTP status codes, response fields, exception data, and configured outcome semantics to determine the outcome.

Context

Execution context is structured data captured from the request, response, query string, or custom context. For example:
You can search indexed context fields:
Search nested fields with dotted paths:
Strings should use quotes. Numbers and booleans do not need quotes.
Execution Context Search uses indexed execution context. It does not scan arbitrary raw request bodies.

Linked logs

If logging is configured, Foveus can show logs related to an execution. This helps you inspect the log lines that occurred during the same unit of work instead of searching through unrelated log streams.

Linked issues

Foveus can group failed executions into issues. An issue is a repeated or meaningful failure pattern. For example, several failed executions on the same endpoint may become one issue.
Open the issue to see:
  • failure pattern
  • representative execution
  • linked executions
  • recent activity
  • lifecycle
  • comments and activity history

Search executions

The Executions page is query-first because execution data can be high-volume. Common searches:
For best performance and precision, start with a service filter when searching by context.

When to use executions

Use executions when you need to:
  • investigate a support complaint
  • find a request by customer ID or request ID
  • inspect request and response context
  • understand why a request failed
  • move from an issue to the exact failed execution
  • correlate logs with a unit of work

What to do next