This file is indexed.

/usr/lib/python2.7/dist-packages/txwinrm/typeperf.py is in python-txwinrm 1.1.28-1.

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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
##############################################################################
#
# Copyright (C) Zenoss, Inc. 2013, all rights reserved.
#
# This content is made available according to terms specified in the LICENSE
# file at the top-level directory of this package.
#
##############################################################################

import sys
import logging
from datetime import datetime
from twisted.internet import reactor, defer, task
from . import app
from .shell import create_typeperf

log = logging.getLogger('winrm')


class TypeperfUtility(object):

    @defer.inlineCallbacks
    def tx_main(self, args, config):
        try:
            typeperf = create_typeperf(args.conn_info)
            yield typeperf.start(args.counters, args.si)
            yield self._receive_parse_print(args, typeperf)
            yield typeperf.stop()
        finally:
            if reactor.running:
                reactor.stop()

    @defer.inlineCallbacks
    def _receive_parse_print(self, args, typeperf):
        i = 0
        while args.sc == 0 or i < args.sc:
            if args.sc > 0:
                i += 1
            results, stderr = yield task.deferLater(
                reactor, args.si, typeperf.receive)
            for key, values in results.iteritems():
                print key
                for timestamp, value in values:
                    date_str = datetime.strftime(timestamp, "%H:%M:%S")
                    print '  {0}: {1}'.format(date_str, value)
            for line in stderr:
                print >>sys.stderr, line

    def add_args(self, parser):
        parser.add_argument("--si", type=int, default=1,
                            help="time between samples in seconds")
        parser.add_argument("--sc", type=int, default=0,
                            help="number of samples to collect")
        parser.add_argument("counters", nargs='+',
                            help="performance counter paths to log")

    def check_args(self, args):
        if args.config:
            print >>sys.stderr, \
                "ERROR: The typeperf command does not support a " \
                "configuration file at this time."
        return not args.config

    def add_config(self, parser, config):
        pass

    def adapt_args_to_config(self, args, config):
        pass

if __name__ == '__main__':
    app.main(TypeperfUtility())