File: daemon-core-statistics-attributes.rst

package info (click to toggle)
condor 23.9.6%2Bdfsg-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 60,012 kB
  • sloc: cpp: 528,272; perl: 87,066; python: 42,650; ansic: 29,558; sh: 11,271; javascript: 3,479; ada: 2,319; java: 619; makefile: 615; xml: 613; awk: 268; yacc: 78; fortran: 54; csh: 24
file content (81 lines) | stat: -rw-r--r-- 3,806 bytes parent folder | download
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
72
73
74
75
76
77
78
79
80
81
DaemonCore Statistics Attributes
================================

Every HTCondor daemon keeps a set of operational statistics, some of
which are common to all daemons, others are specific to the running of a
particular daemon. In some cases, the statistics can reveal buggy or
slow performance of the HTCondor system. The following statistics are
available for all daemons, and can be accessed directly with the
condor_status command with a direct query, such as

.. code-block:: console

    $ condor_status -direct somehostname.example.com -schedd -statistics DC:2 -l


:classad-attribute-def:`DCUdpQueueDepth`
    This attribute is the number of bytes in the incoming UDP receive
    queue for this daemon, if it has a UDP command port. This attribute
    is polled once a minute by default, so may be out of date. The
    attribute DCUdpQueueDepthPeak records the peak depth since the
    daemon has started.

:classad-attribute-def:`DebugOuts`
    This attribute is the count of debugging messages printed to the
    daemon's debug log, such as the ScheddLog. There is a moderate cost
    to writing these logging messages, if the debug level is very high
    for an active daemon, the logging will slow performance. The
    corresponding attribute RecentDebugOuts is the count of the messages
    in the last 20 minutes.

:classad-attribute-def:`PipeMessages`
    This attribute is the number of messages received on a Unix pipe by
    this daemon since start time. The corresponding attribute
    RecentPipeMessages is the count of message in the last 20 minutes.

:classad-attribute-def:`PipeRuntime`
    This attribute represents the total number of wall clock seconds
    this daemon has spent processing pipe message since start. The
    corresponding attribute RecentPipeRuntime is the total time in the
    last 20 minutes.

:classad-attribute-def:`SelectWaittime`
    This attribute represents the total number of wall clock seconds
    this daemon has spent completely idle, waiting to process incoming
    requests or internal timers. The attribute DaemonCoreDutyCycle,
    which may be easier to write policy around, is based off of this.

:classad-attribute-def:`SignalRuntime`
    This attribute respresents the total number of wall clock time
    seconds this daemon has spent processing signals since start. The
    corresponding attribute RecentSignalRuntime is the total time in the
    last 20 minutes.

:classad-attribute-def:`Signals`
    This attribute is the number of signals, either Unix signals, or
    HTCondor simulated signals received by this daemon since start time.
    The corresponding attribute RecentSignals is the number of signals
    in the last 20 minutes.

:classad-attribute-def:`SocketRuntime`
    This attribute respresents the total number of wall clock time
    seconds this daemon has spent processing socket messages since
    start. The corresponding attribute RecentTimerRuntime is the total
    time in the last 20 minutes.

:classad-attribute-def:`SockMessages`
    This attribute is the number of messages received on socket by this
    daemon since start time. The corresponding attribute
    RecentSockMessages is the count of message in the last 20 minutes.

:classad-attribute-def:`TimerRuntime`
    This attribute respresents the total number of wall clock time
    seconds this daemon has spent processing timers since start. The
    corresponding attribute RecentTimerRuntime is the total time in the
    last 20 minutes.

:classad-attribute-def:`TimersFired`
    This attribute is the number of internal timers which have fired in
    this daemon during the most recent pass of the event loop. The corresponding attribute
    TimersFiredPeak is the maximum number of timers fired in one pass of the
    event loop since daemon start time.