Announcement

Collapse
No announcement yet.

Include all the results

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Include all the results

    Hi, I am new to this forum and PTS.
    I am trying to run selected number of monitors with idle test and see results. (using newest version of pts 6.8.0)

    Code:
    MONITOR=hdd.write-speed.vda1 phoronix-test-suite run pts/idle
    1. If there is no activity (activity below certain threshold) there is no graph/result in test_results. How can I show everything, despite it having no activity?

    2. How can I show time/date on X-axis on every graph ?

    3. One of machines I am testing has old centos 5.9 with default packages and kernel 2.6.18

    In /sys it does not have /sys/class/block, it only has /sys/block. Also it has Gen 8 Raid controller so it has block devices like 'cciss*'. So to test hdd I edited

    /usr/share/phoronix-test-suite/pts-core/objects/phodevi/sensors/hdd_write_speed.php

    in
    Code:
    public static function get_supported_devices()
    Code:
    $blockdev_dir = '/sys/block/*/';
    $glob_regex = '{[shvm]d*,nvme*,mmcblk*,cciss*}';
    and in
    Code:
    private function hdd_write_speed_linux()
    Code:
    $stat_path = '/sys/block/' . preg_replace("/\d+$/","",$this->disk_to_monitor) . "/" . $this->disk_to_monitor . '/stat';
    Thanks for all your hard work Michael.
Working...
X