# File lib/fog/metering/openstack/requests/get_statistics.rb, line 31
        def get_statistics(_meter_id, _options = {})
          response = Excon::Response.new
          response.status = 200
          response.body = [{
            'count'          => 143,
            'duration_start' => '2013-04-03T23:44:21',
            'min'            => 10.0,
            'max'            => 10.0,
            'duration_end'   => '2013-04-04T23:24:21',
            'period'         => 0,
            'period_end'     => '2013-04-04T23:24:21',
            'duration'       => 85200.0,
            'period_start'   => '2013-04-03T23:44:21',
            'avg'            => 10.0,
            'sum'            => 1430.0
          }]
          response
        end