unix/fiss

contrib/serialize.txt in master
Repositories | Summary | Log | Files | LICENSE

serialize.txt (1848B) download


 1FISS STATUS
 2===========
 3
 4       +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 5RUNIT: |          STS          |    STN    |    PID    |PS|WU|TR|SR|
 6       +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 7
 8       +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
 9FISS:  |          STS          |ST|RC|DC|  |    PID    |PS|WU|TR|SR|
10       +--+--+--+--+--+--+--+--+--+--+--+||+--+--+--+--+--+--+--+--+
11                                         vv
12                              +--+--+--+--+--+--+--+--+
13                              |  |DP|AC|TR|OC|RS| LEX |
14                              +--+--+--+--+--+--+--+--+
15
16STS = status-change unix seconds + 4611686018427387914ULL (tai, lower endian)
17STN = status-change unix nanoseconds (written, never read)
18ST  = state (see below)
19RC  = last return code (0 if not exited yet)
20DC  = death count
21DP  = is dependency of a service
22AC  = is active
23TR  = is terminating
24OC  = started once
25RS  = should restart
26LEX = last exit (0 = never exitted, 1 = normally, 2 = signaled)
27PID = current pid (big endian)
28PS  = is paused (int boolean)
29WU  = wants up ('u' if want up, 'd' if want down)
30TR  = was terminated (int boolean)
31SR  = state runit (0 = down, 1 = running, 2 = finishing; not available in daemontools, not read by fiss)
32
33STATE
34-----
35
36	inactive
37	dependency
38	setup
39	starting
40	active_foreground
41	active_background
42	active_dummy
43	stopping
44	finishing
45
460 = inactive - is not enabled and does nothing
471 = setup - ./setup is running
482 = starting - ./start is running
493 = active_foreground - ./run is running
504 = active_background - ./start is done and ./stop is not called yet
515 = active_dummy - service is considered as started but does nothing
526 = stopping - ./stop is running
537 = finishing - ./finish is running
548 = dead - was enabled but failed too much or another error