Greetings, [%user%]
You are receiving a notification because you are a member of workgroup:
[%workgroup%]
[% SWITCH type %]
[% CASE 'link_down' %]
An outage on backbone link: [% link_name %] on [% human_time %].
has caused the [% circuits.size + circuits_on_owned_endpoints.size %] circuits listed below to be affected.
[% CASE 'link_up' %]
Backbone link: [% link_name %]
has returned to service on [% human_time %], and the below circuits were returned to service:
[% END %]
Circuits in [%workgroup%]: |
|
CIRCUIT
|
ACTION TAKEN
|
STATUS
|
[% FOREACH circuit IN circuits %]
[% IF ( loop.count mod 2 == 0 ) %]
[% ELSE %]
[% END %]
[% circuit.description %]
|
[% circuit.reason %]
|
[% SWITCH circuit.status %]
[% CASE 'backup' %]
[% status_color = 'orange' %]
[% CASE 'down' %]
[% status_color = 'red' %]
[% CASE ['primary','up'] %]
[% status_color = 'green' %]
[% CASE %]
[% status_color = '#000' %]
[% END %]
[% circuit.status %]
|
[% END %]
[% IF circuits_on_owned_endpoints.size %]
Foreign Circuits on Your Endpoints: |
|
CIRCUIT
|
ACTION TAKEN
|
STATUS
|
[% FOREACH circuit IN circuits_on_owned_endpoints %]
[% IF ( loop.count mod 2 == 0 ) %]
[% ELSE %]
[% END %]
[% circuit.description %]
|
[% circuit.reason %]
|
[% SWITCH circuit.status %]
[% CASE 'backup' %]
[% status_color = 'orange' %]
[% CASE 'down' %]
[% status_color = 'red' %]
[% CASE ['primary','up'] %]
[% status_color = 'green' %]
[% CASE %]
[% status_color = '#000' %]
[% END %]
[% circuit.status %]
|
[% END %]
[% END %]
|