<?php $rados = rados_create(); rados_conf_read_file($rados, "/etc/ceph/ceph.conf"); rados_connect($rados); var_dump(rados_cluster_stat($rados)); rados_shutdown($rados);
/** * @depends testRadosConnect */ public function testRadosClusterStat($cluster) { $stats = rados_cluster_stat($cluster); $this->assertGreaterThan(0, $stats['kb']); $this->assertGreaterThanOrEqual(0, $stats['kb_used']); $this->assertLessThan($stats['kb'], $stats['kb_avail']); $this->assertGreaterThanOrEqual(0, $stats['num_objects']); }