config.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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">Credentials Access key</label>
  12. <input type="text" class="gf-form-input max-width-18" ng-model='ctrl.current.jsonData.accessKey' placeholder="default"></input>
  13. <info-popover mode="right-absolute">
  14. Accesskey
  15. </info-popover>
  16. </div>
  17. <div class="gf-form">
  18. <label class="gf-form-label width-13">Credentials Secret key</label>
  19. <input type="text" class="gf-form-input max-width-18" ng-model='ctrl.current.jsonData.secretKey' placeholder="default"></input>
  20. <info-popover mode="right-absolute">
  21. Secret key
  22. </info-popover>
  23. </div>
  24. <div class="gf-form">
  25. <label class="gf-form-label width-13">Default Region</label>
  26. <div class="gf-form-select-wrapper max-width-18 gf-form-select-wrapper--has-help-icon">
  27. <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-gov-west-1', 'us-west-1', 'us-west-2']"></select>
  28. <info-popover mode="right-absolute">
  29. Specify the region, such as for US West (Oregon) use ` us-west-2 ` as the region.
  30. </info-popover>
  31. </div>
  32. </div>
  33. <div class="gf-form">
  34. <label class="gf-form-label width-13">Custom Metrics namespace</label>
  35. <input type="text" class="gf-form-input max-width-18" ng-model='ctrl.current.jsonData.customMetricsNamespaces' placeholder="Namespace1,Namespace2"></input>
  36. <info-popover mode="right-absolute">
  37. Namespaces of Custom Metrics
  38. </info-popover>
  39. </div>
  40. <div class="gf-form">
  41. <label class="gf-form-label width-13">Assume Role ARN</label>
  42. <input type="text" class="gf-form-input max-width-18" ng-model='ctrl.current.jsonData.assumeRoleArn' placeholder="arn:aws:iam:*"></input>
  43. <info-popover mode="right-absolute">
  44. ARN of Assume Role
  45. </info-popover>
  46. </div>
  47. </div>