• Diff for "diagnostic_aggregator"
Differences between revisions 36 and 48 (spanning 12 versions)
Revision 36 as of 2010-01-13 05:51:12
Size: 7891
Comment:
Revision 48 as of 2018-03-08 18:02:49
Size: 10557
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
The `diagnostic_aggregator` is a ROS node that listens to <<MsgLink(diagnostic_msgs/DiagnosticArray)>> messages on the `/diagnostics` topic, processes and categorizes the data, and republishes on `/diagnostics_agg`. The Aggregator loads Analyzers to perform the diagnostics processing and categorization. The configuration and setup for each analyzer is specific to each robot and can be determined by users or developers.

The two analyzers in this package, `GenericAnalyzer` and `AnalyzerGroup`, hold and categorize diagnostic messages. They're useful for categorizing components or systems. They can warn when an item is stale, but do not do additional analysis of the diagnostics. Other analyzers can be loaded as plugins by the aggregator on startup.
The `diagnostic_aggregator` contains a ROS node, `aggregator_node`, that listens to <<MsgLink(diagnostic_msgs/DiagnosticArray)>> messages on the `/diagnostics` topic, processes and categorizes the data, and republishes on `/diagnostics_agg`. The `aggregator_node` loads "Analyzer" plugins to perform the diagnostics processing and categorization. The configuration and setup for each diagnostic aggregator is specific to each robot and can be determined by users or developers.

The two analyzers in this package, `GenericAnalyzer` and `AnalyzerGroup`, hold and categorize diagnostic messages. They're useful for categorizing components or systems. They can warn when an item is stale, but do not do additional analysis of the diagnostics. Other analyzers can be loaded as plugins by the `aggregator_node` on startup.
Line 16: Line 16:
The analyzers are responsible for correctly setting the names of each item they analyze. The Aggregator does not do any check or enforcement of this convention.
Line 20: Line 19:
This shows how an Aggregator might categorize and analyze diagnostics data from a simple robot. This shows how an `aggregator_node` might categorize and analyze diagnostics data from a simple robot.
Line 42: Line 41:
My Robot/Wheels/Left Wheel
My Robot/Wheels/Right Wheel
My Robot/Wheels/Left
My Robot/Wheels/Right
Line 62: Line 61:
    -- Left
    -- Right
Line 63: Line 64:
    -- etc ...
Line 69: Line 71:
The Aggregator will load analyzers to store and process the diagnostic data. Each analyzer inherits from the base class `diagnostic_aggregator/Analyzer`. Analyzers must be in packages that depend directly on [[pluginlib]] and [[diagnostic_aggregator]].

The base analyzer class is the pure virtual [[CodeAPI:diagnostic_aggregator/html/classdiagnostic__aggregator_1_1Analyzer.html|Analyzer]] class. All derived classes must implement these methods:
 * `init()`
 * `match()`
 * `analyze()`
 * `report()`
 * `getPath()`
 * `getName()`

Analyzers can choose the error state for any <<MsgLink(diagnostic_msgs/DiagnosticStatus)>> message they analyze. Generally, the "parent" of an analyzer has an error state of the maximum of its children, but some analyzers may have more advanced methods.
The `aggregator_node` will load analyzers to store and process the diagnostic data. Each analyzer inherits from the base class `diagnostic_aggregator::Analyzer`. Analyzers must be in packages that depend directly on [[pluginlib]] and [[diagnostic_aggregator]].

The base analyzer class is the pure virtual [[CodeAPI:diagnostic_aggregator/html/classdiagnostic__aggregator_1_1Analyzer.html|diagnostic_aggregator::Analyzer]] class. All derived classes must implement these methods:
 * `init()` - Loads parameters
 * `match()` - Returns true/false if interested in viewing a status message
 * `analyze()` - Analyze a new message
 * `report()` - Report results or state
 * `getPath()` - Get complete path (anything prepended onto status names)
 * `getName()` - Get nice name, like "Motors" or "Sensors"

Analyzers can choose the error state for any <<MsgLink(diagnostic_msgs/DiagnosticStatus)>> message they analyze and report. Generally, the "parent" of an analyzer has an error state of the maximum of its children, but some analyzers may have more advanced methods.

The analyzers are responsible for correctly setting the names of each item they analyze. The `aggregator_node` does not do any checking or enforcement of the diagnostic status name hierarchy.
Line 83: Line 88:
Users can create Analyzers to load as plugins for different robots. See [[diagnostics/Tutorials/Creating a Diagnostic Analyzer|Creating a Diagnostic Analyzer]] for details. Users can create Analyzers to load as plugins for different robots. See the tutorial [[diagnostics/Tutorials/Creating a Diagnostic Analyzer|Creating a Diagnostic Analyzer]] for details.
Line 87: Line 92:
For a full tutorial, see the tutorial [[/Tutorials/Configuring Diagnostic Aggregators|Configuring Diagnostic Aggregators]]

To set up the diagnostic analyzer on a robot, the aggregator is given parameters that will configure the analyzers. These parameters are in the `~analyzers` namespace of the aggregator node.

{{{
pub_rate: 1.0
base_path: 'PRE'
For a full tutorial, see the tutorial [[diagnostics/Tutorials/Configuring Diagnostic Aggregators|Configuring a Robot's Diagnostic Aggregator]].

To set up the diagnostic analyzer on a robot, the aggregator is given parameters that will configure the analyzers. These parameters, below, are in the private namespace of the aggregator node.
{{{
pub_rate: 1.0 # Optional, defaults to 1.0
base_path: 'PRE' # Optional, defaults to ""
Line 102: Line 106:
Under each sub namespace under `analyzers`, a different analyzer is configured. Analyzers can be robot specific, or they can be general purpose ones like the `GenericAnalyzer`.

Each analyzer needs a special parameter, `type`, in the configuration. The `type` parameter gives the Aggregator the class name of the Analyzer. Each of these classes must be a subclass of `diagnostic_aggregator/Analyzer`.
Under each sub namespace under `~analyzers`, a different analyzer is configured. Analyzers can be robot specific, or they can be general purpose ones like the `GenericAnalyzer`.

Each analyzer needs a special parameter, `type`, in the namespace. The `type` parameter gives the `aggregator_node` the class name of the `Analyzer`.
Line 110: Line 114:
For more details on writing your own Analyzer, see the tutorial [[/Tutorials/Writing a Diagnostic Analyzer|Writing a Diagnostic Analyzer]].
Line 114: Line 116:
To look for an example of an aggregator in use, look in the `demo/` directory in the `diagnostic_aggregator` package. Users specify each `Analyzer` in the private parameter space of the aggregator, then start the node.
{{{
To look for an example of an aggregator in use, look in the "diagnostic_aggregator/demo" directory. Users specify each `Analyzer` in the private parameter space of the `aggregator_node`, then start the node.
{{{
#!xml block=diag_agg_launch
Line 123: Line 126:
See [[diagnostics/Tutorials/Starting the Diagnostic Aggregator|Starting the Diagnostic Aggregator]] for details.
Line 131: Line 132:
For a full tutorial on the `GenericAnalyzer`, see [[/Tutorials/Using the GenericAnalyzer|Using the GenericAnalyzer]] The `GenericAnalyzer` class is useful for categorizing diagnostics data. It's mostly used for a particular device or category, like a Hokuyo node or EtherCAT devices. It can be configured to analyze almost any set of diagnostics data.

For a full tutorial on the `GenericAnalyzer`, see [[diagnostics/Tutorials/Using the GenericAnalyzer|Using the GenericAnalyzer]]
Line 144: Line 147:
    find_and_remove_prefix: base_hokuyo_node     startswith: base_hokuyo_node
Line 149: Line 152:
    find_and_remove_prefix: tilt_hokuyo_node     startswith: tilt_hokuyo_node
Line 154: Line 157:
    find_and_remove_prefix: imu_node     startswith: imu_node
Line 158: Line 161:
The above example can analyze all the instruments on a PR2. The `AnalyzerGroup` uses the parameter `path` to prepend to all output names. It also uses the `find_and_remove_prefix` parameter to cleanup the names. In the above example, The above example can analyze the instruments on a PR2. The `AnalyzerGroup` uses the parameter `path` to prepend to all output names. In the above example,
Line 161: Line 164:
  `Sensors/Tilt Hokuyo/Frequency Status`.

All sub-analyzers should go under the "analyzers" namespace. They should be specified in the same way that any diagnostic analyzer would be specified 
  `Sensors/Tilt Hokuyo/tilt_hokuyo_node: Frequency Status`.

All sub-analyzers should go under the `~analyzers` namespace of the `AnalyzerGroup`. They should be specified in the same way that any diagnostic analyzer would be specified.
Line 167: Line 170:
=== DiscardAnalyzer ===

The `DiscardAnalyzer` is a subclass of the `GenericAnalyzer`. It will "match" any item that the `GenericAnalyzer` matches, but will discard the items and not report it.

This is useful for removing a device from a robot, or when setting up a non-standard robot configuration.

=== IgnoreAnalyzer ===

The `IgnoreAnalyzer` will simply ignore all parameters in its namespace, and not match or report anything.

The difference between this and the `DiscardAnalyzer` above is that since the `IgnoreAnalyzer` doesn't match anything, anything that it is ignoring will be reported in "Other". The `DiscardAnalyzer` will suppress any output from anything that it matches.

== ROS API ==

{{{
#!clearsilver CS/NodeAPI
name = aggregator_node
desc = Collects diagnostics, loads diagnostic analyzer plugins
sub {
  0.name = /diagnostics
  0.type = diagnostic_msgs/DiagnosticArray
  0.desc = Raw diagnostics input
}
pub {
  0.name = /diagnostics_agg
  0.type = diagnostic_msgs/DiagnosticArray
  0.desc = Processed diagnostics output, at 1.0 Hz (default)

  1.name = /diagnostics_toplevel_state
  1.type = diagnostic_msgs/DiagnosticStatus
  1.desc = '''New in Fuerte:''' The toplevel status of /diagnostics_agg published with the same rate
}
param {
  0.name = ~pub_rate
  0.type = double
  0.desc = Rate diagnostics output published
  0.default = 1.0

  1.name = ~base_path
  1.type = string
  1.desc = Prepended to all diagnostics output (ex: "Robot")
  1.default = " " (empty string)

  2.name = ~analyzers
  2.type = {}
  2.desc = Load diagnostics analyzers according to these params. Each analyzer is initialized in separate namespace.
}
}}}

{{{
#!clearsilver CS/NodeAPI
name = analyzer_loader
desc = Loads diagnostic analyzers, verifies initialization OK. Used as regression test.
param {
  0.name = ~analyzers
  0.type = {}
  0.desc = Same format as aggregator_node
}
}}}

== Examples and Applications ==

PR2 robots use the `aggregator_node` and the `robot_monitor` for diagnostic display. The launch files in "pr2_bringup/pr2.launch" contain the configuration file for the `aggregator_node`.

The "diagnostic_aggregator/demo" directory has an example of an `aggregator_node` used for testing and demonstrations.

  Show EOL distros: 

diagnostics: diagnostic_aggregator | diagnostic_analysis | diagnostic_updater | self_test

Package Summary

diagnostic_aggregator contains the tools to aggregate and analyze robot diagnostics on an active robot. It uses the Aggregator class as to aggregate and process data. The aggregator tool loads diagnostic Analyzers as plug-ins. These analyzers can perform basic diagnostics analysis, such as testing when things are stale, or having known errors. Analyzers are subclasses of Analyzer. AnalyzerGroup and GenericAnalyzer are two of these subclasses.

The Aggregator should be run on a robot, and is typically launched in the robot's launch file. Viewing of this aggregated diagnostics is done with the Robot Monitor, in the robot_monitor package.

diagnostics: diagnostic_aggregator | diagnostic_analysis | diagnostic_updater | self_test

Package Summary

diagnostic_aggregator contains the tools to aggregate and analyze robot diagnostics on an active robot. It uses the Aggregator class as to aggregate and process data. The aggregator tool loads diagnostic Analyzers as plug-ins. These analyzers can perform basic diagnostics analysis, such as testing when things are stale, or having known errors. Analyzers are subclasses of Analyzer. AnalyzerGroup and GenericAnalyzer are two of these subclasses.

The Aggregator should be run on a robot, and is typically launched in the robot's launch file. Viewing of this aggregated diagnostics is done with the Robot Monitor, in the robot_monitor package.

diagnostics: diagnostic_aggregator | diagnostic_analysis | diagnostic_updater | self_test

Package Summary

diagnostic_aggregator contains the tools to aggregate and analyze robot diagnostics on an active robot. It uses the Aggregator class as to aggregate and process data. The aggregator tool loads diagnostic Analyzers as plug-ins. These analyzers can perform basic diagnostics analysis, such as testing when things are stale, or having known errors. Analyzers are subclasses of Analyzer. AnalyzerGroup and GenericAnalyzer are two of these subclasses.

The Aggregator should be run on a robot, and is typically launched in the robot's launch file. Viewing of this aggregated diagnostics is done with the Robot Monitor, in the robot_monitor package.

diagnostics: diagnostic_aggregator | diagnostic_analysis | diagnostic_common_diagnostics | diagnostic_updater | self_test

Package Summary

diagnostic_aggregator

  • Maintainer status: maintained
  • Maintainer: Isaac Saito <130s AT alumni.smu DOT edu>, Brice Rebsamen <brice.rebsamen AT gmail DOT com>
  • Author: Kevin Watts, Brice Rebsamen <brice.rebsamen AT gmail DOT com>
  • License: BSD
  • Source: git https://github.com/ros/diagnostics.git (branch: groovy-devel)
diagnostics: diagnostic_aggregator | diagnostic_analysis | diagnostic_common_diagnostics | diagnostic_updater | self_test

Package Summary

diagnostic_aggregator

  • Maintainer status: maintained
  • Maintainer: Austin Hendrix <namniart AT gmail DOT com>, Brice Rebsamen <brice.rebsamen AT gmail DOT com>
  • Author: Kevin Watts, Brice Rebsamen <brice.rebsamen AT gmail DOT com>
  • License: BSD
  • Source: git https://github.com/ros/diagnostics.git (branch: indigo-devel)
diagnostics: diagnostic_aggregator | diagnostic_analysis | diagnostic_common_diagnostics | diagnostic_updater | self_test

Package Summary

diagnostic_aggregator

  • Maintainer status: maintained
  • Maintainer: Guglielmo Gemignani <guglielmo.gemignani AT gmail DOT com>, Austin Hendrix <namniart AT gmail DOT com>
  • Author: Kevin Watts, Brice Rebsamen <brice.rebsamen AT gmail DOT com>
  • License: BSD
  • Source: git https://github.com/ros/diagnostics.git (branch: indigo-devel)
diagnostics: diagnostic_aggregator | diagnostic_analysis | diagnostic_common_diagnostics | diagnostic_updater | self_test

Package Summary

diagnostic_aggregator

  • Maintainer status: maintained
  • Maintainer: Austin Hendrix <namniart AT gmail DOT com>, Brice Rebsamen <brice.rebsamen AT gmail DOT com>
  • Author: Kevin Watts, Brice Rebsamen <brice.rebsamen AT gmail DOT com>
  • License: BSD
  • Source: git https://github.com/ros/diagnostics.git (branch: indigo-devel)

Overview

The diagnostic_aggregator contains a ROS node, aggregator_node, that listens to diagnostic_msgs/DiagnosticArray messages on the /diagnostics topic, processes and categorizes the data, and republishes on /diagnostics_agg. The aggregator_node loads "Analyzer" plugins to perform the diagnostics processing and categorization. The configuration and setup for each diagnostic aggregator is specific to each robot and can be determined by users or developers.

The two analyzers in this package, GenericAnalyzer and AnalyzerGroup, hold and categorize diagnostic messages. They're useful for categorizing components or systems. They can warn when an item is stale, but do not do additional analysis of the diagnostics. Other analyzers can be loaded as plugins by the aggregator_node on startup.

The aggregated diagnostic output can be displayed in the robot_monitor tool. The robot_monitor displays these messages in a hierarchical format. To determine the hierarchy, the diagnostic aggregator prepends diagnostic status names with a path, joined with "/". For example:

  • prosilica: Frequency Status

    • My Robot/Sensors/Prosilica/prosilica: Frequency Status

Example

This shows how an aggregator_node might categorize and analyze diagnostics data from a simple robot.

If a robot had diagnostics from the motor drivers, SICK laser scanner, Videre camera and a few batteries, the diagnostic input might have status names:

Left Wheel
Right Wheel
SICK Frequency
SICK Temperature
SICK Connection Status
Stereo Left Camera
Stereo Right Camera
Stereo Analysis
Stereo Connection Status
Battery 1 Level
Battery 2 Level
Battery 3 Level
Battery 4 Level
Voltage Status

Using the diagnostic aggregator, we can move these diagnostic messages into easy to understand categories to display in our robot_monitor. To do this, just prepend the name of the category to the status names, and separate them with "/".

My Robot/Wheels/Left
My Robot/Wheels/Right
My Robot/SICK/Frequency
My Robot/SICK/Temperature
My Robot/SICK/Connection Status
My Robot/Stereo/Left Camera
My Robot/Stereo/Right Camera
My Robot/Stereo/Analysis
My Robot/Stereo/Connection Status
My Robot/Power System/Battery 1 Level
My Robot/Power System/Battery 2 Level
My Robot/Power System/Battery 3 Level
My Robot/Power System/Battery 4 Level
My Robot/Power System/Voltage Status

Using the above input, the Robot Monitor will categorize the data as follows:

My Robot
  -- Wheels
    -- Left
    -- Right
  -- SICK
    -- etc ...
  -- Stereo
  -- Power System

Analyzers

The aggregator_node will load analyzers to store and process the diagnostic data. Each analyzer inherits from the base class diagnostic_aggregator::Analyzer. Analyzers must be in packages that depend directly on pluginlib and diagnostic_aggregator.

The base analyzer class is the pure virtual diagnostic_aggregator::Analyzer class. All derived classes must implement these methods:

  • init() - Loads parameters

  • match() - Returns true/false if interested in viewing a status message

  • analyze() - Analyze a new message

  • report() - Report results or state

  • getPath() - Get complete path (anything prepended onto status names)

  • getName() - Get nice name, like "Motors" or "Sensors"

Analyzers can choose the error state for any diagnostic_msgs/DiagnosticStatus message they analyze and report. Generally, the "parent" of an analyzer has an error state of the maximum of its children, but some analyzers may have more advanced methods.

The analyzers are responsible for correctly setting the names of each item they analyze. The aggregator_node does not do any checking or enforcement of the diagnostic status name hierarchy.

Creating an Analyzer

Users can create Analyzers to load as plugins for different robots. See the tutorial Creating a Diagnostic Analyzer for details.

Configuring an Aggregator

For a full tutorial, see the tutorial Configuring a Robot's Diagnostic Aggregator.

To set up the diagnostic analyzer on a robot, the aggregator is given parameters that will configure the analyzers. These parameters, below, are in the private namespace of the aggregator node.

pub_rate: 1.0 # Optional, defaults to 1.0
base_path: 'PRE' # Optional, defaults to ""
analyzers:
  motors:
    type: PR2MotorsAnalyzer
  joints:
    type: GenericAnalyzer
    path: 'Joints'
    regex: 'Joint*'

Under each sub namespace under ~analyzers, a different analyzer is configured. Analyzers can be robot specific, or they can be general purpose ones like the GenericAnalyzer.

Each analyzer needs a special parameter, type, in the namespace. The type parameter gives the aggregator_node the class name of the Analyzer.

Any diagnostic item that isn't analyzed is analyzed by an "Other" analyzer, and will still appear in the Robot Monitor. "Other" items, or remainders, are removed from the diagnostics output after going stale for 5 seconds.

The pub_rate parameter (publish rate of /diagnostics_agg) is optional, and defaults to 1.0. The base_path is prepended to all /diagnostics_agg output, and defaults to "" (empty string).

Launching a Diagnostic Aggregator

To look for an example of an aggregator in use, look in the "diagnostic_aggregator/demo" directory. Users specify each Analyzer in the private parameter space of the aggregator_node, then start the node.

Toggle line numbers
   1 <node pkg="diagnostic_aggregator" type="aggregator_node"
   2       name="diag_agg" >
   3   <rosparam command="load" 
   4             file="$(find diagnostic_aggregator)/demo/pr2_analyzers.yaml" />
   5 </node>

Basic Analyzer Types

In the diagnostic_aggregator package, the two analyzer types provided: GenericAnalyzer and AnalyzerGroup. The GenericAnalyzer can be used to categorize and track stale items. The AnalyzerGroup categorizes analyzers themselves, allowing users to "sub-categorize" analyzers.

GenericAnalyzer

The GenericAnalyzer class is useful for categorizing diagnostics data. It's mostly used for a particular device or category, like a Hokuyo node or EtherCAT devices. It can be configured to analyze almost any set of diagnostics data.

For a full tutorial on the GenericAnalyzer, see Using the GenericAnalyzer

AnalyzerGroup

The AnalyzerGroup can load a group of analyzers as a sub group. This can be useful for analyzing a group of similar items, like 4 different cameras. The AnalyzerGroup can use any type of analyzer as one of the sub-analyzers.

type: AnalyzerGroup
path: Sensors
analyzers:
  base_hk:
    type: GenericAnalyzer
    path: Base Hokuyo
    startswith: base_hokuyo_node
    num_items: 3
  tilt_hk:
    type: GenericAnalyzer
    path: Tilt Hokuyo
    startswith: tilt_hokuyo_node
    num_items: 3
  imu:
    type: GenericAnalyzer
    path: IMU
    startswith: imu_node
    num_items: 3

The above example can analyze the instruments on a PR2. The AnalyzerGroup uses the parameter path to prepend to all output names. In the above example,

  • tilt_hokuyo_node: Frequency Status

    • Sensors/Tilt Hokuyo/tilt_hokuyo_node: Frequency Status.

All sub-analyzers should go under the ~analyzers namespace of the AnalyzerGroup. They should be specified in the same way that any diagnostic analyzer would be specified.

Note: The diagnostic aggregator uses the AnalyzerGroup internally, which is why this is very similar to setting up a diagnostic aggregator.

DiscardAnalyzer

The DiscardAnalyzer is a subclass of the GenericAnalyzer. It will "match" any item that the GenericAnalyzer matches, but will discard the items and not report it.

This is useful for removing a device from a robot, or when setting up a non-standard robot configuration.

IgnoreAnalyzer

The IgnoreAnalyzer will simply ignore all parameters in its namespace, and not match or report anything.

The difference between this and the DiscardAnalyzer above is that since the IgnoreAnalyzer doesn't match anything, anything that it is ignoring will be reported in "Other". The DiscardAnalyzer will suppress any output from anything that it matches.

ROS API

aggregator_node

Collects diagnostics, loads diagnostic analyzer plugins

Subscribed Topics

/diagnostics (diagnostic_msgs/DiagnosticArray)
  • Raw diagnostics input

Published Topics

/diagnostics_agg (diagnostic_msgs/DiagnosticArray)
  • Processed diagnostics output, at 1.0 Hz (default)
/diagnostics_toplevel_state (diagnostic_msgs/DiagnosticStatus)
  • New in Fuerte: The toplevel status of /diagnostics_agg published with the same rate

Parameters

~pub_rate (double, default: 1.0)
  • Rate diagnostics output published
~base_path (string, default: " " (empty string))
  • Prepended to all diagnostics output (ex: "Robot")
~analyzers ({})
  • Load diagnostics analyzers according to these params. Each analyzer is initialized in separate namespace.

analyzer_loader

Loads diagnostic analyzers, verifies initialization OK. Used as regression test.

Parameters

~analyzers ({})
  • Same format as aggregator_node

Examples and Applications

PR2 robots use the aggregator_node and the robot_monitor for diagnostic display. The launch files in "pr2_bringup/pr2.launch" contain the configuration file for the aggregator_node.

The "diagnostic_aggregator/demo" directory has an example of an aggregator_node used for testing and demonstrations.

Wiki: diagnostic_aggregator (last edited 2018-03-08 18:02:49 by NickLamprianidis)