This file is indexed.

/usr/lib/python3/dist-packages/glances/outputs/static/html/plugins/fs.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
<div class="table-row">
    <div class="table-cell text-left title">FILE SYS</div>
    <div class="table-cell">
        <span ng-show="!arguments.fs_free_space">Used</span>
        <span ng-show="arguments.fs_free_space">Free</span>
    </div>
    <div class="table-cell">Total</div>
</div>
<div class="table-row" ng-repeat="fs in statsFs.fileSystems | orderBy:  'mnt_point'">
    <div class="table-cell text-left">{{ fs.mountPoint }} <span class="visible-lg-inline" ng-show="fs.name.length <= 20">({{ fs.name }})<span></div>
    <div class="table-cell" ng-class="statsFs.getDecoration(fs.mountPoint, 'used')">
        <span ng-show="!arguments.fs_free_space">{{ fs.used | bytes }}</span>
        <span ng-show="arguments.fs_free_space">{{ fs.free | bytes }}</span>
    </div>
    <div class="table-cell">{{ fs.size | bytes }}</div>
</div>