config.html 1.4 KB

123456789101112131415161718192021222324252627
  1. <h3 class="page-heading">CloudWatch details</h3>
  2. <div class="gf-form-group max-width-30">
  3. <div class="gf-form">
  4. <label class="gf-form-label width-13">Credentials profile name</label>
  5. <input type="text" class="gf-form-input max-width-18" ng-model='ctrl.current.database' placeholder="default"></input>
  6. <info-popover mode="right-absolute">
  7. Credentials profile name, as specified in ~/.aws/credentials, leave blank for default
  8. </info-popover>
  9. </div>
  10. <div class="gf-form">
  11. <label class="gf-form-label width-13">Default Region</label>
  12. <div class="gf-form-select-wrapper max-width-18 gf-form-select-wrapper--has-help-icon">
  13. <select class="gf-form-input" ng-model="ctrl.current.jsonData.defaultRegion" ng-options="region for region in ['ap-northeast-1', 'ap-northeast-2', 'ap-southeast-1', 'ap-southeast-2', 'cn-north-1', 'eu-central-1', 'eu-west-1', 'sa-east-1', 'us-east-1', 'us-west-1', 'us-west-2']"></select>
  14. <info-popover mode="right-absolute">
  15. Specify the region, such as for US West (Oregon) use ` us-west-2 ` as the region.
  16. </info-popover>
  17. </div>
  18. </div>
  19. <div class="gf-form">
  20. <label class="gf-form-label width-13">Custom Metrics namespace</label>
  21. <input type="text" class="gf-form-input max-width-18" ng-model='ctrl.current.jsonData.customMetricsNamespaces' placeholder="Namespace1,Namespace2"></input>
  22. <info-popover mode="right-absolute">
  23. Namespaces of Custom Metrics
  24. </info-popover>
  25. </div>
  26. </div>