Skip to content

Instantly share code, notes, and snippets.

@jeremeamia
Forked from chadsaun/gist:5455031
Created April 29, 2013 19:12
Show Gist options
  • Save jeremeamia/5483957 to your computer and use it in GitHub Desktop.
Save jeremeamia/5483957 to your computer and use it in GitHub Desktop.
<?php
$startTime = strtotime('-1 hours');
$endTime = $startTime + 3600;
$result = $client->getMetricStatistics(array(
'MetricName' => 'Latency',
'Namespace' => 'AWS/ELB',
'StartTime' => $startTime,
'EndTime' => $endTime,
'Period' => 300,
'Statistics' => array('Average'),
));
print_r($result['Datapoints']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment