Interface AgentConfigGroup


public interface AgentConfigGroup
AgentConfigGroup...
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the agent configurations that belong to this group.
    Returns the id of this config group
    Returns the name of this config group
    Returns the run modes this group is active in
    Returns the title of this config group
    boolean
    Checks if this config group is active in respect to run modes.
  • Method Details

    • getId

      String getId()
      Returns the id of this config group
      Returns:
      the id
    • getName

      String getName()
      Returns the name of this config group
      Returns:
      the name
    • getTitle

      String getTitle()
      Returns the title of this config group
      Returns:
      the title
    • getRunModes

      String[] getRunModes()
      Returns the run modes this group is active in
      Returns:
      array of run mode names
    • isActive

      boolean isActive()
      Checks if this config group is active in respect to run modes. The group is active if at least one run mode is currently active. Note that the run modes are evaluated when the agent config is created.
      Returns:
      true if active
    • getConfigurations

      Map<String,AgentConfig> getConfigurations()
      Returns the agent configurations that belong to this group.
      Returns:
      map of configurations, key is the configuration path.