Email Templates: Difference between revisions
| Line 24: | Line 24: | ||
| detailItems || Text (multiple) || Always || The list of all detail messages provided with the event. For example, when a job's configuration is updated, a separate item for each change will be represented here. In some cases, this may be empty. | | detailItems || Text (multiple) || Always || The list of all detail messages provided with the event. For example, when a job's configuration is updated, a separate item for each change will be represented here. In some cases, this may be empty. | ||
|- | |- | ||
| detail || Text || Always || This the combined form of <code>detailItems | | detail || Text || Always || This the combined form of <code>detailItems</code>. In some cases, this may be empty. | ||
|- | |- | ||
| hostName || Text || Always || The host name / designator that originated the event. | | hostName || Text || Always || The host name / designator that originated the event. | ||
| Line 52: | Line 52: | ||
| jobState || Complex Object || Job Events only || For any job-related category, this object provides the current job schedule configuration, or for Job Run events, the schedule applicable to that job history record. Attributes that can be accessed on the jobState are: <code>effectiveDate</code>, <code>endDate</code>, <code>jobStatus</code> and <code>schedule</code>. | | jobState || Complex Object || Job Events only || For any job-related category, this object provides the current job schedule configuration, or for Job Run events, the schedule applicable to that job history record. Attributes that can be accessed on the jobState are: <code>effectiveDate</code>, <code>endDate</code>, <code>jobStatus</code> and <code>schedule</code>. | ||
|- | |- | ||
| currentSchedule || | | currentSchedule || Text || Job Events only || This is a simplified way to access <code>jobState.schedule</code>. | ||
|- | |- | ||
| jobHistory || Complex Object || Job Run Events only || For any Job run events (i.e.. completion or failure), this object contains information on the job execution (aka history). Attributes that can be accessed on the job are: <code>adHoc</code> (boolean), <code>resubmission</code> (boolean), <code>runningHost</code>, <code>scheduledTime</code> and <code>submissionMode</code>. The field <code>chainedFrom</code> provides access to the source chain job history when applicable, which has the same format as this <code>jobHistory</code> object. From this object or <code>chainedFrom</code>, the <code>job</code> field provides access to the job configuration in the same format as the <code>job</code> element described above. | | jobHistory || Complex Object || Job Run Events only || For any Job run events (i.e.. completion or failure), this object contains information on the job execution (aka history). Attributes that can be accessed on the job are: <code>adHoc</code> (boolean), <code>resubmission</code> (boolean), <code>runningHost</code>, <code>scheduledTime</code> and <code>submissionMode</code>. The field <code>chainedFrom</code> provides access to the source chain job history when applicable, which has the same format as this <code>jobHistory</code> object. From this object or <code>chainedFrom</code>, the <code>job</code> field provides access to the job configuration in the same format as the <code>job</code> element described above. | ||
|- | |- | ||
| jobResults || List of Objects || Job Run Events only || This field contains saved job results in as a list of elements accessible by the fields <code>key</code> for the name and <code>value</code> for a list of the applicable values for that name. Example: iterator over all results and output the values separated by commas: {{#jobResults}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobResults}} | | jobResults || List of Objects || Job Run Events only || This field contains saved job results in as a list of elements accessible by the fields <code>key</code> for the name and <code>value</code> for a list of the applicable values for that name. Example: iterator over all results and output the values separated by commas: <pre>{{#jobResults}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobResults}}</pre> | ||
|- | |- | ||
| jobResultMap || Map Object || Job Run Events only || This is an alternate format of <code>jobResults</code> stored in a map. This allows you to easily access a specific result by name. Example: {{#jobResultMap.outputFiles}}{{.}}{{/jobResultMap.outputFiles}} | | jobResultMap || Map Object || Job Run Events only || This is an alternate format of <code>jobResults</code> stored in a map. This allows you to easily access a specific result by name. Example: <pre>{{#jobResultMap.outputFiles}}{{.}}{{/jobResultMap.outputFiles}}</pre> | ||
|- | |- | ||
| jobParameters || Complex Object || Job Events only || This field contains saved job parameters in as a list of elements accessible by the fields <code>key</code> for the name and <code>value</code> for a list of the applicable values for that name. Example: iterator over all results and output the values separated by commas: {{#jobParameters}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobParameters}} | | jobParameters || Complex Object || Job Events only || This field contains saved job parameters in as a list of elements accessible by the fields <code>key</code> for the name and <code>value</code> for a list of the applicable values for that name. Example: iterator over all results and output the values separated by commas: <pre>{{#jobParameters}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobParameters}}</pre> | ||
|- | |- | ||
| jobParameterMap || List of Objects|| Job Events only || This is an alternate format of <code>jobParameters</code> stored in a map. This allows you to easily access a specific parameter by name. Example: {{#jobParameterMap.archiveDirectory}}{{.}}{{/jobParameterMap.archiveDirectory}} | | jobParameterMap || List of Objects|| Job Events only || This is an alternate format of <code>jobParameters</code> stored in a map. This allows you to easily access a specific parameter by name. Example: <pre>{{#jobParameterMap.archiveDirectory}}{{.}}{{/jobParameterMap.archiveDirectory}}</pre> | ||
|} | |} | ||
Revision as of 02:07, 3 June 2013
As of version 2.0, Obsidian supports customizable templates for all email notifications.
Template Basics
Obsidian comes with two basic email templates that are suitable for most users. For those that wish to have more control, templates can be configured in the Email Templates screen.
Both subject and body fields can be templated. Note that body templates are used for HTML only.
Templating Language
Obsidian email templates use Mustache, which is a logic-less templating language commonly used in various applications. Specifically, Obsidian uses jMustache, and it can be referred to when looking for feature support and general syntax in your templates.
Templating Variables
The following table documents all data elements that are available in email templates. Note that some data elements are only available in certain contexts, so your templates should be written accordingly. The Available Scope column indicates what types of events the variable is used in. For example, some variables are only present for job-related event categories, and some are only present for Job Run events.
If you wish to see a sample template, simply navigate to the Email Templates screen in the admin UI, and take a look at the default templates that are pre-installed.
| Variable Name | Type | Available Scope | Notes |
|---|---|---|---|
| subject | Text | Always | This the basic event summary message. |
| detailItems | Text (multiple) | Always | The list of all detail messages provided with the event. For example, when a job's configuration is updated, a separate item for each change will be represented here. In some cases, this may be empty. |
| detail | Text | Always | This the combined form of detailItems. In some cases, this may be empty.
|
| hostName | Text | Always | The host name / designator that originated the event. |
| hostUrl | Text | Always | The host URL as configured in the Systems tab. This can be used to link to the Obsidian installation in emails. |
| hasDetail | Boolean | Always | Indicates if any detailItems' exist. Can be used for conditionals.
|
| level | Text | Always | Indicates the level of the event. One of: INFO, WARNING, ERROR, FATAL.
|
| recipients | Text (multiple) | Always | The email addresses of all recipients of this message. |
| fatal | Boolean | Always | Indicates if the level was FATAL.
|
| error | Boolean | Always | Indicates if the level was ERROR.
|
| errorOrHigher | Boolean | Always | Indicates if the level was FATAL or ERROR.
|
| warn | Boolean | Always | Indicates if the level was WARNING.
|
| warnOrHigher | Boolean | Always | Indicates if the level was FATAL, ERROR or WARNING.
|
| info | Boolean | Always | Indicates if the level was INFO.
|
| job | Complex Object | Job Events only | For any job-related category, this object provides the basic job configuration. Attributes that can be accessed on the job are: id, jobClass, minExecutionDuration, maxExecutionDuration, nickname, pickupBufferMinutes and recoveryType.
|
| jobState | Complex Object | Job Events only | For any job-related category, this object provides the current job schedule configuration, or for Job Run events, the schedule applicable to that job history record. Attributes that can be accessed on the jobState are: effectiveDate, endDate, jobStatus and schedule.
|
| currentSchedule | Text | Job Events only | This is a simplified way to access jobState.schedule.
|
| jobHistory | Complex Object | Job Run Events only | For any Job run events (i.e.. completion or failure), this object contains information on the job execution (aka history). Attributes that can be accessed on the job are: adHoc (boolean), resubmission (boolean), runningHost, scheduledTime and submissionMode. The field chainedFrom provides access to the source chain job history when applicable, which has the same format as this jobHistory object. From this object or chainedFrom, the job field provides access to the job configuration in the same format as the job element described above.
|
| jobResults | List of Objects | Job Run Events only | This field contains saved job results in as a list of elements accessible by the fields key for the name and value for a list of the applicable values for that name. Example: iterator over all results and output the values separated by commas: {{#jobResults}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobResults}}
|
| jobResultMap | Map Object | Job Run Events only | This is an alternate format of jobResults stored in a map. This allows you to easily access a specific result by name. Example: {{#jobResultMap.outputFiles}}{{.}}{{/jobResultMap.outputFiles}}
|
| jobParameters | Complex Object | Job Events only | This field contains saved job parameters in as a list of elements accessible by the fields key for the name and value for a list of the applicable values for that name. Example: iterator over all results and output the values separated by commas: {{#jobParameters}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobParameters}}
|
| jobParameterMap | List of Objects | Job Events only | This is an alternate format of jobParameters stored in a map. This allows you to easily access a specific parameter by name. Example: {{#jobParameterMap.archiveDirectory}}{{.}}{{/jobParameterMap.archiveDirectory}}
|
Sample Syntax
The following shows various ways data can be accessed from within an Obsidian email template. This example lacks HTML formatting and is meant to show how to access and display different variables available to your templates.
Current Job Schedule: {{currentSchedule}}
Detail: {{detail}}
{{#detailItems}}
Detail {{-index}}: {{.}}
{{/detailItems}}
Error: {{#error}}true{{/error}}{{^error}}false{{/error}}
Error or Higher: {{#errorOrHigher}}true{{/errorOrHigher}}{{^errorOrHigher}}false{{/errorOrHigher}}
Fatal: {{#fatal}}true{{/fatal}}{{^fatal}}false{{/fatal}}
Warn: {{#warn}}true{{/warn}}{{^warn}}false{{/warn}}
Warn or Higher: {{#warnOrHigher}}true{{/warnOrHigher}}{{^warnOrHigher}}false{{/warnOrHigher}}
Info: {{#info}}true{{/info}}{{^info}}false{{/info}}
Host Name: {{hostName}}
Host Url: {{hostUrl}}
Level: {{level}}
Recipients: {{#recipients}}{{^-first}}, {{/-first}}{{.}}{{/recipients}}
Subject: {{subject}}
Job: {{#job}}{{id}} {{nickname}} {{pickupBufferMinutes}} {{recoveryType}} {{jobClass}} {{minExecutionDuration}} {{maxExecutionDuration}}{{/job}}
Job State: {{#jobState}}{{effectiveDate}}-{{endDate}} {{jobStatus}} {{schedule}}{{/jobState}}
Job History: {{#jobHistory}}{{adHoc}} {{resubmission}} {{scheduledTime}} {{submissionMode}} {{runningHost}}{{#chainedFrom}}; Chained from: {{this.job.nickname}} ({{this.scheduledTime}}){{/chainedFrom}}{{/jobHistory}}
Job Results: {{#jobResults}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobResults}}
Job Results by Name: {{#jobResultMap}}{{#result1}}{{^-first}}, {{/-first}}{{.}}{{/result1}}{{/jobResultMap}}
Job Results by Name (short): {{#jobResultMap.result2}}{{.}}{{/jobResultMap.result2}}
Job Parameters: {{#jobParameters}}{{^-first}}; {{/-first}}{{key}}={{#value}}{{^-first}}, {{/-first}}{{.}}{{/value}}{{/jobParameters}}
Job Parameters by Name: {{#jobParameterMap}}{{#param1}}{{^-first}}, {{/-first}}{{.}}{{/param1}}{{/jobParameterMap}}
Job Parameters by Name (short): {{#jobParameterMap.param2}}{{.}}{{/jobParameterMap.param2}}