Skip to content

Conversation

Copy link

Copilot AI commented Dec 28, 2025

Adds ability to view runner metadata JSON from the runners table.

Changes

  • Runner table: Added ellipsis menu button to each row with "Show metadata" action
  • Metadata dialog: New modal displays runner metadata as formatted JSON
    • Shows runner name in description
    • Handles missing runners and empty metadata
  • Routing: Dialog state managed via URL search params (?modal=show-runner-metadata&runnerId=<id>)
  • Context support: Integrated into both engine and cloud route contexts

Implementation

Dialog component fetches runner by ID and displays metadata:

const runner = runners?.find((r) => r.runnerId === runnerId);
const metadataJson = runner.metadata 
  ? JSON.stringify(runner.metadata, null, 2) 
  : "{}";

return (
  <pre className="bg-muted p-4 rounded-md overflow-auto max-h-[60vh] text-sm">
    <code>{metadataJson}</code>
  </pre>
);

Follows existing patterns: dropdown menus like ProjectBuildsTableActions, dialog structure like EditRunnerConfigFrameContent.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • pkg.pr.new
    • Triggering command: /usr/local/bin/node node /home/REDACTED/.local/share/pnpm/.tools/pnpm/10.13.1/bin/pnpm install x (dns block)

If you need me to access, download, or install something from one of these locations, you can either:


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

@linear
Copy link

linear bot commented Dec 28, 2025

@vercel
Copy link

vercel bot commented Dec 28, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
rivet-cloud Ready Ready Preview, Comment Dec 28, 2025 7:39pm
rivet-inspector Ready Ready Preview, Comment Dec 28, 2025 7:39pm
2 Skipped Deployments
Project Deployment Review Updated (UTC)
rivet-site Ignored Ignored Preview Dec 28, 2025 7:39pm
rivetkit-serverless Skipped Skipped Dec 28, 2025 7:39pm

@vercel vercel bot temporarily deployed to Preview – rivetkit-serverless December 28, 2025 18:50 Inactive
@vercel vercel bot temporarily deployed to Preview – rivetkit-serverless December 28, 2025 18:58 Inactive
Copilot AI changed the title [WIP] Add show metadata feature to runner list Add "Show metadata" action to runner list Dec 28, 2025
Copilot AI requested a review from jog1t December 28, 2025 19:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants