config.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  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', 'ap-south-1', 'cn-north-1', 'eu-central-1', 'eu-west-1', 'sa-east-1', 'us-east-1', 'us-east-2', '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 class="gf-form">
  27. <label class="gf-form-label width-13">Assume Role ARN</label>
  28. <input type="text" class="gf-form-input max-width-18" ng-model='ctrl.current.jsonData.assumeRoleArn' placeholder="arn:aws:iam:*"></input>
  29. <info-popover mode="right-absolute">
  30. ARN of Assume Role
  31. </info-popover>
  32. </div>
  33. </div>