20 $m1 =
new M(M::STABILITY_CONFIG, M::TYPE_BOOL,
true,
"desc1");
21 $m2 =
new M(M::STABILITY_CONFIG, M::TYPE_BOOL,
true,
"desc2");
23 $this->storage->store(
"m1", $m1);
24 $this->storage->store(
"m2", $m2);
31 $this->assertEquals($expected, $this->storage->get());
36 $m1 =
new M(M::STABILITY_CONFIG, M::TYPE_BOOL,
true,
"desc1");
37 $m2 =
new M(M::STABILITY_CONFIG, M::TYPE_BOOL,
true,
"desc2");
39 $this->storage->store(
"m1", $m1);
40 $this->storage->store(
"m1", $m2);
46 $this->assertEquals($expected, $this->storage->get());
51 $m1 =
new M(M::STABILITY_CONFIG, M::TYPE_BOOL,
true,
"desc1");
53 $this->storage->store(
"a.b.c", $m1);
63 $this->assertEquals($expected, $this->storage->get());
68 $this->storage->store(
"a",
new M(M::STABILITY_STABLE, M::TYPE_COUNTER, 0));
69 $this->storage->store(
"b.c",
new M(M::STABILITY_VOLATILE, M::TYPE_BOOL,
true));
75 "a" =>
new M(M::STABILITY_STABLE, M::TYPE_COUNTER, 0),
76 "b" =>
new M(M::STABILITY_MIXED, M::TYPE_COLLECTION, [
77 "c" =>
new M(M::STABILITY_VOLATILE, M::TYPE_BOOL,
true)
82 $this->assertEquals($expected, $this->storage->asMetric());
A metric is something we can measure about the system.