Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AllNotifierTypes []Type = []Type{HTMLEmail, MarkdownIssueTracker, None}
AllNotifierTypes is the list of all valid NotifyTypes.
Functions ¶
This section is empty.
Types ¶
type Type ¶
type Type string
Type is the type of notifiers that can be built.
const ( // HTMLEmail means send HTML formatted emails. HTMLEmail Type = "html_email" // MarkdownIssueTracker means send Markdown formatted notifications to the // issue tracker. MarkdownIssueTracker Type = "markdown_issuetracker" // ChromeperfAlerting means send the regression data to chromeperf // alerting system ChromeperfAlerting Type = "chromeperf" // AnomalyGrouper means send the regression to grouping logic and take action as needed AnomalyGrouper Type = "anomalygroup" // None means do not send any notification. None Type = "none" )
Click to show internal directories.
Click to hide internal directories.