Skip to content

Commit

Permalink
[dashboard] add actor pid to dashboard (#48791)
Browse files Browse the repository at this point in the history
Add actor PID to ray dashboard, as requested by @rynewang 

Test:
- CI
-
https://console.anyscale-staging.com/v2/cld_kvedZWag2qA8i5BjxUevf5i7/prj_qC3ZfndQWYYjx2cz8KWGNUL4/jobs/prodjob_t4ypxualxjk73pryekjrh433i6?job-logs-section-tabs=application_logs&job-tab=ray-dashboard

<img width="1915" alt="Screenshot 2024-11-19 at 10 08 25 AM"
src="https://github.com/user-attachments/assets/45f14e29-31aa-4af6-a6a4-54d5a08b4f98">

---------

Signed-off-by: can <can@anyscale.com>
Signed-off-by: Cuong Nguyen <128072568+can-anyscale@users.noreply.github.com>
Co-authored-by: Alan Guo <aguo@anyscale.com>
  • Loading branch information
can-anyscale and alanwguo authored Nov 19, 2024
1 parent d4476ac commit b73cf25
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions python/ray/dashboard/client/src/pages/actor/ActorDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,15 @@ const ActorDetailPage = () => {
}
: { value: "-" },
},
{
label: "PID",
content: actorDetail.pid
? {
value: `${actorDetail.pid}`,
copyableValue: `${actorDetail.pid}`,
}
: { value: "-" },
},
{
label: "Started at",
content: {
Expand Down

0 comments on commit b73cf25

Please sign in to comment.