File: collector-classad-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 (267 lines) | stat: -rw-r--r-- 11,616 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
Collector ClassAd Attributes
============================

:classad-attribute-def:`ActiveQueryWorkers`
    Current number of forked child processes handling queries.

:classad-attribute-def:`ActiveQueryWorkersPeak`
    Peak number of forked child processes handling queries since
    collector startup or statistics reset.

:index:`RecentDroppedQueries (ClassAd Collector Attribute)`

:classad-attribute-def:`DroppedQueries`
    Total number of queries aborted since collector startup (or
    statistics reset) because :macro:`COLLECTOR_QUERY_WORKERS_PENDING`
    exceeded, or :macro:`COLLECTOR_QUERY_MAX_WORKTIME` exceeded, or client
    closed TCP socket while request was pending. This statistic is also
    available as ``RecentDroppedQueries`` which represents a count of
    recently dropped queries that occurred within a recent time window
    (default of 20 minutes).

:classad-attribute-def:`CollectorIpAddr`
    String with the IP and port address of the *condor_collector*
    daemon which is publishing this ClassAd.

:classad-attribute-def:`CondorVersion`
    A string containing the HTCondor version number, the release date,
    and the build identification number.

:classad-attribute-def:`CurrentForkWorkers`
    The current number of active forks of the Collector. The Windows
    version of the Collector does not fork and will not have this
    statistic.

:classad-attribute-def:`CurrentJobsRunningAll`
    An integer value representing the sum of all jobs running under all
    universes.

:classad-attribute-def:`CurrentJobsRunning`
    An integer value representing the current number of jobs running
    under the universe which forms the attribute name. For example

    .. code-block:: condor-classad

        CurrentJobsRunningVanilla = 567

    identifies that the *condor_collector* counts 567 vanilla universe
    jobs currently running. ``<universe>`` is one of ``Unknown``,
    ``Vanilla``, ``Scheduler``, ``Java``, ``Parallel``,
    ``VM``, or ``Local``. There are other universes, but they are not
    listed here, as they represent ones that are no longer used in
    Condor.

:classad-attribute-def:`DaemonStartTime`
    The time that this daemon was started, represented as the number of
    second elapsed since the Unix epoch (00:00:00 UTC, Jan 1, 1970).

:classad-attribute-def:`DaemonLastReconfigTime`
    The time that this daemon was configured, represented as the number
    of second elapsed since the Unix epoch (00:00:00 UTC, Jan 1, 1970).

:classad-attribute-def:`HandleLocate`
    Number of locate queries the Collector has handled without forking
    since it started.

:classad-attribute-def:`HandleLocateRuntimeAvg`
    Total time spent handling locate queries without forking since the
    Collector started. This attribute also has minimum, maximum, average
    and standard deviation statistics with Min, Max, Avg and Std
    suffixes respectively.

:classad-attribute-def:`HandleLocateForked`
    Number of locate queries the Collector has handled by forking since
    it started. The Windows operating system does not fork and will not
    have this statistic.

:classad-attribute-def:`HandleLocateForkedRuntimeAvg`
    Total time spent forking to handle locate queries since the
    Collector started. This attribute also has minimum, maximum, average
    and standard deviation statistics with Min, Max, Avg and Std
    suffixes respectively. The Windows operating system does not fork
    and will not have this statistic.

:classad-attribute-def:`HandleLocateMissedFork`
    Number of locate queries the Collector received since the Collector
    started that could not be handled immediately because there were
    already too many forked child processes. The Windows operating
    system does not fork and will not have this statistic.

:classad-attribute-def:`HandleLocateMissedForkRuntimeAvg`
    Total time spent queuing pending locate queries that could not be
    immediately handled by forking since the Collector started. This
    attribute also has minimum, maximum, average and standard deviation
    statistics with Min, Max, Avg and Std suffixes respectively. The
    Windows operating system does not fork and will not have this
    statistic.

:classad-attribute-def:`HandleQuery`
    Number of queries that are not locate queries the Collector has
    handled without forking since it started.

:classad-attribute-def:`HandleQueryRuntimeAvg`
    Total time spent handling queries that are not locate queries
    without forking since the Collector started. This attribute also has
    minimum, maximum, average and standard deviation statistics with
    Min, Max, Avg and Std suffixes respectively.

:classad-attribute-def:`HandleQueryForked`
    Number of queries that are not locate queries the Collector has
    handled by forking since it started. The Windows operating system
    does not fork and will not have this statistic.

:classad-attribute-def:`HandleQueryForkedRuntimeAvg`
    Total time spent forking to handle queries that are not locate
    queries since the Collector started. This attribute also has
    minimum, maximum, average and standard deviation statistics with
    Min, Max, Avg and Std suffixes respectively. The Windows operating
    system does not fork and will not have this statistic.

:classad-attribute-def:`HandleQueryMissedFork`
    Number of queries that are not locate queries the Collector received
    since the Collector started that could not be handled immediately
    because there were already too many forked child processes. The
    Windows operating system does not fork and will not have this
    statistic.

:classad-attribute-def:`HandleQueryMissedForkRuntimeAvg`
    Total time spent queuing pending non-locate queries that could not
    be immediately handled by forking since the Collector started. This
    attribute also has minimum, maximum, average and standard deviation
    statistics with Min, Max, Avg and Std suffixes respectively. The
    Windows operating system does not fork and will not have this
    statistic.

:classad-attribute-def:`HostsClaimed`
    Description is not yet written.

:classad-attribute-def:`HostsOwner`
    Description is not yet written.

:classad-attribute-def:`HostsTotal`
    Description is not yet written.

:classad-attribute-def:`HostsUnclaimed`
    Description is not yet written.

:classad-attribute-def:`IdleJobs`
    Description is not yet written.

:classad-attribute-def:`Machine`
    A string with the machine's fully qualified host name.

:classad-attribute-def:`MaxJobsRunningAll`
    An integer value representing the sum of all
    ``MaxJobsRunning<universe>`` values.

:classad-attribute-def:`MaxJobsRunning`
    An integer value representing largest number of currently running
    jobs ever seen under the universe which forms the attribute name,
    over the life of this *condor_collector* process. For example

    .. code-block:: condor-config

          MaxJobsRunningVanilla = 401

    identifies that the *condor_collector* saw 401 vanilla universe
    jobs currently running at one point in time, and that was the
    largest number it had encountered. ``<universe>`` is one of
    ``Unknown``, ``Vanilla``, ``Scheduler``, ``Java``,
    ``Parallel``, ``VM``, or ``Local``. There are other universes, but
    they are not listed here, as they represent ones that are no longer
    used in Condor.

:classad-attribute-def:`MyAddress`
    String with the IP and port address of the *condor_collector*
    daemon which is publishing this ClassAd.

:classad-attribute-def:`MyCurrentTime`
    The time, represented as the number of second elapsed since the Unix
    epoch (00:00:00 UTC, Jan 1, 1970), at which the *condor_schedd*
    daemon last sent a ClassAd update to the *condor_collector*.

:classad-attribute-def:`Name`
    The name of this resource; typically the same value as the
    ``Machine`` attribute, but could be customized by the site
    administrator. On SMP machines, the *condor_startd* will divide the
    CPUs up into separate slots, each with a unique name. These
    names will be of the form "slot#@full.hostname", for example,
    "slot1@vulture.cs.wisc.edu", which signifies slot number 1 from
    vulture.cs.wisc.edu.

:classad-attribute-def:`PeakForkWorkers`
    The maximum number of active forks of the Collector at any time
    since the Collector started. The Windows version of the Collector
    does not fork and will not have this statistic.

:classad-attribute-def:`PendingQueries`
    Number of queries pending that are waiting to fork.

:classad-attribute-def:`PendingQueriesPeak`
    Peak number of queries pending that are waiting to fork since
    collector startup or statistics reset.

:classad-attribute-def:`RunningJobs`
    Definition not yet written.

:classad-attribute-def:`StartdAds`
    The integer number of unique *condor_startd* daemon ClassAds
    counted at the most recent time the *condor_collector* updated its
    own ClassAd.

:classad-attribute-def:`StartdAdsPeak`
    The largest integer number of unique *condor_startd* daemon
    ClassAds seen at any one time, since the *condor_collector* began
    executing.

:classad-attribute-def:`SubmitterAds`
    The integer number of unique submitters counted at the most recent
    time the *condor_collector* updated its own ClassAd.

:classad-attribute-def:`SubmitterAdsPeak`
    The largest integer number of unique submitters seen at any one
    time, since the *condor_collector* began executing.

:classad-attribute-def:`UpdateInterval`
    Description is not yet written.

:classad-attribute-def:`UpdateSequenceNumber`
    An integer that begins at 0, and increments by one each time the
    same ClassAd is again advertised.

:classad-attribute-def:`UpdatesInitial`
    A Statistics attribute representing a count of unique ClassAds seen,
    over the lifetime of this *condor_collector*. Counts per ClassAd
    are advertised in attributes named by ClassAd type as
    ``UpdatesInitial_<ClassAd-Name>``. ``<ClassAd-Name>`` is each of
    ``CkptSrvr``, ``Collector``, ``Defrag``, ``Master``, ``Schedd``,
    ``Start``, ``StartdPvt``, and ``Submittor``.

:classad-attribute-def:`UpdatesLost`
    A Statistics attribute representing the count of updates lost, over
    the lifetime of this *condor_collector*. Counts per ClassAd are
    advertised in attributes named by ClassAd type as
    ``UpdatesLost_<ClassAd-Name>``. ``<ClassAd-Name>`` is each of
    ``CkptSrvr``, ``Collector``, ``Defrag``, ``Master``, ``Schedd``,
    ``Start``, ``StartdPvt``, and ``Submittor``.

:classad-attribute-def:`UpdatesLostMax`
    A Statistics attribute defining the largest number of updates lost
    at any point in time, over the lifetime of this *condor_collector*.
    ClassAd sequence numbers are used to detect lost ClassAds.

:classad-attribute-def:`UpdatesLostRatio`
    A Statistics attribute defining the floating point ratio of the
    total number of updates to the number of updates lost over the
    lifetime of this *condor_collector*. ClassAd sequence numbers are
    used to detect lost ClassAds. A value of 1 indicates that all
    ClassAds have been lost.

:classad-attribute-def:`UpdatesTotal`
    A Statistics attribute representing the count of the number of
    ClassAd updates received over the lifetime of this
    *condor_collector*. Counts per ClassAd are advertised in attributes
    named by ClassAd type as ``UpdatesTotal_<ClassAd-Name>``.
    ``<ClassAd-Name>`` is each of ``CkptSrvr``, ``Collector``,
    ``Defrag``, ``Master``, ``Schedd``, ``Start``, ``StartdPvt``, and
    ``Submittor``.