Edge Delta Agent Node Health Input

Configure collection of Edge Delta Agent Node Health data.

Overview

The ed_node_health_input enables ingestion of health data of the nodes in the graph. It is a default node with no configurable parameters. It’s processed by the Diagnostic Manager every minute. It feeds the ed_health_output node to populate the per node throughput data on the pipeline view.

It can also be consumed by other outputs. You should not remove these nodes as it will disable this feature.

Example Configuration

This configuration illustrates the ed_component_health_input node and the link to the ed_health_output node.

nodes:
- name: ed_node_health
  type: ed_node_health_input
- name: ed_health
  type: ed_health_output

links:
- from: ed_node_health
  to: ed_health

Required Parameters

name

A descriptive name for the node. This is the name that will appear in Visual Pipelines and you can reference this node in the yaml using the name. It must be unique across all nodes. It is a yaml list element so it begins with a - and a space followed by the string. It is a required parameter for all nodes.

nodes:
  - name: <node name>
    type: <node type>

type: ed_node_health_input

The type parameter specifies the type of node being configured. It is specified as a string from a closed list of node types. It is a required parameter.

nodes:
  - name: <node name>
    type: <node type>