# File lib/aws/auto_scaling/group.rb, line 272
      def enable_metrics_collection *metrics
        client_opts = {}
        client_opts[:auto_scaling_group_name] = name
        client_opts[:granularity] = '1Minute'
        client_opts[:metrics] = metrics.flatten
        client.enable_metrics_collection(client_opts)
        nil
      end