0

ここにあるNewrelicのCloudwatchプラグインを使用しています: https ://github.com/brettcave/newrelic_aws_cloudwatch_plugin

ただし、何らかの理由で、私の応答はすべて nil が返されます。

[2014-09-19 12:43:15 UTC] INFO: Retrieving statistics: {:namespace=>"AWS/EC2", :metric_name=>"DiskWriteOps", :statistic=>"Sum", :unit=>"Count", :dimension=>{:name=>"AutoScalingGroupName", :value=>"AUTOSCALER-BackendGroup-19N8SYDEIPGYV"}, :period=>60, :start_time=>"2014-09-19T12:41:15Z", :component_name=>"AUTOSCALER-BackendGroup-19N8SYDEIPGYV", :end_time=>"2014-09-19T12:41:45Z", :dimensions=>[{:name=>"AutoScalingGroupName", :value=>"AUTOSCALER-BackendGroup-19N8SYDEIPGYV"}]}
[2014-09-19 12:43:15 UTC] INFO: Retrieved statistics: {:datapoints=>[], :label=>"DiskWriteOps", :response_metadata=>{:request_id=>"3cb0c8a6-3ffa-11e4-aea1-91b035de76f7"}}
[2014-09-19 12:43:15 UTC] DEBUG: metric_name: DiskWriteOps, statistic: Sum, unit: Count, response: nil

これは、上記のリンクで説明されているコードで、aws cloudwatch list-metrics --namespace "AWS/EC2"コマンド出力に準拠しています。

モジュール NewRelicAWS
 モジュールコレクター
    クラス ASG < ベース
      def initialize(access_key, secret_key, region, options)
        スーパー (access_key、secret_key、地域、オプション)
        @asg = AWS::AutoScaling.new(
          :access_key_id => @aws_access_key,
          :secret_access_key => @aws_secret_key,
          :地域 => @aws_region
        )
      終わり

def groups @asg.groups end def metric_list [ ["CPUUtilization", "Average", "Percent"], ["DiskReadOps", "Sum", "Count"], ["DiskWriteOps", "Sum", "Count"], ["DiskWriteBytes" , "Sum", "Bytes"], ["NetworkIn", "Sum", "Bytes"], ["NetworkOut", "Sum", "Bytes"] ] end def collect data_points = [] groups.each do |group| metric_list.each do |(metric_name, statistic, unit)| data_point = get_data_point( :namespace => "AWS/EC2", :metric_name => metric_name, :statistic => statistic, :unit => unit, :dimension => { :name => "AutoScalingGroupName", :value => group.name }, :period => 60, :start_time => (Time.now.utc-120).iso8601, :component_name => group.name ) NewRelic::PlatformLogger.debug("metric_name: #{metric_name}, statistic: #{statistic}, unit: #{unit}, response: #{data_point.inspect}") unless data_point.nil? data_points << data_point end end end data_points end end end end

EC2 プラグインは機能しますが、これは EC2 プラグインとほぼ同じです。何が間違っている可能性がありますか?

前もって感謝します。

4

1 に答える 1

0

公式の New Relic プラグインは役に立ちますか? https://github.com/newrelic-platform/newrelic_aws_cloudwatch_plugin

于 2014-09-19T15:42:21.443 に答える