consecutiveFailures property

  1. @TagNumber(5)
int get consecutiveFailures

number of times this module has entered the unhealthy state since the last time this module was in the ready state this will increment if the module is in a restart loop (state transitioning between pending and starting repeatedly) Resets to zero when the module enters the ready state or is reconfigured. Useful for detecting modules stuck in a restart loop (like a python module with a syntax error)

Implementation

@$pb.TagNumber(5)
$core.int get consecutiveFailures => $_getIZ(4);
  1. @TagNumber(5)
set consecutiveFailures (int v)

Implementation

@$pb.TagNumber(5)
set consecutiveFailures($core.int v) { $_setUnsignedInt32(4, v); }