Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Frontend
Merge requests
!1834
Show worker costs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Show worker costs
costs
into
release-1.7.2
Overview
4
Commits
4
Pipelines
0
Changes
4
All threads resolved!
Show all comments
Merged
ml bonhomme
requested to merge
costs
into
release-1.7.2
2 months ago
Overview
4
Commits
4
Pipelines
0
Changes
4
All threads resolved!
Show all comments
Expand
closes
#1527 (closed)
requires
backend!2514 (merged)
0
0
Merge request reports
Compare
release-1.7.2
version 4
3fa11933
2 months ago
version 3
18c421de
2 months ago
version 2
0553820a
2 months ago
version 1
c0d4a5bb
2 months ago
release-1.7.2 (base)
and
version 2
latest version
00cac228
4 commits,
2 months ago
version 4
3fa11933
4 commits,
2 months ago
version 3
18c421de
3 commits,
2 months ago
version 2
0553820a
2 commits,
2 months ago
version 1
c0d4a5bb
1 commit,
2 months ago
4 files
+
66
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/components/Process/Workers/WorkerRuns/WorkerTag.vue
+
10
−
4
Options
@@ -9,16 +9,19 @@
<span
class=
"mx-1"
:title=
"worker.name"
>
{{
worker
.
name
}}
</span>
<span
v-if=
"hasCost"
class=
"tag is-warning"
>
€
</span>
</
template
>
<
script
>
<
script
lang=
"ts"
>
import
{
defineComponent
,
PropType
}
from
'
vue
'
import
{
WORKER_TYPE_COLORS
}
from
'
@/config
'
import
{
Worker
}
from
'
@/types/worker
'
export
default
{
export
default
defineComponent
(
{
props
:
{
// A worker instance to build base tag elements
worker
:
{
type
:
Object
,
type
:
Object
as
PropType
<
Worker
>
,
required
:
true
}
},
@@ -28,7 +31,10 @@ export default {
},
workerClass
()
{
return
WORKER_TYPE_COLORS
[
this
.
workerType
]?.
cssClass
??
WORKER_TYPE_COLORS
.
default
.
cssClass
},
hasCost
()
{
return
parseFloat
(
this
.
worker
.
cost_gpu_hour
)
>
0
||
parseFloat
(
this
.
worker
.
cost_cpu_hour
)
>
0
||
parseFloat
(
this
.
worker
.
cost_1k_elements
)
>
0
}
}
}
}
)
</
script
>
Loading