-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature]: Show all jobs in runs UI #1723
Comments
Still would like to better understand the use case |
@peterschmidt85, some examples:
|
olgenn
added a commit
that referenced
this issue
Oct 23, 2024
Improvements for run details Create job details page
olgenn
added a commit
that referenced
this issue
Oct 23, 2024
@olgenn, thank you! A few comments:
|
Fixed in 454b18e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
The runs list page (
/runs
) and run details page (/projects/<project>/runs/<run>
) only show details about one job from the run: backend, region, instance ID, price, etc. If the run has multiple jobs, the user cannot see details or logs of other jobs.Showing details of a single jobs as details of the whole run can also be misleading, e.g. the price shown in the UI looks like the price of the whole run, while it is actually the price of only one job - only part of the run's price.
Solution
On the runs list page (
/runs
), show all jobs of each run, e.g. the way they are shown in CLI:On the run details page (
/projects/<project>/runs/<run>
), show the run details at the top and details for each job separately below.Show logs per-job too.
Additional information
The API seems to already provide all the data, so changes are only needed in frontend.
The text was updated successfully, but these errors were encountered: