GitHub Actions Overview
In the GitHub Actions Overview, you can see at a glance the performance and reliability of your CI Workflows.
Workflows per repository
On the homepage of the overview, you'll find all of your workflows. They are grouped by repository, and show the status of recent runs as well as the duration of these workflows over time.

Workflow
On top of the Workflow page, a few graphs give a quick impression of the health of this workflow.
- The grid of checkmarks shows runs and whether they succeeded or not, this allows you to quickly spot flakiness or find what commit caused it to fail.
- The duration graph shows the duration of the last job, and the progression over time. This is useful to spot performance regressions and possible optimizations.
- The success rate is another important indicator of the healthiness of a workflow, showing you if reliability has changed.
Underneath you'll find a list of recent workflow runs, including currently running ones. Here you can quickly jump into a specific run.

Workflow Jobs
The Workflows Jobs page shows you information about the commit or action that triggered this job, and it shows all individual jobs that ran.
In the trace, you can see how long each job took and which jobs depend on each other. This allows you to quickly identify the critical paths where performance improvements will be most impactful.

Job view
The dedicated job view allows correlating job steps with performance metrics and comparing a job's performance to previous runs. This visibility helps you identify performance bottlenecks and track improvements over time.
More information about how you can use this view to Debug GitHub Actions

The previous runs panel allows you to compare the performance of the current run to the recent history of this job.
Unlike traditional GitHub Actions, Namespace provides direct access to logs from running containers within your workflows.

Metrics correlation Namespace also collects and retains step logs, too. When hovering over a step, you can easily correlate it with the associated instance metrics.
