System status
Monitoring of disk, network and process statistics running on a server.
Example config file section for odin-control:
[adapter.status] module = odin_control.adapters.system_status.SystemStatusAdapter disks = /home/gnx91527 interfaces = p3p1, p3p2 processes = stFrameProcessor1.sh, stFrameProcessor3.sh
disks is a comma separated list of disk mounts to monitor. "/" is replaced with "_" for indexing the values. interfaces is a comma separated list of network interfaces to monitor. processes in a comma separated list of processes to monitor. Monitoring includes CPU and memory use.
Created on 20 June 2018
Alan Greer, OSL
DiskStatus
dataclass
Bases: ParameterTreeMixin
Dataclass to hold disk status information.
Source code in src/odin_control/adapters/system_status.py
InterfaceStatus
dataclass
Bases: ParameterTreeMixin
Dataclass to hold network interface status information.
Source code in src/odin_control/adapters/system_status.py
ParameterTreeMixin
Mixin class to provide ParameterTree functionality to dataclasses.
Source code in src/odin_control/adapters/system_status.py
__iter__()
as_tree()
Return a ParameterTree representation of the dataclass.
ProcessStatus
dataclass
Bases: ParameterTreeMixin
Dataclass to hold process status information.
Source code in src/odin_control/adapters/system_status.py
SystemStatusAdapter
Bases: ApiAdapter
System status adapter class for the ODIN server.
This adapter provides ODIN clients with information about the server disks, network and processes.
Source code in src/odin_control/adapters/system_status.py
SystemStatusController
Bases: BaseController
Class to monitor disks, network and processes running on a server.
Source code in src/odin_control/adapters/system_status.py
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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | |
__init__(options=None)
Initalise the Server Monitor.
Creates the parameter tree for status and process monitoring.
Source code in src/odin_control/adapters/system_status.py
add_disks(disks)
Add disks to monitor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
disks
|
the disk mount points to monitor |
required |
Source code in src/odin_control/adapters/system_status.py
add_interfaces(interfaces)
Add a new network interface to monitor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
interfaces
|
list of network interfaces to monitor |
required |
Source code in src/odin_control/adapters/system_status.py
add_processes(processes)
Add a new process to monitor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
processes
|
list of process names to monitor |
required |
Source code in src/odin_control/adapters/system_status.py
find_processes(process_name)
Find processes matching a name and return a list of process objects.
Returns a list of psutil process object
Source code in src/odin_control/adapters/system_status.py
find_processes_by_name(name)
Find processes by name.
Returns a list of process matching 'name' that is not this process (in the case where the process name was passed as an argument to this process).
Source code in src/odin_control/adapters/system_status.py
get(path, with_metadata=False)
monitor()
Executed at regular interval. Calls the specific monitoring methods.
monitor_disks()
Loops over disks and retrieves the usage statistics.
Source code in src/odin_control/adapters/system_status.py
monitor_network()
Loops over interfaces and retrieves the usage statistics.
Source code in src/odin_control/adapters/system_status.py
monitor_processes()
Loop over active processes and retrieves the statistics from them.
Source code in src/odin_control/adapters/system_status.py
update_loop()
Handle update loop tasks.
This method handles background update tasks executed periodically in the tornado IOLoop instance. This includes monitoring all status from the server.