Skip to content

Commit

Permalink
update vertion to v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
eslam-gomaa committed May 10, 2023
1 parent 40252df commit 1182c84
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions kubePtop/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def argparse(self):
parser.add_argument('-s', '--sort-by-mem-usage', required=False, action='store_true', help='Sort top result by memory usage')
parser.add_argument('-o', '--option', type=str, required=False, choices=['cloud', 'json'], help='options for "kptop node||pod" (currently supported in "kptop node")')
parser.add_argument('-cj', '--colorize-json', required=False, action='store_true', help='Colorize Json output (with "-o json")')
# parser.add_argument('-q', '--query', type=str, required=False, help='options for "Run a custom query')

# parser.add_argument('-D', '--dashboard', type=str, required=False, metavar='', help='Specify a dashboard')
# parser.add_argument('-L', '--list-dashboards', required=False, action='store_true', help='List available dashboards')
Expand Down
2 changes: 1 addition & 1 deletion kubePtop/node_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,7 @@ def topNode(self, node=".*"):
"region": "",
"az": "",
"instance_type": "",
"cluster_env": "",
"cluster_env": "Unknown",
"node_group_capacity_type": "",
"node_group_name": "",
}
Expand Down
2 changes: 1 addition & 1 deletion kubePtop/pod_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ def watch_threads(self):
Markdown("Bytes Write", justify='center'),
Text.from_ansi(disk_write_bytes_graph.graph + f"\n {disk_write_bytes_graph.colors_description_str}"),
)
layout["body2_b_a"].update(Panel(group_disk_io, title="[b]Network IO", padding=(1, 1)))
layout["body2_b_a"].update(Panel(group_disk_io, title="[b]Disk IO", padding=(1, 1)))



Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name = 'kptop',
version = '0.0.5',
version = '0.0.6',
author = 'Eslam Gomaa',
# license = '<the license you chose>',
description = 'A CLI tool that provides Monitoring for Kubernetes resources on the terminal through Prometheus metircs',
Expand Down

0 comments on commit 1182c84

Please sign in to comment.