Advertisement
Guest User

NewRelicRubyProblemConfig

a guest
Jan 26th, 2015
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. # Please make sure to update the license_key information with the
  2. # license key for your New Relic account.
  3. #
  4. newrelic:
  5. #
  6. # Update with your New Relic account license key:
  7. #
  8. license_key: 'secret'
  9. #
  10. # Set to '1' for verbose output, remove for normal output.
  11. # All output goes to stdout/stderr.
  12. #
  13. # verbose: 1
  14. #
  15. # AWS configuration.
  16. #
  17. aws:
  18. # Update with you AWS account keys:
  19. access_key: 'secret'
  20. secret_key: 'secret'
  21.  
  22. #Use the following if you would like to configure AWS keys with ENV variables
  23. #access_key: <%= ENV['AWS_ACCESS_KEY'] %>
  24. #secret_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
  25.  
  26. #Use the following line disable the key checks and enable usage of AWS instance metadata for setting keys
  27. #use_aws_metadata: true
  28.  
  29. # Specify AWS regions to query for metrics
  30. # regions:
  31. # -
  32. eu-west-1
  33. # -
  34. # us-east-2
  35.  
  36. #
  37. # Agent configuration.
  38. #
  39. agents:
  40. #
  41. # Enable/disable agents with the enabled attribute or by commenting out each agent.
  42. #
  43. # Tag and instance ID filtering are available and are documented at
  44. # https://github.com/newrelic-platform/newrelic_aws_cloudwatch_plugin/blob/master/README.md#tag-filtering
  45. #
  46. # An optional cloudwatch_delay attribute can be added for each agent
  47. # which adjusts the time window in seconds for CloudWatch querying.
  48. # Some of the Cloudwatch metrics are not immediately available and may
  49. # require a delay before being queried.
  50. ec2:
  51. enabled: true
  52. ebs:
  53. enabled: true
  54. elb:
  55. enabled: true
  56. rds:
  57. enabled: true
  58. sqs:
  59. enabled: true
  60. sns:
  61. enabled: true
  62. ec:
  63. enabled: true
  64. ecr:
  65. enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement