Skip to content
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

Better jobs view #535

Closed
erik-stephens opened this issue Sep 11, 2017 · 1 comment
Closed

Better jobs view #535

erik-stephens opened this issue Sep 11, 2017 · 1 comment

Comments

@erik-stephens
Copy link
Contributor

As an operator, I need to see all jobs with a specific status (eg running, failing, failed). As it's modeled, _status is only in the ex records:

> http $host/jobs/$job | jq '._status, ._created'
null
"2017-09-08T23:06:50.955Z"

> http $host/jobs/$job/ex | jq '._status, ._created'
"running"
"2017-09-11T13:26:08.213Z"

Trying to create job centric views from ex records is problematic because of the multiple records for the same job. If I want to filter on failed, then I only want to see the last failed job, not every failed execution for that job.

Also, the _created field is clobbered by the ex version. Being able to see the created timestamp helps identify that I'm viewing (and possibly restarting) the correct job and not an old. The _updated field is an ok workaround, so this problem is less impactful.

The api is close via the status filter on the /ex endpoint, but there is no way filter by time.

@kstaken
Copy link
Member

kstaken commented Oct 7, 2024

This is superseded by #3770

@kstaken kstaken closed this as completed Oct 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants