org.gridgain

visor

package visor

___    _________________________ ________
__ |  / /____  _/__  ___/__  __ \___  __ \
__ | / /  __  /  _____ \ _  / / /__  /_/ /
__ |/ /  __/ /   ____/ / / /_/ / _  _, _/
_____/   /___/   /____/  \____/  /_/ |_|

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.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. visor
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed case class VisorConsoleCommandHolder(name: String, shortInfo: String, longInfo: Seq[String], aliases: Seq[String], spec: Seq[String], args: Seq[(String, AnyRef)], examples: Seq[(String, AnyRef)], impl: VisorConsoleCommand) extends Product with Serializable

    Holder for command help information.

  2. trait VisorTag extends AnyRef

    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.

    Overview

    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.

    Example

    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>

Value Members

  1. package commands

  2. object visor extends VisorTag

    ___    _________________________ ________
    __ |  / /____  _/__  ___/__  __ \___  __ \
    __ | / /  __  /  _____ \ _  / / /__  /_/ /
    __ |/ /  __/ /   ____/ / / /_/ / _  _, _/
    _____/   /___/   /____/  \____/  /_/ |_|

    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.

    Annotations
    @GridNotPeerDeployable()

Inherited from AnyRef

Inherited from Any

Ungrouped