forked from akira/exq_ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request akira#33 from akira/akira/split_failed
Separate out dead jobs from failed counter
- Loading branch information
Showing
7 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ExqStat = Ember.Component.extend | ||
link: "index" | ||
classNames: ['col-xs-2'] | ||
classNames: ['col-xs-1'] | ||
|
||
`export default ExqStat` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
exq-stat title="Processed" stat=stats.processed | ||
exq-stat title="Failed" stat=stats.failed link="failures.index" | ||
exq-stat title="Failed" stat=stats.failed | ||
exq-stat title="Busy" stat=stats.busy link="processes.index" | ||
exq-stat title="Enqueued" stat=stats.enqueued link="queues.index" | ||
exq-stat title="Retries" stat=stats.retrying link="retries.index" | ||
exq-stat title="Scheduled" stat=stats.scheduled link="scheduled.index" | ||
exq-stat title="Dead" stat=stats.dead link="failures.index" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters