fix typo in readme
This commit is contained in:
parent
7bfa14a46f
commit
17dcf7f3a3
1 changed files with 2 additions and 2 deletions
|
@ -155,7 +155,7 @@ $histogram = $exporter->registerHistogram(
|
||||||
);
|
);
|
||||||
// the buckets must be in asc order
|
// the buckets must be in asc order
|
||||||
// if buckets aren't specified, the default 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1.0, 2.5, 5.0, 7.5, 10.0 buckets will be used
|
// if buckets aren't specified, the default 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1.0, 2.5, 5.0, 7.5, 10.0 buckets will be used
|
||||||
$histogram->obeserve(5.0);
|
$histogram->observe(5.0);
|
||||||
|
|
||||||
// create a histogram (with labels)
|
// create a histogram (with labels)
|
||||||
$histogram = $exporter->registerHistogram(
|
$histogram = $exporter->registerHistogram(
|
||||||
|
@ -166,7 +166,7 @@ $histogram = $exporter->registerHistogram(
|
||||||
);
|
);
|
||||||
// the buckets must be in asc order
|
// the buckets must be in asc order
|
||||||
// if buckets aren't specified, the default 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1.0, 2.5, 5.0, 7.5, 10.0 buckets will be used
|
// if buckets aren't specified, the default 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1.0, 2.5, 5.0, 7.5, 10.0 buckets will be used
|
||||||
$histogram->obeserve(5.0, ['GET']);
|
$histogram->observe(5.0, ['GET']);
|
||||||
|
|
||||||
// retrieve a histogram
|
// retrieve a histogram
|
||||||
$counter = $exporter->getHistogram('response_time_seconds');
|
$counter = $exporter->getHistogram('response_time_seconds');
|
||||||
|
|
Loading…
Reference in a new issue