Skip to content

Commit

Permalink
Issue #3098 Allow to sort run billing by disk/compute cost - support …
Browse files Browse the repository at this point in the history
…RUN_INSTANCE_TYPE grouping as well

(cherry picked from commit 4a32127)
  • Loading branch information
mzueva authored and sidoruka committed Mar 31, 2023
1 parent 20bad8e commit 95a1608
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static Set<BillingGrouping> getStorageGrouping() {
}

public static Set<BillingGrouping> getRunGrouping() {
return new HashSet<>(Arrays.asList(RUN_COMPUTE_TYPE, PIPELINE, TOOL, USER, BILLING_CENTER));
return new HashSet<>(Arrays.asList(RUN_INSTANCE_TYPE, RUN_COMPUTE_TYPE, PIPELINE,
TOOL, USER, BILLING_CENTER));
}
}

0 comments on commit 95a1608

Please sign in to comment.