mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 15:20:06 +02:00
fix(cp-frontend): handle no previous metrics
This commit is contained in:
parent
0d659c94e8
commit
d9ae6eb34a
@ -55,7 +55,13 @@ export const withServiceMetricsGql = ({
|
||||
instanceId,
|
||||
metricName
|
||||
) => {
|
||||
const service = find(get(previousResult, 'deploymentGroup.services', []), [
|
||||
const services = get(previousResult, 'deploymentGroup.services', []);
|
||||
|
||||
if (!services.length) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const service = find(services, [
|
||||
'id',
|
||||
serviceId
|
||||
]);
|
||||
@ -64,9 +70,19 @@ export const withServiceMetricsGql = ({
|
||||
return [];
|
||||
}
|
||||
|
||||
return service.instances
|
||||
.find(i => i.id === instanceId)
|
||||
.metrics.find(m => m.name === metricName).metrics;
|
||||
const instance = find(service.instances, ['id', instanceId]);
|
||||
|
||||
if (!instance) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const metrics = find(instance.metrics, ['name', metricName]);
|
||||
|
||||
if (!metrics) {
|
||||
return [];
|
||||
}
|
||||
|
||||
return get(metrics, 'metrics', []);
|
||||
};
|
||||
|
||||
const getNextResult = (previousResult, fetchNextResult) => {
|
||||
|
Loading…
Reference in New Issue
Block a user