Package ganeti :: Package storage :: Module drbd_info :: Class DRBD8Status
[hide private]
[frames] | no frames]

Class DRBD8Status

source code


A DRBD status representation class.

Note that this class is meant to be used to parse one of the entries returned from DRBD8Info._JoinLinesPerMinor.

Instance Methods [hide private]
 
__init__(self, procline)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__repr__(self)
repr(x)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  UNCONF_RE = re.compile(r"\s*[0-9]+:\s*cs:Unconfigured$")
  LINE_RE = re.compile(r"\s*[0-9]+:\s*cs:(\S+)\s+(?:st|ro):([^/]...
  SYNC_RE = re.compile(r"^.*\ssync'ed:\s*([0-9.]+)%.*" r"(?:\s|M...
  CS_UNCONFIGURED = "Unconfigured"
  CS_STANDALONE = "StandAlone"
  CS_WFCONNECTION = "WFConnection"
  CS_WFREPORTPARAMS = "WFReportParams"
  CS_CONNECTED = "Connected"
  CS_STARTINGSYNCS = "StartingSyncS"
  CS_STARTINGSYNCT = "StartingSyncT"
  CS_WFBITMAPS = "WFBitMapS"
  CS_WFBITMAPT = "WFBitMapT"
  CS_WFSYNCUUID = "WFSyncUUID"
  CS_SYNCSOURCE = "SyncSource"
  CS_SYNCTARGET = "SyncTarget"
  CS_PAUSEDSYNCS = "PausedSyncS"
  CS_PAUSEDSYNCT = "PausedSyncT"
  CSET_SYNC = compat.UniqueFrozenset([CS_WFREPORTPARAMS, CS_STAR...
  DS_DISKLESS = "Diskless"
  DS_ATTACHING = "Attaching"
  DS_FAILED = "Failed"
  DS_NEGOTIATING = "Negotiating"
  DS_INCONSISTENT = "Inconsistent"
  DS_OUTDATED = "Outdated"
  DS_DUNKNOWN = "DUnknown"
  DS_CONSISTENT = "Consistent"
  DS_UPTODATE = "UpToDate"
  RO_PRIMARY = "Primary"
  RO_SECONDARY = "Secondary"
  RO_UNKNOWN = "Unknown"
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, procline)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

Class Variable Details [hide private]

LINE_RE

Value:
re.compile(r"\s*[0-9]+:\s*cs:(\S+)\s+(?:st|ro):([^/]+)/(\S+)" r"\s+ds:\
([^/]+)/(\S+)\s+.*$")

SYNC_RE

Value:
re.compile(r"^.*\ssync'ed:\s*([0-9.]+)%.*" r"(?:\s|M)" r"finish: ([0-9\
]+):([0-9]+):([0-9]+)\s.*$")

CSET_SYNC

Value:
compat.UniqueFrozenset([CS_WFREPORTPARAMS, CS_STARTINGSYNCS, CS_STARTI\
NGSYNCT, CS_WFBITMAPS, CS_WFBITMAPT, CS_WFSYNCUUID, CS_SYNCSOURCE, CS_\
SYNCTARGET, CS_PAUSEDSYNCS, CS_PAUSEDSYNCT,])