Revision 1cc55342

b/lib/constants.py
2435 2435
# The version identifier for builtin data collectors
2436 2436
BUILTIN_DATA_COLLECTOR_VERSION = "B"
2437 2437

  
2438
# The reason trail opcode parameter name
2439
OPCODE_REASON = "reason"
2440

  
2441
# The source reasons for the execution of an OpCode
2442
OPCODE_REASON_SRC_CLIENT = "gnt:client"
2443
OPCODE_REASON_SRC_NODED = "gnt:daemon:noded"
2444
OPCODE_REASON_SRC_OPCODE = "gnt:opcode"
2445
OPCODE_REASON_SRC_RLIB2 = "gnt:library:rlib2"
2446
OPCODE_REASON_SRC_USER = "gnt:user"
2447

  
2448
OPCODE_REASON_SOURCES = compat.UniqueFrozenset([
2449
  OPCODE_REASON_SRC_CLIENT,
2450
  OPCODE_REASON_SRC_NODED,
2451
  OPCODE_REASON_SRC_OPCODE,
2452
  OPCODE_REASON_SRC_RLIB2,
2453
  OPCODE_REASON_SRC_USER,
2454
  ])
2455

  
2438 2456
# Do not re-export imported modules
2439 2457
del re, _vcsversion, _autoconf, socket, pathutils, compat

Also available in: Unified diff