annotations.editor.html 838 B

123456789101112131415161718
  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="gf-form-inline">
  6. <gf-form-switch class="gf-form" label="Enable" checked="ctrl.annotation.prefixMatching" switch-class="max-width-6"></gf-form-switch>
  7. <div class="gf-form" ng-if="ctrl.annotation.prefixMatching">
  8. <span class="gf-form-label">Action</span>
  9. <input type="text" class="gf-form-input" ng-model='ctrl.annotation.actionPrefix'></input>
  10. </div>
  11. <div class="gf-form" ng-if="ctrl.annotation.prefixMatching">
  12. <span class="gf-form-label">Alarm Name</span>
  13. <input type="text" class="gf-form-input" ng-model='ctrl.annotation.alarmNamePrefix'></input>
  14. </div>
  15. </div>
  16. </div>
  17. </div>