You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there's no visibility into the cost of CEL expression evaluation for a ResourceGroup. We need to add support for tracking and exposing the total cost of CEL expressions in the ResourceGroup status. This will help platform teams understand the performance impact of their expressions and allow for better optimization of complex ResourceGroups.
Example:
apiVersion: kro.run/v1alpha1kind: ResourceGroupmetadata:
name: my-applicationspec: {...}status:
celMetrics:
totalCost: 42# Total cost across all expressionscostPerResource: # Breakdown per resourcedeployment: 12service: 8ingress: 22
Feature Description
Currently there's no visibility into the cost of CEL expression evaluation for a ResourceGroup. We need to add support for tracking and exposing the total cost of CEL expressions in the ResourceGroup status. This will help platform teams understand the performance impact of their expressions and allow for better optimization of complex ResourceGroups.
Example:
Like the Kubernetes API server does today, we want to add budgeting for CEL cost in kro.
The text was updated successfully, but these errors were encountered: