mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
* Add error handling for unknown units * Fix test cases * Add case for empty string * Changed tests from convey to testify * Fix lints * Move regex vars * Add regex as ng-patterns on alert_tab.html * Update public/app/features/alerting/partials/alert_tab.html Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> * Update public/app/features/alerting/partials/alert_tab.html Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> * Make zero and empty string not throw errors * Updated validation error comments * Frequency should allow zero or empty strings * use checkFrequency instead of ng-pattern checkFrequency is not triggered if ng-pattern is defined. * Extract getForValue func - add tests * Fix linting Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com>
245 lines
8.5 KiB
HTML
245 lines
8.5 KiB
HTML
<div ng-if="ctrl.panel.alert">
|
|
<div class="alert alert-error m-b-2" ng-show="ctrl.error">
|
|
<icon name="'exclamation-triangle'"></icon> {{ctrl.error}}
|
|
</div>
|
|
|
|
<div class="gf-form-group">
|
|
<h4 class="section-heading">Rule</h4>
|
|
<div class="gf-form-inline">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-6">Name</span>
|
|
<input type="text" class="gf-form-input width-20 gf-form-input--has-help-icon" ng-model="ctrl.alert.name" />
|
|
<info-popover mode="right-absolute">
|
|
If you want to apply templating to the alert rule name, you must use the following syntax - ${Label}
|
|
</info-popover>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-9">Evaluate every</span>
|
|
<input
|
|
class="gf-form-input max-width-6"
|
|
type="text"
|
|
ng-model="ctrl.alert.frequency"
|
|
ng-blur="ctrl.checkFrequency()"
|
|
/>
|
|
</div>
|
|
<div class="gf-form max-width-11">
|
|
<label class="gf-form-label width-5">For</label>
|
|
<input
|
|
type="text"
|
|
class="gf-form-input max-width-6 gf-form-input--has-help-icon"
|
|
ng-model="ctrl.alert.for"
|
|
spellcheck="false"
|
|
placeholder="5m"
|
|
ng-pattern="/(^\d+([dhms])$)|(0)|(^$)/"
|
|
/>
|
|
<info-popover mode="right-absolute">
|
|
If an alert rule has a configured and the query violates the configured threshold, then it goes from OK
|
|
to Pending. Grafana does not send any notifications for that change. Once the alert rule has been
|
|
firing for more than For duration, then the alert changes to Alerting and sends alert notifications.
|
|
</info-popover>
|
|
</div>
|
|
</div>
|
|
<div class="gf-form" ng-if="ctrl.frequencyWarning">
|
|
<label class="gf-form-label text-warning">
|
|
<icon name="'exclamation-triangle'"></icon> {{ctrl.frequencyWarning}}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="gf-form-group">
|
|
<h4 class="section-heading">Conditions</h4>
|
|
<div class="gf-form-inline" ng-repeat="conditionModel in ctrl.conditionModels">
|
|
<div class="gf-form">
|
|
<metric-segment-model
|
|
css-class="query-keyword width-5"
|
|
ng-if="$index"
|
|
property="conditionModel.operator.type"
|
|
options="ctrl.evalOperators"
|
|
custom="false"
|
|
></metric-segment-model>
|
|
<span class="gf-form-label query-keyword width-5" ng-if="$index===0">WHEN</span>
|
|
</div>
|
|
<div class="gf-form">
|
|
<query-part-editor
|
|
class="gf-form-label query-part width-9"
|
|
part="conditionModel.reducerPart"
|
|
handle-event="ctrl.handleReducerPartEvent(conditionModel, $event)"
|
|
>
|
|
</query-part-editor>
|
|
<span class="gf-form-label query-keyword">OF</span>
|
|
</div>
|
|
<div class="gf-form">
|
|
<query-part-editor
|
|
class="gf-form-label query-part"
|
|
part="conditionModel.queryPart"
|
|
handle-event="ctrl.handleQueryPartEvent(conditionModel, $event)"
|
|
>
|
|
</query-part-editor>
|
|
</div>
|
|
<div class="gf-form">
|
|
<metric-segment-model
|
|
property="conditionModel.evaluator.type"
|
|
options="ctrl.evalFunctions"
|
|
custom="false"
|
|
css-class="query-keyword"
|
|
on-change="ctrl.evaluatorTypeChanged(conditionModel.evaluator)"
|
|
></metric-segment-model>
|
|
<input
|
|
class="gf-form-input max-width-9"
|
|
type="number"
|
|
step="any"
|
|
ng-hide="conditionModel.evaluator.params.length === 0"
|
|
ng-model="conditionModel.evaluator.params[0]"
|
|
ng-change="ctrl.evaluatorParamsChanged()"
|
|
/>
|
|
<label class="gf-form-label query-keyword" ng-show="conditionModel.evaluator.params.length === 2">TO</label>
|
|
<input
|
|
class="gf-form-input max-width-9"
|
|
type="number"
|
|
step="any"
|
|
ng-if="conditionModel.evaluator.params.length === 2"
|
|
ng-model="conditionModel.evaluator.params[1]"
|
|
ng-change="ctrl.evaluatorParamsChanged()"
|
|
/>
|
|
</div>
|
|
<div class="gf-form">
|
|
<label class="gf-form-label">
|
|
<a class="pointer" tabindex="1" ng-click="ctrl.removeCondition($index)">
|
|
<icon name="'trash-alt'"></icon>
|
|
</a>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="gf-form">
|
|
<label class="gf-form-label dropdown">
|
|
<a class="pointer dropdown-toggle" data-toggle="dropdown">
|
|
<icon name="'plus-circle'"></icon>
|
|
</a>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li ng-repeat="ct in ctrl.conditionTypes" role="menuitem">
|
|
<a ng-click="ctrl.addCondition(ct.value);">{{ct.text}}</a>
|
|
</li>
|
|
</ul>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="gf-form-group">
|
|
<h4 class="section-heading">No data and error handling</h4>
|
|
<div class="gf-form-inline">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-15">If no data or all values are null</span>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label query-keyword">set state to</span>
|
|
<div class="gf-form-select-wrapper">
|
|
<select
|
|
class="gf-form-input"
|
|
ng-model="ctrl.alert.noDataState"
|
|
ng-options="f.value as f.text for f in ctrl.noDataModes"
|
|
>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="gf-form-inline">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-15">If execution error or timeout</span>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label query-keyword">set state to</span>
|
|
<div class="gf-form-select-wrapper">
|
|
<select
|
|
class="gf-form-input"
|
|
ng-model="ctrl.alert.executionErrorState"
|
|
ng-options="f.value as f.text for f in ctrl.executionErrorModes"
|
|
>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h4 class="section-heading">Notifications</h4>
|
|
<div class="gf-form-inline">
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-8">Send to</span>
|
|
</div>
|
|
<div class="gf-form" ng-repeat="nc in ctrl.alertNotifications">
|
|
<span class="gf-form-label">
|
|
<icon name="'{{nc.iconClass}}'"></icon>
|
|
{{nc.name}} <span ng-if="nc.isDefault">(default)</span>
|
|
<icon
|
|
name="'times'"
|
|
class="pointer muted"
|
|
ng-click="ctrl.removeNotification(nc)"
|
|
ng-if="nc.isDefault === false"
|
|
></icon>
|
|
</span>
|
|
</div>
|
|
<div class="gf-form">
|
|
<metric-segment
|
|
segment="ctrl.addNotificationSegment"
|
|
get-options="ctrl.getNotifications()"
|
|
on-change="ctrl.notificationAdded()"
|
|
></metric-segment>
|
|
</div>
|
|
</div>
|
|
<div class="gf-form gf-form--v-stretch">
|
|
<span class="gf-form-label width-8">Message</span>
|
|
<textarea
|
|
class="gf-form-input gf-form-input--has-help-icon"
|
|
rows="10"
|
|
ng-model="ctrl.alert.message"
|
|
placeholder="Notification message details..."
|
|
></textarea>
|
|
<info-popover mode="right-absolute">
|
|
If you want to apply templating to the alert rule name, use the following syntax - ${Label}
|
|
</info-popover>
|
|
</div>
|
|
<div class="gf-form">
|
|
<span class="gf-form-label width-8">Tags</span>
|
|
<div class="gf-form-group">
|
|
<div class="gf-form-inline" ng-repeat="(name, value) in ctrl.alert.alertRuleTags">
|
|
<label class="gf-form-label width-15">{{ name }}</label>
|
|
<input
|
|
class="gf-form-input width-15"
|
|
placeholder="Tag value..."
|
|
ng-model="ctrl.alert.alertRuleTags[name]"
|
|
type="text"
|
|
/>
|
|
<label class="gf-form-label">
|
|
<a class="pointer" tabindex="1" ng-click="ctrl.removeAlertRuleTag(name)">
|
|
<icon name="'trash-alt'"></icon>
|
|
</a>
|
|
</label>
|
|
</div>
|
|
<div class="gf-form-inline">
|
|
<div class="gf-form">
|
|
<input
|
|
class="gf-form-input width-15"
|
|
placeholder="New tag name..."
|
|
ng-model="ctrl.newAlertRuleTag.name"
|
|
type="text"
|
|
/>
|
|
<input
|
|
class="gf-form-input width-15"
|
|
placeholder="New tag value..."
|
|
ng-model="ctrl.newAlertRuleTag.value"
|
|
type="text"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="gf-form">
|
|
<label class="gf-form-label">
|
|
<a class="pointer" tabindex="1" ng-click="ctrl.addAlertRuleTag()">
|
|
<icon name="'plus-circle'"></icon> Add Tag
|
|
</a>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|