12 public function store(
string $key,
Metric $metric) : void;
16 public function storeConfigBool($key,
bool $value,
string $description = null) : void;
17 public function storeConfigCounter($key,
int $value,
string $description = null) : void;
18 public function storeConfigGauge($key, $value,
string $description = null) : void;
20 public function storeConfigText($key,
string $value,
string $description = null) : void;
22 public function storeStableBool($key,
bool $value,
string $description = null) : void;
23 public function storeStableCounter($key,
int $value,
string $description = null) : void;
24 public function storeStableGauge($key, $value,
string $description = null) : void;
26 public function storeStableText($key,
string $value,
string $description = null) : void;
28 public function storeVolatileBool($key,
bool $value,
string $description = null) : void;
32 public function storeVolatileText($key,
string $value,
string $description = null) : void;
storeStableBool($key, bool $value, string $description=null)
storeConfigBool($key, bool $value, string $description=null)
store(string $key, Metric $metric)
Store some metric in the storage.
storeStableText($key, string $value, string $description=null)
A metric is something we can measure about the system.
storeStableCounter($key, int $value, string $description=null)
storeVolatileCounter($key, int $value, string $description=null)
storeStableTimestamp($key, \DateTimeImmutable $value, string $description=null)
storeConfigCounter($key, int $value, string $description=null)
storeStableGauge($key, $value, string $description=null)
storeConfigTimestamp($key, \DateTimeImmutable $value, string $description=null)
storeVolatileTimestamp($key, \DateTimeImmutable $value, string $description=null)
storeVolatileText($key, string $value, string $description=null)
storeConfigGauge($key, $value, string $description=null)
storeConfigText($key, string $value, string $description=null)
storeVolatileBool($key, bool $value, string $description=null)
storeVolatileGauge($key, $value, string $description=null)