forked from cerc-io/laconic-console
* Initial signal graph * Minor update * Change graph using object mutator * Added SignalServer graph * Remove d3 dependencies * fixed signal kube system information * updated gem * Minor fix * update configuration * /api for signal * apollo1 * Added visx network graph * Remove info table. * Fixed tooltip zIndex Co-authored-by: Martin Acosta <Martín Acosta> Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com> Co-authored-by: Thomas E Lackey <thomas@wireline.io>
44 lines
531 B
GraphQL
44 lines
531 B
GraphQL
#
|
|
# Copyright 2020 DXOS.org
|
|
#
|
|
|
|
query {
|
|
signal_status: status {
|
|
id
|
|
updatedAt,
|
|
nodes {
|
|
id
|
|
kubeStatus {
|
|
system {
|
|
memory {
|
|
total
|
|
used
|
|
}
|
|
|
|
time {
|
|
up
|
|
}
|
|
|
|
nodejs {
|
|
version
|
|
}
|
|
}
|
|
services {
|
|
name
|
|
status
|
|
}
|
|
}
|
|
connections {
|
|
id
|
|
target
|
|
}
|
|
signal {
|
|
topics {
|
|
id
|
|
peers
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|