Customizing Notifications
TeamCity provides a wide range of notification possibilities to keep developers informed about the status of their projects. Notifications can be sent by e-mail, Jabber/XMPP instant messages or can be displayed in the IDE (with the help of TeamCity plugins) or the Windows system tray (using TeamCity Windows tray notifier). Each user can Subscribing to Notifications. The notification messages can be customized globally on a per-server basis.
Notifications can also be received via Atom/RSS syndication feeds, but since the feeds use the "pull" model for receiving notifications instead of "push", some of the approaches are different for the feeds.
Notifications Lifecycle
TeamCity supports a set of events that can generate user notifications (such as build failures, investigation state changes, etc). On an event occurrence, for each notifier type, TeamCity processes notification settings for all the users to determine which users to notify.
When the set of users is determined, TeamCity fills the notification model (the objects relevant to the notification, such as as "build", investigation data, etc.) and evaluates a notification template that corresponds to the notification event. The template uses the data model objects to generate the output values (e.g. notification message text). The output values are then used by the notifier to send the message. Each notifier supports a specific set of the output values.
Please note that the template is evaluated once for an event which means that notification properties cannot be adjusted on a per-user basis.
The output values defined by the template are then used by the notifier to send alerts to the selected users.
Customizing Notifications Templates
Notification Templates Location
Each of the bundled notifier has a directory under <TeamCity data directory>
/config/_notifications/
which stores FreeMarker (.ftl) templates. There are also TeamCity Data Directory files that store the default templates. Each notification type evaluates a template file with a corresponding name. The template files can be modified while the server is running.
By default, the server checks for changes in the files each 60 seconds, but this can be changed by setting the teamcity.notification.template.update.interval
Configuring TeamCity Server Startup Properties to the desired number of seconds.
If there occurs an error during the template evaluation, TeamCity logs the error details into teamcity-notifications.log
. There can be non-critical errors that result in ignoring part of the template or critical errors that result in inability to send notification at all. Whenever you make changes to the notification templates please ensure the notification can still be sent.
This document doesn't describe the FreeMarker template language, so if you need a guidance on the FreeMarker syntax, please refer to the corresponding template manual at http://freemarker.org/docs/dgui.html.
Supported Output Values
TeamCity notifiers use templates to evaluate output values (global template variables) which are then retrieved by name. The following output values are supported:
*Email Notifier *
subject - subject of the email message to send
body - plain text of the email message to send
bodyHtml - (optional) HTML text of the email message to send. It will be included together with plain text part of the message
headers - (optional) Raw list of additional headers to include into an email. One header per line. For example:
<#global headers> X-Priority: 1 (Highest) Importance: High </#global>
Jabber
message - plain text of the message to send
IDE Notifications and Windows Tray Notifications
message - plain text of the message to send
link - URL of the TeamCity page that contains detailed information about the event
(i)The Atom/RSS feeds template differs from the others. For the details, please refer to the SyndicationFeed.
Customization Examples
This section provides Freemaker code snippets that can be used for customization of notifications:
Including ERRORS from the log
You can include it into the build_failed.ftl
template as follows:
The errors will be listed in the plain text part of the e-mail. To include it into the HTML part as well, you will need to add the same snippet into <#global bodyHtml> (e.g. right before "<@common.footerHtml/>")
Listing build artifacts
This will list only the root artifacts and include the .teamcity
directory, which can be changed by modifications to the code.
Listing build parameters
This will list the parameters that are passed to the build from the server.
Default Data Model
For the template evaluation TeamCity provides the default data model that can be used inside the template. The objects exposed in the model are instances of the corresponding classes from Server-side Object Model. The set of available objects model differs for different events. You can also add your own objects into the model via plugin. See Extending Notification Templates Model for details.
Here is an an example description of the model (the code can be used in IntelliJ IDEA to edit the template with completion):
TeamCity Notification Properties
The following Configuring TeamCity Server Startup Properties can be useful to customize the notifications behaviour: teamcity.notification.template.update.interval
- how often the templates are reread by system (integer, in seconds, default 60) teamcity.notification.includeDebugInfo
- include debug information into the message in case of template processing errors (boolean, default false) teamcity.notification.maxChangesNum
- max number of changes to list in e-mail message (integer, default 10) teamcity.notification.maxCompilationDataSize
- max size (in bytes) of compilation error data to include in e-mail message (integer, default 20480) teamcity.notification.maxFailedTestNum
- max number of failed tests to list in e-mail message (integer, default 50) teamcity.notification.maxFailedTestStacktraces
- max number of test stacktraces in e-mail message (integer, default 5) teamcity.notification.maxFailedTestDataSize
- max size (in bytes) of failed test output data to include in a single e-mail message (integer, default 10240)
Syndication Feed Template
The template uses different approach to configuration from other notification engines.
The default template is stored in the file: <TeamCity data directory>
/config/default-feed-item-template.ftl
. This file should never be edited: it is overwritten on every server startup with the default copy. To specify a new template to use, copy the file under the name feed-item-template.ftl
into the same directory. This file can be edited and will not be overwritten. It will be used by the engine if present.
The template is a FreeMarker template and can be freely edited.
You can use several templates on the single sever. The template name can be passed as a Subscribing to Notifications of the feed URL.
During feed rendering, the template is evaluated to get the feed content. The resultant content is defined by the global variables defined in the template.
See the default template for an example of available input variables and output variables.