36c8ae8395
This tool gathers memory usage information for all kubernetes containers and system services displayed in cgroup memory, that are running on current host. This displays the total resident set size per namespace and container, the aggregate memory usage per system service, and the platform memory usage. Closes-Bug: 1886868 Signed-off-by: Enzo Candotti <enzo.candotti@windriver.com> Change-Id: Id130ed0d2794cdd555bdb068e8453cb8e9bd29d2
19 lines
442 B
Python
19 lines
442 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copyright (c) 2021 Wind River Systems, Inc.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
"""
|
|
import setuptools
|
|
setuptools.setup(
|
|
name='kube_memory',
|
|
version='1.0.0',
|
|
description='display services and kubernetes containers memory usage',
|
|
license='Apache-2.0',
|
|
packages=['kube_memory'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'kube-memory = kube_memory.kube_memory:main',
|
|
]}
|
|
)
|