annotations.editor.html 783 B

1234567891011121314151617181920
  1. <cloudwatch-query-parameter target="ctrl.annotation" datasource="ctrl.datasource"></cloudwatch-query-parameter>
  2. <div class="editor-row" style="padding: 2rem 0">
  3. <div class="section">
  4. <h5>Prefix matching</h5>
  5. <div class="editor-option">
  6. <editor-checkbox text="Enable" model="ctrl.annotation.prefixMatching"></editor-checkbox>
  7. </div>
  8. <div class="editor-option" ng-if="ctrl.annotation.prefixMatching">
  9. <label class="small">Action</label>
  10. <input type="text" class="input-small" ng-model='ctrl.annotation.actionPrefix'></input>
  11. </div>
  12. <div class="editor-option" ng-if="ctrl.annotation.prefixMatching">
  13. <label class="small">Alarm Name</label>
  14. <input type="text" class="input-small" ng-model='ctrl.annotation.alarmNamePrefix'></input>
  15. </div>
  16. </div>
  17. </div>