Blame view

sources/3rdparty/rackspace/php-opencloud/docs/userguide/CloudMonitoring/Changelogs.md 356 Bytes
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  # Changelogs
  
  ## Info
  
  The monitoring service records changelogs for alarm statuses. Changelogs are accessible as a Time Series Collection. By default the API queries the last 7 days of changelog information.
  
  ## Working with Changelogs
  ```php
  $changelog = $service->getChangelog();
  
  foreach ($changelog as $item) {
     $entity = $item->getEntityId();
  }
  ```