Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename target indicator name to service system indicator name #64

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkg/apis/workload/v1alpha1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ type ServiceBusinessIndicatorSpec struct {
type ServiceSystemIndicatorName string

const (
TargetIndicatorNameCPUSchedWait ServiceSystemIndicatorName = "cpu_sched_wait"
TargetIndicatorNameCPUUsageRatio ServiceSystemIndicatorName = "cpu_usage_ratio"
TargetIndicatorNameCPI ServiceSystemIndicatorName = "cpi"
ServiceSystemIndicatorNameCPUSchedWait ServiceSystemIndicatorName = "cpu_sched_wait"
ServiceSystemIndicatorNameCPUUsageRatio ServiceSystemIndicatorName = "cpu_usage_ratio"
ServiceSystemIndicatorNameCPI ServiceSystemIndicatorName = "cpi"
)

// ServiceSystemIndicatorSpec defines workload profiling in system level, such as
Expand Down
Loading