This file is indexed.

/usr/share/doc/php-opencloud/userguide/Cloud Monitoring/Changelogs.md is in php-opencloud 1.6.0+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Changelogs

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.

### Setup

```php
require_once 'path/to/lib/php-opencloud.php';

use OpenCloud\OpenStack;
use OpenCloud\CloudMonitoring\Service;

$connection = new OpenStack(
	RACKSPACE_US, // Set to whatever
	array(
		'username' => 'foo',
		'password' => 'bar'
	)
);

$monitoringService = new Service($connection);

$changelog = $monitoringService->resource('changelog');
```

### List changelogs
```php
$changelogList = $changelog->listAll();
while ($changelog = $changelogList->Next()) {
	// Do whatever
	echo $changelog->timestamp . PHP_EOL;
	echo $changelog->analyzed_by_monitoring_zone_id . PHP_EOL;
}
```