├── .dockerignore ├── inputs.conf ├── examples ├── docker_dashboard_01.png ├── docker_dashboard_02.png └── docker_dashboad_per_container.png ├── Dockerfile ├── docker-compose.yml ├── LICENSE ├── docker_container.xml ├── README.md └── docker.xml /.dockerignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | -------------------------------------------------------------------------------- /inputs.conf: -------------------------------------------------------------------------------- 1 | [splunktcp://9997] 2 | -------------------------------------------------------------------------------- /examples/docker_dashboard_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/HEAD/examples/docker_dashboard_01.png -------------------------------------------------------------------------------- /examples/docker_dashboard_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/HEAD/examples/docker_dashboard_02.png -------------------------------------------------------------------------------- /examples/docker_dashboad_per_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/HEAD/examples/docker_dashboad_per_container.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM outcoldman/splunk:latest-light 2 | MAINTAINER Denis Gladkikh 3 | 4 | ADD docker.xml ${SPLUNK_BACKUP_DEFAULT_ETC}/etc/apps/search/local/data/ui/views/ 5 | ADD docker_container.xml ${SPLUNK_BACKUP_DEFAULT_ETC}/etc/apps/search/local/data/ui/views/ 6 | ADD inputs.conf ${SPLUNK_BACKUP_DEFAULT_ETC}/etc/apps/search/local/ 7 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | vsplunk: 2 | image: busybox 3 | volumes: 4 | - /opt/splunk/etc 5 | - /opt/splunk/var 6 | 7 | splunk: 8 | image: outcoldman/docker-stats-splunk:latest 9 | hostname: splunk 10 | volumes_from: 11 | - vsplunk 12 | ports: 13 | - 8000:8000 14 | 15 | dockerforwarder: 16 | image: outcoldman/docker-stats-splunk-forwarder:latest 17 | hostname: dockerforwarder 18 | volumes: 19 | - /var/run/docker.sock:/var/run/docker.sock:ro 20 | links: 21 | - splunk 22 | environment: 23 | - SPLUNK_FORWARD_SERVER=splunk:9997 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Denis Gladkikh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /docker_container.xml: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | 7 | 8 | source=docker_inspect | 9 | rename "Config.Image" as image_name | 10 | dedup Id | 11 | eval container_id=substr(mvindex(Id,0), 0, 12) | 12 | eval container_label=ltrim(mvindex(Name,0), "/") + " ("+mvindex(image_name,0)+" - " + container_id + ")" | 13 | table container_label, container_id | 14 | sort container_label 15 | 16 | -60m@m 17 | now 18 | 19 | container_label 20 | container_id 21 | 22 |
23 | 24 | 25 | 26 | Top processes 27 | 28 | 29 | sourcetype=DockerTop container_id=$selected_container_id$ | 30 | join [ 31 | search sourcetype=DockerTop container_id=$selected_container_id$ | 32 | head 1 | 33 | eval LatestEventsTime=_time | 34 | fields + LatestEventsTime 35 | ] | 36 | eval EventTime=_time | 37 | eval vsz=vsz/1024/1024 | 38 | stats sparkline(max(pcpu)) as pcpu_stats, sparkline(max(vsz)) as vsz_stats, first(pcpu) as pcpu, first(vsz) as vsz, first(etime) as etime, first(utime) as utime, first(EventTime) as et by pid, ppid, user, group, tty, comm, args, LatestEventsTime, nice | 39 | eval TimeDiff=LatestEventsTime-et | 40 | search TimeDiff=0 | 41 | sort -pcpu | 42 | table pid, ppid, user, group, nice, pcpu_stats, pcpu, vsz_stats, vsz, etime, utime, tty, comm, args 43 | 44 | -15m 45 | now 46 | 47 | 48 | 49 | 50 | 51 | 52 |
53 |
54 |
55 | 56 | 57 | 58 | Latest events (24 hours) 59 | 60 | 61 | sourcetype=DockerEvents NOT _raw="*top" | 62 | eval event=mvindex(split(_raw,") "), 1) | 63 | eval container_id=substr(_raw, 32, 12) | 64 | search container_id=$selected_container_id$ | 65 | join [ 66 | search source=docker_inspect | 67 | eval container_id=substr(mvindex(Id,0), 0, 12) | 68 | eval container_name=mvindex(Name,0) | 69 | table container_id, container_name | 70 | dedup container_id, container_name 71 | ] | 72 | table _time, container_name, event 73 | 74 | -24h@h 75 | now 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 |
90 |
91 |
92 |
93 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > IMPORTANT: Please look on our solutions for Collecting Logs and Metrics from Docker and Kuberenetes https://www.outcoldsolutions.com 2 | > Current repo is not supported. 3 | 4 | 5 | # Table of Contents 6 | 7 | - [Supported tags](#supported-tags) 8 | - [Introduction](#introduction) 9 | - [Version](#version) 10 | - [Installation](#installation) 11 | - [Quick Start](#quick-start) 12 | - [Configuration](#configuration) 13 | - [Examples](#examples) 14 | 15 | ## Supported tags 16 | 17 | - `latest` 18 | 19 | ## Introduction 20 | 21 | > NOTE: I'm working at Splunk, but this is not an official Splunk images. 22 | > I build them in my free time when I'm not at work. I have some knowledge 23 | > about Splunk, but you should think twice before putting them in 24 | > production. I run these images on my own home server just for 25 | > my personal needs. If you have any issues - feel free to open a 26 | > [bug](https://github.com/outcoldman/docker-stats-splunk/issues). 27 | 28 | Dockerfile to build Splunk Light image with predefined dashboards which work 29 | great with [docker-stats-splunk-forwarder](https://hub.docker.com/r/outcoldman/docker-stats-splunk-forwarder/). 30 | 31 | ## Version 32 | 33 | - Splunk Light: `latest` 34 | 35 | ## Installation 36 | 37 | Pull the image from the [docker registry](https://registry.hub.docker.com/u/outcoldman/docker-stats-splunk/). 38 | This is the recommended method of installation as it is easier to update image. 39 | These builds are performed by the **Docker Trusted Build** service. 40 | 41 | ```bash 42 | docker pull outcoldman/docker-stats-splunk:latest 43 | ``` 44 | 45 | Or you can pull latest version. 46 | 47 | ```bash 48 | docker pull outcoldman/docker-stats-splunk:latest 49 | ``` 50 | 51 | Alternately you can build the image locally. 52 | 53 | ```bash 54 | git clone https://github.com/outcoldman/docker-stats-splunk.git 55 | cd docker-stats-splunk 56 | docker build --tag="$USER/docker-stats-splunk" . 57 | ``` 58 | 59 | ## Quick Start 60 | 61 | To manually start container (see more details in description for [outcoldman/splunk](https://hub.docker.com/r/outcoldman/splunk/) 62 | and [outcoldman/docker-stats-splunk-forwarder](https://hub.docker.com/r/outcoldman/docker-stats-splunk-forwarder/) images) 63 | 64 | ```bash 65 | docker run --name vsplunk \ 66 | -v /opt/splunk/etc \ 67 | -v /opt/splunk/var \ 68 | busybox 69 | docker run --hostname splunk \ 70 | --name splunk \ 71 | --volumes-from=vsplunk \ 72 | -p 8000:8000 \ 73 | -d outcoldman/docker-stats-splunk:latest 74 | docker run --hostname dockerforwarder \ 75 | --name dockerforwarder \ 76 | --link=splunk \ 77 | --volume /var/run/docker.sock:/var/run/docker.sock:ro \ 78 | -e "SPLUNK_FORWARD_SERVER=splunk:9997" \ 79 | -d outcoldman/docker-stats-splunk-forwarder:latest 80 | ``` 81 | 82 | Or if you use [docker-compose](https://docs.docker.com/compose/) 83 | 84 | ```yaml 85 | vsplunk: 86 | image: busybox 87 | volumes: 88 | - /opt/splunk/etc 89 | - /opt/splunk/var 90 | 91 | splunk: 92 | image: outcoldman/docker-stats-splunk:latest 93 | hostname: splunk 94 | volumes_from: 95 | - vsplunk 96 | ports: 97 | - 8000:8000 98 | 99 | dockerforwarder: 100 | image: outcoldman/docker-stats-splunk-forwarder:latest 101 | hostname: dockerforwarder 102 | volumes: 103 | - /var/run/docker.sock:/var/run/docker.sock:ro 104 | links: 105 | - splunk 106 | environment: 107 | - SPLUNK_FORWARD_SERVER=splunk:9997 108 | ``` 109 | 110 | ## Configuration 111 | 112 | See [docker-splunk](https://github.com/outcoldman/docker-splunk) for more details. 113 | 114 | ## Examples 115 | 116 | Open Splunk (port `8000` is used by default for web interface), go to the `Dashboards` 117 | and you will see 2 Dashboards. 118 | 119 | ### Docker 120 | 121 | - CPU% (800% because of 8 cores) 122 | - Memory Usage (one line is the maximum limit, another is how much is used right now) 123 | - CPU usage per container 124 | - Memory Usage per container (% of limit) 125 | - Network Input per container 126 | - Network Output per container 127 | - Disk Input per container 128 | - Disk Output per container 129 | - Last Events (excluding `top` as I query it regularly) 130 | - Top processes from all container 131 | 132 | [![Splunk Docker Dashboard 01](https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/master/examples/docker_dashboard_01.png)](https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/master/examples/docker_dashboard_01.png) 133 | 134 | [![Splunk Docker Dashboard 02](https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/master/examples/docker_dashboard_02.png)](https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/master/examples/docker_dashboard_01.png) 135 | 136 | ### Docker container 137 | 138 | - Top processes 139 | - Last events 140 | 141 | [![Splunk Docker Dashboard per container](https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/master/examples/docker_dashboad_per_container.png)](https://raw.githubusercontent.com/outcoldman/docker-stats-splunk/master/examples/docker_dashboad_per_container.png) 142 | -------------------------------------------------------------------------------- /docker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | CPU Usage - Last 4 hours - Max in time 7 | 8 | 9 | source=docker_stats | 10 | eval cpu_percent_n=tonumber(rtrim(cpu_percent,"%")) | 11 | stats sum(cpu_percent_n) as cpu_percent_n by _time | 12 | timechart max(cpu_percent_n) 13 | 14 | -4h@m 15 | now 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 | Memory Usage (Gb) - Last 4 hours - Max in time 47 | 48 | 49 | source=docker_stats | 50 | eval mem_usage_a=split(mem_usage," ") | 51 | eval mem_usage_gb=case( 52 | mvindex(mem_usage_a,1)=="B",tonumber(mvindex(mem_usage_a,0))/1024/1024, 53 | mvindex(mem_usage_a,1)=="kB",tonumber(mvindex(mem_usage_a,0))/1024/1024, 54 | mvindex(mem_usage_a,1)=="MB",tonumber(mvindex(mem_usage_a,0))/1024, 55 | mvindex(mem_usage_a,1)=="GB",tonumber(mvindex(mem_usage_a,0)) 56 | ) | 57 | eval mem_limit_a=split(mem_limit," ") | 58 | eval mem_limit_gb=case( 59 | mvindex(mem_limit_a,1)=="B",tonumber(mvindex(mem_limit_a,0))/1024/1024, 60 | mvindex(mem_limit_a,1)=="kB",tonumber(mvindex(mem_limit_a,0))/1024/1024, 61 | mvindex(mem_limit_a,1)=="MB",tonumber(mvindex(mem_limit_a,0))/1024, 62 | mvindex(mem_limit_a,1)=="GB",tonumber(mvindex(mem_limit_a,0)) 63 | ) | 64 | stats sum(mem_usage_gb) as mem_usage_gb, sum(mem_limit_gb) as mem_limit_gb by _time | 65 | timechart max(mem_usage_gb), max(mem_limit_gb) 66 | 67 | -4h@m 68 | now 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 | CPU Usage Last 4 hours - Max by container 100 | 101 | 102 | source=docker_stats | 103 | join [ 104 | search source=docker_inspect | 105 | eval container_id=substr(mvindex(Id,0), 0, 12) | 106 | eval container_name=rtrim(ltrim(mvindex(Name,0), "/"), "_1") | 107 | table container_id, container_name | 108 | dedup container_id, container_name 109 | ] | 110 | timechart limit=20 max(cpu_percent) by container_name 111 | 112 | -4h@m 113 | now 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 | Memory Usage (100%) Last 4 hours - Max by container 146 | 147 | 148 | source=docker_stats | 149 | join [ 150 | search source=docker_inspect | 151 | eval container_id=substr(mvindex(Id,0), 0, 12) | 152 | eval container_name=rtrim(ltrim(mvindex(Name,0), "/"), "_1") | 153 | table container_id, container_name | 154 | dedup container_id, container_name 155 | ] | 156 | timechart limit=20 max(mem_percent) by container_name 157 | 158 | -4h@m 159 | now 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 | Network Input (Kb) Last 4 hours 191 | 192 | 193 | source=docker_stats | 194 | eval net_input_a=split(net_input," ") | 195 | eval net_int_mb=case( 196 | mvindex(net_input_a,1)=="B",tonumber(mvindex(net_input_a,0))/1024, 197 | mvindex(net_input_a,1)=="kB",tonumber(mvindex(net_input_a,0)), 198 | mvindex(net_input_a,1)=="MB",tonumber(mvindex(net_input_a,0))*1024, 199 | mvindex(net_input_a,1)=="GB",tonumber(mvindex(net_input_a,0))*1024*1024 200 | ) | 201 | join [ 202 | search source=docker_inspect | 203 | eval container_id=substr(mvindex(Id,0), 0, 12) | 204 | eval container_name=rtrim(ltrim(mvindex(Name,0), "/"), "_1") | 205 | table container_id, container_name | 206 | dedup container_id, container_name 207 | ] | 208 | stats avg(net_int_mb) as net_int_mb by _time, container_name | 209 | streamstats window=1 global=f current=f first(net_int_mb) as f_net_int_mb by container_name | 210 | eval delta=net_int_mb-f_net_int_mb | 211 | eval delta=if(delta<0,0,delta) | 212 | timechart limit=20 avg(delta) by container_name 213 | 214 | -4h@m 215 | now 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 | Network Output (Kb) Last 4 hours 243 | 244 | 245 | source=docker_stats | 246 | eval net_output_a=split(net_output," ") | 247 | eval net_out_mb=case( 248 | mvindex(net_output_a,1)=="B",tonumber(mvindex(net_output_a,0))/1024, 249 | mvindex(net_output_a,1)=="kB",tonumber(mvindex(net_output_a,0)), 250 | mvindex(net_output_a,1)=="MB",tonumber(mvindex(net_output_a,0))*1024, 251 | mvindex(net_output_a,1)=="GB",tonumber(mvindex(net_output_a,0))*1024*1024 252 | ) | 253 | join [ 254 | search source=docker_inspect | 255 | eval container_id=substr(mvindex(Id,0), 0, 12) | 256 | eval container_name=rtrim(ltrim(mvindex(Name,0), "/"), "_1") | 257 | table container_id, container_name | 258 | dedup container_id, container_name 259 | ] | 260 | stats avg(net_out_mb) as net_out_mb by _time, container_name | 261 | streamstats window=1 global=f current=f first(net_out_mb) as f_net_out_mb by container_name | 262 | eval delta=net_out_mb-f_net_out_mb | 263 | eval delta=if(delta<0,0,delta) | 264 | timechart limit=20 avg(delta) by container_name 265 | 266 | -4h@m 267 | now 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 | Block Input (Kb) Last 4 hours 297 | 298 | 299 | source=docker_stats | 300 | eval block_input_a=split(block_input," ") | 301 | eval block_int_mb=case( 302 | mvindex(block_input_a,1)=="B",tonumber(mvindex(block_input_a,0))/1024, 303 | mvindex(block_input_a,1)=="kB",tonumber(mvindex(block_input_a,0)), 304 | mvindex(block_input_a,1)=="MB",tonumber(mvindex(block_input_a,0))*1024, 305 | mvindex(block_input_a,1)=="GB",tonumber(mvindex(block_input_a,0))*1024*1024 306 | ) | 307 | join [ 308 | search source=docker_inspect | 309 | eval container_id=substr(mvindex(Id,0), 0, 12) | 310 | eval container_name=rtrim(ltrim(mvindex(Name,0), "/"), "_1") | 311 | table container_id, container_name | 312 | dedup container_id, container_name 313 | ] | 314 | stats avg(block_int_mb) as block_int_mb by _time, container_name | 315 | streamstats window=1 global=f current=f first(block_int_mb) as f_block_int_mb by container_name | 316 | eval delta=block_int_mb-f_block_int_mb | 317 | eval delta=if(delta<0,0,delta) | 318 | timechart limit=20 avg(delta) by container_name 319 | 320 | -4h@m 321 | now 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | Block Output (Kb) Last 4 hours 349 | 350 | 351 | source=docker_stats | 352 | eval block_output_a=split(block_output," ") | 353 | eval block_out_mb=case( 354 | mvindex(block_output_a,1)=="B",tonumber(mvindex(block_output_a,0))/1024, 355 | mvindex(block_output_a,1)=="kB",tonumber(mvindex(block_output_a,0)), 356 | mvindex(block_output_a,1)=="MB",tonumber(mvindex(block_output_a,0))*1024, 357 | mvindex(block_output_a,1)=="GB",tonumber(mvindex(block_output_a,0))*1024*1024 358 | ) | 359 | join [ 360 | search source=docker_inspect | 361 | eval container_id=substr(mvindex(Id,0), 0, 12) | 362 | eval container_name=rtrim(ltrim(mvindex(Name,0), "/"), "_1") | 363 | table container_id, container_name | 364 | dedup container_id, container_name 365 | ] | 366 | stats avg(block_out_mb) as block_out_mb by _time, container_name | 367 | streamstats window=1 global=f current=f first(block_out_mb) as f_block_out_mb by container_name | 368 | eval delta=block_out_mb-f_block_out_mb | 369 | eval delta=if(delta<0,0,delta) | 370 | timechart limit=20 avg(delta) by container_name 371 | 372 | -4h@m 373 | now 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | Last Events 403 | 404 | 405 | sourcetype=DockerEvents NOT _raw="*top" | 406 | head 100 | 407 | eval event=mvindex(split(_raw,") "), 1) | 408 | eval container_id=substr(_raw, 32, 12) | 409 | join [ 410 | search source=docker_inspect | 411 | eval container_id=substr(mvindex(Id,0), 0, 12) | 412 | eval container_name=mvindex(Name,0) | 413 | table container_id, container_name | 414 | dedup container_id, container_name 415 | ] | 416 | table _time, container_name, event 417 | 418 | -4h@m 419 | now 420 | 421 | 422 | 423 | 424 | 425 | 426 |
427 |
428 |
429 | 430 | 431 | 432 | Top (60 min) 433 | 434 | 435 | sourcetype=DockerTop | 436 | join [ 437 | search sourcetype=DockerTop | 438 | eval LatestEventsTime=_time | 439 | stats first(LatestEventsTime) as LatestEventsTime by container_id 440 | ] | 441 | eval EventTime=_time | 442 | eval vsz=vsz/1024/1024 | 443 | join [ 444 | search source=docker_inspect | 445 | eval container_id=substr(mvindex(Id,0), 0, 12) | 446 | eval container_name=mvindex(Name,0) | 447 | table container_id, container_name | 448 | dedup container_id, container_name 449 | ] | 450 | stats sparkline(max(pcpu)) as pcpu_stats, sparkline(max(vsz)) as vsz_stats, first(pcpu) as pcpu, first(vsz) as vsz, first(etime) as etime, first(utime) as utime, first(EventTime) as et by pid, ppid, user, group, tty, comm, args, container_name, LatestEventsTime | 451 | eval TimeDiff=LatestEventsTime-et | 452 | search TimeDiff=0 | 453 | sort -pcpu | 454 | table container_name, pid, ppid, user, group, nice, pcpu_stats, pcpu, vsz_stats, vsz, etime, utime, tty, comm, args 455 | 456 | -60m@m 457 | now 458 | 459 | 460 | 461 | 462 | 463 | 464 |
465 |
466 |
467 |
468 | --------------------------------------------------------------------------------