This file is indexed.

/usr/lib/python3/dist-packages/glances/outputs/static/html/plugins/processlist.html is in glances 2.7.1.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<div class="table">
    <div class="table-row">
        <div sortable-th sorter="sorter" column="cpu_percent" class="table-cell">CPU%</div>
        <div sortable-th sorter="sorter" column="memory_percent" class="table-cell">MEM%</div>
        <div class="table-cell hidden-xs hidden-sm">VIRT</div>
        <div class="table-cell hidden-xs hidden-sm">RES</div>
        <div class="table-cell">PID</div>
        <div sortable-th sorter="sorter" column="username" class="table-cell text-left">USER</div>
        <div class="table-cell">NI</div>
        <div class="table-cell">S</div>
        <div sortable-th sorter="sorter" column="timemillis" class="table-cell hidden-xs hidden-sm">TIME+</div>
        <div sortable-th sorter="sorter" column="io_read" class="table-cell hidden-xs hidden-sm" ng-show="statsProcessList.ioReadWritePresent">IOR/s</div>
        <div sortable-th sorter="sorter" column="io_write" class="table-cell hidden-xs hidden-sm" ng-show="statsProcessList.ioReadWritePresent">IOW/s</div>
        <div sortable-th sorter="sorter" column="name" class="table-cell text-left">Command</div>
    </div>
    <div class="table-row" ng-repeat="process in statsProcessList.processes | orderBy:sorter.column:sorter.isReverseColumn(sorter.column)">
        <div class="table-cell" ng-class="statsProcessList.getCpuPercentAlert(process)">{{process.cpu_percent | number:1}}</div>
        <div class="table-cell" ng-class="statsProcessList.getMemoryPercentAlert(process)">{{process.memory_percent | number:1}}</div>
        <div class="table-cell hidden-xs hidden-sm">{{process.memvirt | bytes}}</div>
        <div class="table-cell hidden-xs hidden-sm">{{process.memres | bytes}}</div>
        <div class="table-cell">{{process.pid}}</div>
        <div class="table-cell text-left">{{process.username}}</div>
        <div class="table-cell" ng-class="{nice: process.isNice}">{{process.nice | exclamation}}</div>
        <div class="table-cell" ng-class="{status: process.status == 'R'}">{{process.status}}</div>
        <div class="table-cell hidden-xs hidden-sm">
            <span ng-show="process.timeplus.hours > 0" class="highlight">{{ process.timeplus.hours }}h</span>{{ process.timeplus.minutes | leftPad:2:'0' }}:{{ process.timeplus.seconds | leftPad:2:'0' }}<span ng-show="process.timeplus.hours <= 0">.{{ process.timeplus.milliseconds | leftPad:2:'0' }}</span>
        </div>
        <div class="table-cell hidden-xs hidden-sm" ng-show="statsProcessList.ioReadWritePresent">{{process.ioRead}}</div>
        <div class="table-cell hidden-xs hidden-sm" ng-show="statsProcessList.ioReadWritePresent">{{process.ioWrite}}</div>
        <div class="table-cell text-left" ng-show="arguments.process_short_name">{{process.name}}</div>
        <div class="table-cell text-left" ng-show="!arguments.process_short_name">{{process.cmdline}}</div>
    </div>
</div>