source: Alerting/Templates.md path: blob/master/doc/ # Templates > This page is for installs running version 1.42 or later. You can find the older docs [here](Old_Templates.md) Templates can be assigned to a single or a group of rules and can contain any kind of text. There is also a default template which is used for any rule that isn't associated with a template. This template can be found under `Alert Templates` page and can be edited. It also has an option revert it back to its default content. To attach a template to a rule just open the `Alert Templates` settings page, choose the template to assign and click the yellow button in the `Actions` column. In the appearing popupbox select the rule(s) you want the template to be assigned to and click the `Attach` button. You might hold down the CTRL key to select multiple rules at once. The templating engine in use is Laravel Blade. We will cover some of the basics here, however the official Laravel docs will have more information [here](https://laravel.com/docs/5.4/blade) ## Syntax Controls: - if-else (Else can be omitted): `@if ($alert->placeholder == 'value') Some Text @else Other Text @endif` - foreach-loop: `@foreach ($alert->faults as $key => $value) Key: $key
Value: $value @endforeach` Placeholders: Placeholders are special variables that if used within the template will be replaced with the relevant data, I.e: `The device {{ $alert->hostname }} has been up for {{ $alert->uptime }} seconds` would result in the following `The device localhost has been up for 30344 seconds`. > When using placeholders to echo data, you need to wrap the placeholder in `{{ }}`. I.e `{{ $alert->hostname }}`. - Device ID: `$alert->device_id` - Hostname of the Device: `$alert->hostname` - sysName of the Device: `$alert->sysName` - sysDescr of the Device: `$alert->sysDescr` - sysContact of the Device: `$alert->sysContact` - OS of the Device: `$alert->os` - Type of Device: `$alert->type` - IP of the Device: `$alert->ip` - hardware of the Device: `$alert->hardware` - Software version of the Device: `$alert->version` - location of the Device: `$alert->location` - uptime of the Device (in seconds): `$alert->uptime` - short uptime of the Device (28d 22h 30m 7s): `$alert->uptime_short` - long uptime of the Device (28 days, 22h 30m 7s): `$alert->uptime_long` - description (purpose db field) of the Device: `$alert->description` - notes of the Device: `$alert->notes` - notes of the alert (ack notes): `$alert->alert_notes` - ping timestamp (if icmp enabled): `$alert->ping_timestamp` - ping loss (if icmp enabled): `$alert->ping_loss` - ping min (if icmp enabled): `$alert->ping_min` - ping max (if icmp enabled): `$alert->ping_max` - ping avg (if icmp enabled): `$alert->ping_avg` - debug (array) If `$config['debug']['run_trace] = true;` is set then this will contain: - traceroute (if enabled you will receive traceroute output): `$alert->debug['traceroute']` - output (if the traceroute fails this will contain why): `$alert->debug['output']` - Title for the Alert: `$alert->title` - Time Elapsed, Only available on recovery (`$alert->state == 0`): `$alert->elapsed` - Rule Builder (the actual rule) (use `{!! $alert->builder !!}`): `$alert->builder` - Alert-ID: `$alert->id` - Unique-ID: `$alert->uid` - Faults, Only available on alert (`$alert->state != 0`), must be iterated in a foreach (`@foreach ($alert->faults as $key => $value) @endforeach`). Holds all available information about the Fault, accessible in the format `$value['Column']`, for example: `$value['ifDescr']`. Special field `$value['string']` has most Identification-information (IDs, Names, Descrs) as single string, this is the equivalent of the default used and must be encased in `{{ }}` - State: `$alert->state` - Severity: `$alert->severity` - Rule: `$alert->rule` - Rule-Name: `$alert->name` - Timestamp: `$alert->timestamp` - Transport type: `$alert->transport` - Transport name: `$alert->transport_name` - Contacts, must be iterated in a foreach, `$key` holds email and `$value` holds name: `$alert->contacts` Placeholders can be used within the subjects for templates as well although $faults is most likely going to be worthless. The Default Template is a 'one-size-fit-all'. We highly recommend defining your own templates for your rules to include more specific information. ## Base Templates If you'd like to reuse a common template for your alerts follow below A default file is located in ` resources/views/alerts/templates/default.blade.php` Displays the following: ``` LibreNMS Alert
@yield('content')
``` The important part being the `@yield('content')` You can use plain text or html as per Alert templates and this will form the basis of your common template, feel free to make as many templates in the directory as needed. In your alert template just use ``` @extends('alerts.templates.default'); @section('content') {{ $alert->title }} Severity: {{ $alert->severity }} ... @endsection ``` More info: https://laravel.com/docs/5.4/blade#extending-a-layout ## Examples #### Default Template: ```text {{ $alert->title }} Severity: {{ $alert->severity }} @if ($alert->state == 0) Time elapsed: {{ $alert->elapsed }} @endif Timestamp: {{ $alert->timestamp }} Unique-ID: {{ $alert->uid }} Rule: @if ($alert->name) {{ $alert->name }} @else {{ $alert->rule }} @endif @if ($alert->faults) Faults: @foreach ($alert->faults as $key => $value) {{ $key }}: {{ $value['string'] }} @endforeach @endif Alert sent to: @foreach ($alert->contacts as $key => $value) {{ $value }} <{{ $key }}> @endforeach ``` #### Ports Utilization Template: ```text {{ $alert->title }} Device Name: {{ $alert->hostname }} Severity: {{ $alert->severity }} @if ($alert->state == 0) Time elapsed: {{ $alert->elapsed }} @endif Timestamp: {{ $alert->timestamp }} Rule: @if ($alert->name) {{ $alert->name }} @else {{ $alert->rule }} @endif @foreach ($alert->faults as $key => $value) Physical Interface: {{ $value['ifDescr'] }} Interface Description: {{ $value['ifAlias'] }} Interface Speed: {{ ($value['ifSpeed']/1000000000) }} Gbs Inbound Utilization: {{ (($value['ifInOctets_rate']*8)/$value['ifSpeed'])*100 }} Outbound Utilization: {{ (($value['ifOutOctets_rate']*8)/$value['ifSpeed'])*100 }} @endforeach ``` #### Storage: ```text {{ $alert->title }} Device Name: {{ $alert->hostname }} Severity: {{ $alert->severity }} Uptime: {{ $alert->uptime_short }} @if ($alert->state == 0) Time elapsed: {{ $alert->elapsed }} @endif Timestamp: {{ $alert->timestamp }} Location: {{ $alert->location }} Description: {{ $alert->description }} Features: {{ $alert->features }} Purpose: {{ $alert->purpose }} Notes: {{ $alert->notes }} Server: {{ $alert->sysName }} @foreach ($alert->faults as $key => $value) Mount Point: {{ $value['storage_descr'] }} Percent Utilized: {{ $value['storage_perc'] }} @endforeach ``` #### Temperature Sensors: ```text {{ $alert->title }} Device Name: {{ $alert->hostname }} Severity: {{ $alert->severity }} Timestamp: {{ $alert->timestamp }} Uptime: {{ $alert->uptime_short }} @if ($alert->state == 0) Time elapsed: {{ $alert->elapsed }} @endif Location: {{ $alert->location }} Description: {{ $alert->description }} Features: {{ $alert->features }} Purpose: {{ $alert->purpose }} Notes: {{ $alert->notes }} Rule: @if ($alert->name) {{ $alert->name }} @else {{ $alert->rule }} @endif @if ($alert->faults) Faults: @foreach ($faults as $key => $value) #{{ $key }}: Temperature: {{ $value['sensor_current'] }} °C ** @php echo ($value['sensor_current']-$value['sensor_limit']); @endphp°C over limit Previous Measurement: {{ $value['sensor_prev'] }} °C High Temperature Limit: {{ $value['sensor_limit'] }} °C @endforeach @endif ``` #### Value Sensors: ```text {{ $alert->title }} Device Name: {{ $alert->hostname }} Severity: {{ $alert->severity }} Timestamp: {{ $alert->timestamp }} Uptime: {{ $alert->uptime_short }} @if ($alert->state == 0) Time elapsed: {{ $alert->elapsed }} @endif Location: {{ $alert->location }} Description: {{ $alert->description }} Features: {{ $alert->features }} Purpose: {{ $alert->purpose }} Notes: {{ $alert->notes }} Rule: @if ($alert->name) {{ $alert->name }} @else {{ $alert->rule }} @endif @if ($alert->faults) Faults: @foreach ($alert->faults as $key => $value) #{{ $key }}: Sensor {{ $value['sensor_current'] }} ** @php echo ($value['sensor_current']-$value['sensor_limit']); @endphp over limit Previous Measurement: {{ $value['sensor_prev'] }} Limit: {{ $value['sensor_limit'] }} @endforeach @endif ``` #### Memory Alert: ```text {{ $alert->title }} Device Name: {{ $alert->hostname }} Severity: {{ $alert->severity }} Uptime: {{ $alert->uptime_short }} @if ($alert->state == 0) Time elapsed: {{ $alert->elapsed }} @endif Timestamp: {{ $alert->timestamp }} Location: {{ $alert->location }} Description: {{ $alert->description }} Notes: {{ $alert->notes }} Server: {{ $alert->hostname }} @foreach ($alert->faults as $key => $value) Memory Description: {{ $value['mempool_descr'] }} Percent Utilized: {{ $value['mempool_perc'] }} @endforeach ``` ### Advanced options #### Conditional formatting Conditional formatting example, will display a link to the host in email or just the hostname in any other transport: ```text @if ($alert->transport == mail){{ $alert->hostname }} @else {{ $alert->hostname }} @endif ``` #### Traceroute debugs ```text @if ($alert->status == 0) @if ($alert->status == icmp) {{ $alert->debug['traceroute'] }} @endif @endif ``` ## Examples HTML Note: To use HTML emails you must set HTML email to Yes in the WebUI under Global Settings > Alerting Settings > Email transport > Use HTML emails Note: To include Graphs you must enable unauthorized graphs in config.php. Allow_unauth_graphs_cidr is optional, but more secure. ``` $config['allow_unauth_graphs_cidr'] = array('127.0.0.1/32'); $config['allow_unauth_graphs'] = true; ``` Service Alert: ```

@if ($alert->state == 1) {{ $alert->severity }} @endif @if ($alert->state == 2) acknowledged @endif @if ($alert->state == 3) recovering @endif @if ($alert->state == 0) recovered @endif

Host: {{ $alert->hostname }}
Duration: {{ $alert->elapsed }}

@if ($alert->faults) @foreach ($alert->faults as $key => $value) {{ $value['service_desc'] }} - {{ $value['service_type'] }}
{{ $value['service_message'] }}

@endforeach @endif
``` #### Processor Alert with Graph: ``` {{ $alert->title }}
Severity: {{ $alert->severity }}
@if ($alert->state == 0) Time elapsed: {{ $alert->elapsed }} @endif Timestamp: {{ $alert->timestamp }}
Alert-ID: {{ $alert->id }}
Rule: @if ($alert->name) {{ $alert->name }} @else {{ $alert->rule }} @endif
@if ($alert->faults) Faults: @foreach ($alert->faults as $key => $value) {{ $key }}: {{ $value['string'] }}
@endforeach @if ($alert->faults) Faults:
@foreach ($alert->faults as $key => $value)