NodeStatusRpcOps

An RPC extension which provides access to the Node Status

This interface is designed to allow external applications to query and view the status of the node

example use:

val rpcAddress = NetworkHostAndPort("nodeAddress", 1000)
val client = MultiRPCClient(rpcAddress, NodeFlowStatusRpcOps::class.java, rpcUser.username, rpcUser.password)
val connFuture = client.start()
val conn = connFuture.get()
val nodeStatusRPCOPs = conn.proxy

println(nodeStatusRPCOPs.getConfigAsHOCONString())
}

Functions

Link copied to clipboard
Link copied to clipboard
abstract fun getInstalledDrivers(): List<<Error class: unknown class>>
Link copied to clipboard
Link copied to clipboard
abstract fun getLogSnapshot(numberOfElements: Int): List<String>