-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2913 from alexcreasy/RHOAIENG-6560-rebase1
Support model metrics for KServe (RHOAIENG-6560) (RHOAIENG-6561)
- Loading branch information
Showing
29 changed files
with
1,210 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import { ConfigMapKind } from '~/k8sTypes'; | ||
import { mockConfigMap } from '~/__mocks__/mockConfigMap'; | ||
|
||
type MockKserveMetricsConfigMapType = { | ||
namespace?: string; | ||
modelName?: string; | ||
supported?: boolean; | ||
config?: string; | ||
}; | ||
|
||
export const MOCK_KSERVE_METRICS_CONFIG_1 = ` | ||
{ | ||
"config": [ | ||
{ | ||
"title": "Number of incoming requests", | ||
"type": "REQUEST_COUNT", | ||
"queries": [ | ||
{ | ||
"title": "Successful requests", | ||
"query": "sum(increase(ovms_requests_success{namespace='models',name='mnist'}[5m]))" | ||
}, | ||
{ | ||
"title": "Failed requests", | ||
"query": "sum(increase(ovms_requests_fail{namespace='models',name='mnist'}[5m]))" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "Mean Model Latency", | ||
"type": "MEAN_LATENCY", | ||
"queries": [ | ||
{ | ||
"title": "Mean inference latency", | ||
"query": "sum by (name) (rate(ovms_inference_time_us_sum{namespace='models', name='mnist'}[1m])) / sum by (name) (rate(ovms_inference_time_us_count{namespace='models', name='mnist'}[1m]))" | ||
}, | ||
{ | ||
"title": "Mean request latency", | ||
"query": "sum by (name) (rate(ovms_request_time_us_sum{name='mnist'}[1m])) / sum by (name) (rate(ovms_request_time_us_count{name='mnist'}[1m]))" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "CPU usage", | ||
"type": "CPU_USAGE", | ||
"queries": [ | ||
{ | ||
"title": "CPU usage", | ||
"query": "sum(node_namespace_pod_container:container_cpu_usage_seconds_total:sum_irate{namespace='models'}* on(namespace,pod) group_left(workload, workload_type) namespace_workload_pod:kube_pod_owner:relabel{namespace='models', workload=~'mnist-predictor-.*', workload_type=~'deployment'}) by (pod)" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "Memory usage", | ||
"type": "MEMORY_USAGE", | ||
"queries": [ | ||
{ | ||
"title": "Memory usage", | ||
"query": "sum(container_memory_working_set_bytes{namespace='models', container!='', image!=''} * on(namespace,pod) group_left(workload, workload_type) namespace_workload_pod:kube_pod_owner:relabel{cluster='', namespace='models', workload=~'mnist-.*', workload_type=~'deployment'}) by (pod)" | ||
} | ||
] | ||
} | ||
] | ||
}`; | ||
|
||
export const MOCK_KSERVE_METRICS_CONFIG_2 = | ||
'{ I am malformed JSON and I am here to ruin your day }'; | ||
|
||
export const MOCK_KSERVE_METRICS_CONFIG_3 = ` | ||
{ | ||
"config": [ | ||
{ | ||
"title": "Number of incoming requests", | ||
"type": "REQUEST_COUNT", | ||
"queries": [ | ||
{ | ||
"title": "Successful requests", | ||
"query": "sum(increase(ovms_requests_success{namespace='models',name='mnist'}[5m]))" | ||
}, | ||
{ | ||
"title": "Failed requests", | ||
"query": "sum(increase(ovms_requests_fail{namespace='models',name='mnist'}[5m]))" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "Mean Model Latency", | ||
"type": "MEAN_LATENCY", | ||
"queries": [ | ||
{ | ||
"title": "Mean inference latency", | ||
"query": "sum by (name) (rate(ovms_inference_time_us_sum{namespace='models', name='mnist'}[1m])) / sum by (name) (rate(ovms_inference_time_us_count{namespace='models', name='mnist'}[1m]))" | ||
}, | ||
{ | ||
"title": "Mean request latency", | ||
"query": "sum by (name) (rate(ovms_request_time_us_sum{name='mnist'}[1m])) / sum by (name) (rate(ovms_request_time_us_count{name='mnist'}[1m]))" | ||
} | ||
] | ||
} | ||
] | ||
}`; | ||
|
||
export const mockKserveMetricsConfigMap = ({ | ||
namespace = 'test-project', | ||
modelName = 'test-inference-service', | ||
supported = true, | ||
config = MOCK_KSERVE_METRICS_CONFIG_1, | ||
}: MockKserveMetricsConfigMapType): ConfigMapKind => { | ||
const data = { | ||
metrics: config, | ||
supported: String(supported), | ||
}; | ||
return mockConfigMap({ data, namespace, name: `${modelName}-metrics-dashboard` }); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.