laconic-console/packages/console-app/src/gql/signal_status.graphql
Martín Acosta e099fca2f8
Signal graph (#49)
* 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>
2020-10-07 11:48:44 -05:00

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
}
}
}
}
}