Skip to content

Commit 2751a82

Browse files
committed
HPCC-33776 ECL Watch v9 add costs to WU filters
allow the WU list to be filtered by compile, execute and file access costs Signed-off-by: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com>
1 parent f22292b commit 2751a82

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

esp/src/package-lock.json

Lines changed: 1 addition & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esp/src/src-react/components/Workunits.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ const FilterFields: Fields = {
3030
"Jobname": { type: "string", label: nlsHPCC.JobName, placeholder: nlsHPCC.log_analysis_1 },
3131
"Cluster": { type: "target-cluster", label: nlsHPCC.Cluster, placeholder: "", multiSelect: true },
3232
"State": { type: "workunit-state", label: nlsHPCC.State, placeholder: "" },
33+
"MinimumCompileCost": { type: "string", label: nlsHPCC.MinimumCompileCost, placeholder: "0.001" },
34+
"MinimumExecuteCost": { type: "string", label: nlsHPCC.MinimumExecuteCost, placeholder: "0.0002" },
35+
"MinimumFileAccessCost": { type: "string", label: nlsHPCC.MinimumFileAccessCost, placeholder: "0.03" },
3336
"ECL": { type: "string", label: nlsHPCC.ECL, placeholder: nlsHPCC.dataset },
3437
"LogicalFile": { type: "string", label: nlsHPCC.LogicalFile, placeholder: nlsHPCC.somefile },
3538
"LogicalFileSearchType": { type: "logicalfile-type", label: nlsHPCC.LogicalFileType, placeholder: "", disabled: (params: Fields) => !params.LogicalFile.value },

esp/src/src/nls/hpcc.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,9 @@ export = {
582582
MetricsGraph: "Metrics/Graph",
583583
MetricsSQL: "Metrics (SQL)",
584584
Min: "Min",
585+
MinimumCompileCost: "Minimum Compile Cost",
586+
MinimumExecuteCost: "Minimum Execute Cost",
587+
MinimumFileAccessCost: "Minimum File Access Cost",
585588
Mine: "Mine",
586589
MinNode: "Min Node",
587590
MinSize: "Min Size",

0 commit comments

Comments
 (0)