mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-29 11:55:04 +00:00
Reformat code with black and isort.
This commit is contained in:
@@ -7,7 +7,9 @@
|
||||
# It is licensed under the Apache 2.0 license (see LICENSES/Apache-2.0.txt in this collection)
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
from __future__ import absolute_import, division, print_function
|
||||
|
||||
|
||||
__metaclass__ = type
|
||||
|
||||
OBJ = {
|
||||
@@ -20,26 +22,17 @@ OBJ = {
|
||||
"tx_bytes": 1176,
|
||||
"tx_packets": 13,
|
||||
"tx_errors": 0,
|
||||
"tx_dropped": 0
|
||||
"tx_dropped": 0,
|
||||
},
|
||||
"cpu_stats": {
|
||||
"cpu_usage": {
|
||||
"total_usage": 157260874053,
|
||||
"percpu_usage": [
|
||||
52196306950,
|
||||
24118413549,
|
||||
53292684398,
|
||||
27653469156
|
||||
],
|
||||
"percpu_usage": [52196306950, 24118413549, 53292684398, 27653469156],
|
||||
"usage_in_kernelmode": 37140000000,
|
||||
"usage_in_usermode": 62140000000
|
||||
"usage_in_usermode": 62140000000,
|
||||
},
|
||||
"system_cpu_usage": 3.0881377e+14,
|
||||
"throttling_data": {
|
||||
"periods": 0,
|
||||
"throttled_periods": 0,
|
||||
"throttled_time": 0
|
||||
}
|
||||
"system_cpu_usage": 3.0881377e14,
|
||||
"throttling_data": {"periods": 0, "throttled_periods": 0, "throttled_time": 0},
|
||||
},
|
||||
"memory_stats": {
|
||||
"usage": 179314688,
|
||||
@@ -48,7 +41,7 @@ OBJ = {
|
||||
"active_anon": 90804224,
|
||||
"active_file": 2195456,
|
||||
"cache": 3096576,
|
||||
"hierarchical_memory_limit": 1.844674407371e+19,
|
||||
"hierarchical_memory_limit": 1.844674407371e19,
|
||||
"inactive_anon": 85516288,
|
||||
"inactive_file": 798720,
|
||||
"mapped_file": 2646016,
|
||||
@@ -73,73 +66,31 @@ OBJ = {
|
||||
"total_unevictable": 0,
|
||||
"total_writeback": 0,
|
||||
"unevictable": 0,
|
||||
"writeback": 0
|
||||
"writeback": 0,
|
||||
},
|
||||
"failcnt": 0,
|
||||
"limit": 8039038976
|
||||
"limit": 8039038976,
|
||||
},
|
||||
"blkio_stats": {
|
||||
"io_service_bytes_recursive": [
|
||||
{
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Read",
|
||||
"value": 72843264
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Write",
|
||||
"value": 4096
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Sync",
|
||||
"value": 4096
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Async",
|
||||
"value": 72843264
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Total",
|
||||
"value": 72847360
|
||||
}
|
||||
{"major": 8, "minor": 0, "op": "Read", "value": 72843264},
|
||||
{"major": 8, "minor": 0, "op": "Write", "value": 4096},
|
||||
{"major": 8, "minor": 0, "op": "Sync", "value": 4096},
|
||||
{"major": 8, "minor": 0, "op": "Async", "value": 72843264},
|
||||
{"major": 8, "minor": 0, "op": "Total", "value": 72847360},
|
||||
],
|
||||
"io_serviced_recursive": [
|
||||
{
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Read",
|
||||
"value": 10581
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Write",
|
||||
"value": 1
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Sync",
|
||||
"value": 1
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Async",
|
||||
"value": 10581
|
||||
}, {
|
||||
"major": 8,
|
||||
"minor": 0,
|
||||
"op": "Total",
|
||||
"value": 10582
|
||||
}
|
||||
{"major": 8, "minor": 0, "op": "Read", "value": 10581},
|
||||
{"major": 8, "minor": 0, "op": "Write", "value": 1},
|
||||
{"major": 8, "minor": 0, "op": "Sync", "value": 1},
|
||||
{"major": 8, "minor": 0, "op": "Async", "value": 10581},
|
||||
{"major": 8, "minor": 0, "op": "Total", "value": 10582},
|
||||
],
|
||||
"io_queue_recursive": [],
|
||||
"io_service_time_recursive": [],
|
||||
"io_wait_time_recursive": [],
|
||||
"io_merged_recursive": [],
|
||||
"io_time_recursive": [],
|
||||
"sectors_recursive": []
|
||||
}
|
||||
"sectors_recursive": [],
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user