| 1 | <?php |
||
| 10 | abstract class AbstractMemoryGauge implements GaugeInterface |
||
| 11 | { |
||
| 12 | const MEMINFO_PATH = '/proc/meminfo'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | */ |
||
| 17 | public function getSamplingPeriod() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Only for linux/unix OS |
||
| 24 | * |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | protected function getSystemMemoryInfo() |
||
| 45 | } |