Networked Media Open Specifications

AMWA BCP-008-01: Receiver status monitoring

Index↑

NMOS logo

Introduction

Alarms are context and workflow specific, and in general determined by a higher level monitoring system, with different calculations for different users. For example, a hardware error status (such as link down) from a device not actively being used would not cause an alarm to a live workflow operator, but the same status condition would escalate an alarm to a maintenance engineer who needs to prepare that device for future operational use.

This BCP document does not attempt to define alarms but instead it describes the expectations, behavior and conformance requirements for Devices with stream Receivers in terms of status monitoring.

The overall status concepts defined in this document are intended to make it easy to calculate a typical operator alarm condition. In simple systems with no higher level monitoring system, the overallStatus can be used directly as a simple pre-defined non-configurable operator alarm condition, without in any way limiting a monitoring system’s ability to take the same status values and calculate one or more different alarm conditions appropriate to other desired workflows or users.

This document relies on previous familiarity with the following existing documents:

The technical models referenced in this document are fully published in the Monitoring NMOS Control Feature Set.

The following domains are covered in terms of status monitoring with specific sections for each:

Use of Normative Language

The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in RFC-2119.

Definitions

The NMOS terms ‘Controller’, ‘Node’, ‘Source’, ‘Flow’, ‘Sender’, ‘Receiver’ are used as defined in the NMOS Glossary.

Receiver activation - An IS-05 activation which results in the Receiver having the required transport parameters and a master_enable status of true. This can happen for an idle receiver but also when the receiver is already activated and a client is applying new transport parameters.

Prerequisites

Devices in conformance to this BCP MUST use NMOS Control Framework for generating device models.
Devices in conformance to this BCP MUST use NMOS Control Protocol to expose device models via a standard API with full support for notifications.
Devices in conformance to this BCP MUST use NMOS Discovery and Registration to create and register Nodes, Devices and Receiver resources.
Devices in conformance to this BCP MUST use NMOS Device Connection Management to perform connection management actions against Receiver resources.

Receiver overall status

The technical model describing the monitoring requirements for a receiver is NcReceiverMonitor.

This model MUST inherit from the baseline status monitoring model NcStatusMonitor

The purpose of the overallStatus is to abstract and combine the specific domain statuses of a monitor into a single status which can be more easily observed and displayed by a simple client.

Note: The overallStatus might remain the same even when specific domain statuses change but the overallStatusMessage might change because a different combination of internal states is causing the current overallStatus value.

Devices MUST follow the rules listed below when mapping specific domain statuses in the combined overallStatus:

The statusReportingDelay property allows clients to customize the reporting delay used by devices to report statuses. Devices MUST use 3s as the default value. All status reporting properties MUST delay the transition to a more healthy state by the configured statusReportingDelay value and MUST only make the transition if the healthier state is maintained for the duration (this does not apply when starting from neutral values like Inactive or NotUsed where devices MUST make an immediate transition). All status reporting properties MUST make a transition to a less healthy state as soon as possible.

The proposed models are minimal and they can be implemented as is or derived in vendor specific variants which can add more statuses, properties and methods.

Receiver monitoring model
Receiver monitoring model

Receiver connectivity

The technical model describing the monitoring requirements for a receiver is NcReceiverMonitor.
This includes the following specific items which cover the connectivity domain:

Receiver connectivity
Receiver connectivity

The linkStatus property allows devices to expose the health of all the physical links associated with the receiver.

Devices specify if:

The linkStatusMessage is a nullable property where devices can offer the reason and further details as to why the current status value was chosen.

Devices are RECOMMENDED to publish information about which interfaces are down in the linkStatusMessage.

Example:

NIC1, NIC2 are down

Connection status

The connectionStatus property allows devices to expose the health of the receiver with regards to receiving stream packets successfully. Other connection problems like 802.1x authorization, DHCP and other causes are also reflected in the connectionStatus.

Devices specify:

The connectionStatusMessage is a nullable property where devices can offer the reason and further details as to why the current status value was chosen.

Late and lost packets

The receiver monitoring model provides means of gathering metrics around late and lost stream packets. These are not statuses but instead enable further analysis when link status or connection status indicate problems (are PartiallyHealthy or Unhealthy).

The feature is expressed with the following methods:

The autoResetPacketCounters property allows clients to configure if the packet counters automatically reset with each Receiver activation (by default devices MUST have this enabled). If this is enabled, receivers MUST reset all packet counters to 0 after each activation.

Receiver synchronization

The technical model describing the monitoring requirements for a receiver is NcReceiverMonitor.
This includes the following specific items which cover the synchronization domain:

Receiver synchronization
Receiver synchronization

External synchronization status

The externalSynchronizationStatus property allows devices to expose the health of the receiver with regards to its time synchronization mechanisms.

Devices specify:

The externalSynchronizationStatusMessage is a nullable property where devices can offer the reason and further details as to why the current status value was chosen.

Devices are recommended to publish information about the previous synchronization source and interface retrieved from as well as the current synchronization source and interface retrieved from in the externalSynchronizationStatusMessage.

Example:

previousSync:baseband from SDI1, currentSync: 0x00:0c:ec:ff:fe:0a:2b:a1 from NIC1

or

previousSync:0x70:35:09:ff:fe:c7:da:00 from NIC1, currentSync: 0x00:0c:ec:ff:fe:0a:2b:a1 from NIC2

Synchronization source change

When devices are configured to use external synchronization they MUST publish the synchronization source id currently being used and update the property whenever it changes, using null if a synchronization source cannot be discovered. Devices which are not using external synchronization MUST populate this property with internal.

When devices suffer a synchronization source change the externalSynchronizationStatus property MUST transition to a PartiallyUnhealthy state and stay there unless the following conditions apply:

Receiver stream validation

The technical model describing the monitoring requirements for a receiver is NcReceiverMonitor.
This includes the following specific items which cover the stream validation domain:

Receiver stream validation
Receiver stream validation

Stream status

The streamStatus property allows devices to expose the health of the receiver with regards to the validity of the stream being received.

Devices specify:

The streamStatusMessage is a nullable property where devices can offer the reason and further details as to why the current status value was chosen.

Examples:

Unexpected stream format
Payload ID in RTP stream does not match SDP file
Parameter X does not match expectations

Deactivating a receiver

A Receiver is deactivated after an IS-05 activation results in the Receiver master_enable becoming false.

When a receiver is being deactivated it MUST cleanly disconnect from the current stream by not generating intermediate unhealthy states (PartiallyHealthy or Unhealthy) and instead transition directly to Inactive for the following statuses:

Index↑