Holder for command help information.
This is the tagging trait existing solely to have type associated with
with visor object so that implicit conversions can be done
on visor object itself.
This is the tagging trait existing solely to have type associated with
with visor object so that implicit conversions can be done
on visor object itself. Implicit conversions are essential to extensibility
of the Visor.
This is an example on how org.gridgain.visor.VisorTag trait is used to
extend visor natively with custom commands:
<ex> class VisorCustomCommand { def foo(@Nullable args: String) = { if (visor.hasValue("bar", visor.parse(args))) println("foobar") else println("foo") } def foo(@Nullable args: Symbol*) = foo(visor.flatSymbols(args: _*)) } object VisorCustomCommand { implicit def fromVisor(vs: VisorTag) = new VisorCustomCommand } </ex>
___ _________________________ ________ __ | / /____ _/__ ___/__ __ \___ __ \ __ | / / __ / _____ \ _ / / /__ /_/ / __ |/ / __/ / ____/ / / /_/ / _ _, _/ _____/ /___/ /____/ \____/ /_/ |_|
Visor console provides monitoring capabilities for GridGain.
GridGain ships with GRIDGAIN_HOME/bin/ggvisorcmd.{sh|bat} script that starts Visor console.
Just type:<ex>help</ex> in Visor console to get help and get started.
Overview
Visor console provides monitoring capabilities for GridGain.
Usage
GridGain ships with
GRIDGAIN_HOME/bin/ggvisorcmd.{sh|bat}script that starts Visor console.Just type:<ex>help</ex> in Visor console to get help and get started.