Files
librenms-librenms/app/Polling/Measure/MeasurementSummary.php
Tony Murray 8d5bc3fc41 Use Measurements for all statistic collection (#13333)
* Use Measurements for all statistic collection

* fix space

* Use colors
cleanup

* fix style

* manually fix license notice

* add return times and new line

* add return times and new line

* fix mistake in copyright template

* fix style
2021-10-06 17:09:54 -05:00

94 lines
2.2 KiB
PHP

<?php
/**
* MeasurementSummary.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2021 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace App\Polling\Measure;
class MeasurementSummary
{
private $type;
private $count = 0;
private $duration = 0.0;
private $checkpointCount = 0;
private $checkpointDuration = 0.0;
public function __construct(string $type)
{
$this->type = $type;
}
public function add(Measurement $measurement): void
{
$this->count++;
$this->duration += $measurement->getDuration();
}
/**
* Get the measurement summary
* ['count' => #, 'duration' => s]
*/
public function get(): array
{
return [
'count' => $this->count,
'duration' => $this->duration,
];
}
public function getCount(): int
{
return $this->count;
}
public function getType(): string
{
return $this->type;
}
public function getDuration(): float
{
return $this->duration;
}
/**
* Set a new checkpoint to compare against with diff methods
*/
public function checkpoint(): void
{
$this->checkpointCount = $this->count;
$this->checkpointDuration = $this->duration;
}
public function getCountDiff(): int
{
return $this->count - $this->checkpointCount;
}
public function getDurationDiff(): float
{
return $this->duration - $this->checkpointDuration;
}
}