only show active services

This commit is contained in:
Michael Quigley 2022-08-04 11:12:54 -04:00
parent 462e90a97f
commit 9002513774
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -48,6 +48,7 @@ function buildGraph(overview) {
id++ id++
if(item.services != null) { if(item.services != null) {
item.services.forEach((item) => { item.services.forEach((item) => {
if(item.active) {
out.nodes.push({ out.nodes.push({
id: '' + id, id: '' + id,
data: {label: 'Service: ' + item.zitiServiceId}, data: {label: 'Service: ' + item.zitiServiceId},
@ -56,11 +57,12 @@ function buildGraph(overview) {
}) })
out.edges.push({ out.edges.push({
id: 'e' + envId + '-' + id, id: 'e' + envId + '-' + id,
source: '' + id, source: '' + envId,
target: '' + envId, target: '' + id,
animated: true animated: true
}) })
id++ id++
}
}); });
} }
}); });