├── .gitignore
├── LICENSE
├── README.md
├── docs
├── .gitignore
├── _config.yml
├── _includes
│ ├── _config.yml
│ ├── components
│ │ ├── aux_nav.html
│ │ ├── breadcrumbs.html
│ │ ├── children_nav.html
│ │ ├── footer.html
│ │ ├── header.html
│ │ ├── mermaid.html
│ │ ├── search_footer.html
│ │ ├── search_header.html
│ │ └── sidebar.html
│ ├── css
│ │ ├── activation.scss.liquid
│ │ ├── callouts.scss.liquid
│ │ ├── custom.scss.liquid
│ │ └── just-the-docs.scss.liquid
│ ├── favicon.html
│ ├── fix_linenos.html
│ ├── footer_custom.html
│ ├── head.html
│ ├── head_custom.html
│ ├── head_nav.html
│ ├── header_custom.html
│ ├── icons
│ │ ├── code_copy.html
│ │ ├── document.html
│ │ ├── expand.html
│ │ ├── external_link.html
│ │ ├── icons.html
│ │ ├── link.html
│ │ ├── menu.html
│ │ └── search.html
│ ├── js
│ │ └── custom.js
│ ├── lunr
│ │ ├── custom-data.json
│ │ └── custom-index.js
│ ├── mermaid_config.js
│ ├── nav.html
│ ├── nav_footer_custom.html
│ ├── search_placeholder_custom.html
│ ├── sorted_pages.html
│ ├── title.html
│ ├── toc.html
│ ├── toc_heading_custom.html
│ └── vendor
│ │ └── anchor_headings.html
├── _layouts
│ ├── about.html
│ ├── default.html
│ ├── home.html
│ ├── minimal.html
│ ├── page.html
│ ├── post.html
│ ├── table_wrappers.html
│ └── vendor
│ │ └── compress.html
├── _sass
│ ├── base.scss
│ ├── buttons.scss
│ ├── code.scss
│ ├── color_schemes
│ │ ├── dark.scss
│ │ ├── legacy_light.scss
│ │ └── light.scss
│ ├── content.scss
│ ├── custom
│ │ ├── custom.scss
│ │ └── setup.scss
│ ├── labels.scss
│ ├── layout.scss
│ ├── modules.scss
│ ├── navigation.scss
│ ├── print.scss
│ ├── search.scss
│ ├── skiptomain.scss
│ ├── support
│ │ ├── _variables.scss
│ │ ├── mixins
│ │ │ ├── _buttons.scss
│ │ │ ├── _layout.scss
│ │ │ ├── _typography.scss
│ │ │ └── mixins.scss
│ │ └── support.scss
│ ├── tables.scss
│ ├── typography.scss
│ ├── utilities
│ │ ├── _colors.scss
│ │ ├── _layout.scss
│ │ ├── _lists.scss
│ │ ├── _spacing.scss
│ │ ├── _typography.scss
│ │ └── utilities.scss
│ └── vendor
│ │ ├── OneDarkJekyll
│ │ ├── LICENSE
│ │ └── syntax.scss
│ │ ├── OneLightJekyll
│ │ ├── LICENSE
│ │ └── syntax.scss
│ │ └── normalize.scss
│ │ ├── README.md
│ │ └── normalize.scss
├── commands
│ ├── DataTypes.md
│ ├── index.md
│ └── yaml_structure.md
├── css
│ └── custom.css
├── dashboards
│ ├── DataTypes.md
│ ├── index.md
│ └── yaml_structure.md
├── images
│ ├── dashboard-pods.png
│ ├── dashboard-pvcs.png
│ └── dashboard-strimzi-kafka-test.png
├── index.md
└── installation.md
├── examples
├── commands
│ ├── pods-wide.yml
│ ├── pods.yml
│ └── pvcs.yml
├── dashboards
│ ├── pods.yml
│ ├── pvcs.yml
│ └── strimzi-kafka-test.yml
└── dataSources
│ └── prometheus_http.yml
├── kptop_tool.py
├── kubePtop
├── __init__.py
├── ascii_graph.py
├── cli_args.py
├── colors.py
├── command_run.py
├── command_yaml_loader.py
├── dashboard_monitor.py
├── dashboard_yaml_loader.py
├── global_attrs.py
├── helper.py
├── logging.py
├── old
│ ├── cli.old.py
│ ├── cli.py
│ ├── node_metrics.py
│ ├── node_monitor.py
│ ├── pod_metrics.py
│ ├── pod_monitor.py
│ └── prometheus_http.yml
├── read_env.py
├── requirements.txt
├── session.py
└── tests.to.delete
│ ├── command.yaml
│ ├── command2.yaml
│ ├── dashboard.yaml
│ ├── data_types.py
│ ├── test.py
│ ├── test2.py
│ └── test3.py
└── setup.py
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/.gitignore
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/README.md
--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | _site
--------------------------------------------------------------------------------
/docs/_config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_config.yml
--------------------------------------------------------------------------------
/docs/_includes/_config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/_config.yml
--------------------------------------------------------------------------------
/docs/_includes/components/aux_nav.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/aux_nav.html
--------------------------------------------------------------------------------
/docs/_includes/components/breadcrumbs.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/breadcrumbs.html
--------------------------------------------------------------------------------
/docs/_includes/components/children_nav.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/children_nav.html
--------------------------------------------------------------------------------
/docs/_includes/components/footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/footer.html
--------------------------------------------------------------------------------
/docs/_includes/components/header.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/header.html
--------------------------------------------------------------------------------
/docs/_includes/components/mermaid.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/mermaid.html
--------------------------------------------------------------------------------
/docs/_includes/components/search_footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/search_footer.html
--------------------------------------------------------------------------------
/docs/_includes/components/search_header.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/search_header.html
--------------------------------------------------------------------------------
/docs/_includes/components/sidebar.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/components/sidebar.html
--------------------------------------------------------------------------------
/docs/_includes/css/activation.scss.liquid:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/css/activation.scss.liquid
--------------------------------------------------------------------------------
/docs/_includes/css/callouts.scss.liquid:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/css/callouts.scss.liquid
--------------------------------------------------------------------------------
/docs/_includes/css/custom.scss.liquid:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/css/custom.scss.liquid
--------------------------------------------------------------------------------
/docs/_includes/css/just-the-docs.scss.liquid:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/css/just-the-docs.scss.liquid
--------------------------------------------------------------------------------
/docs/_includes/favicon.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/favicon.html
--------------------------------------------------------------------------------
/docs/_includes/fix_linenos.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/fix_linenos.html
--------------------------------------------------------------------------------
/docs/_includes/footer_custom.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/footer_custom.html
--------------------------------------------------------------------------------
/docs/_includes/head.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/head.html
--------------------------------------------------------------------------------
/docs/_includes/head_custom.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/_includes/head_nav.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/head_nav.html
--------------------------------------------------------------------------------
/docs/_includes/header_custom.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/_includes/icons/code_copy.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/code_copy.html
--------------------------------------------------------------------------------
/docs/_includes/icons/document.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/document.html
--------------------------------------------------------------------------------
/docs/_includes/icons/expand.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/expand.html
--------------------------------------------------------------------------------
/docs/_includes/icons/external_link.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/external_link.html
--------------------------------------------------------------------------------
/docs/_includes/icons/icons.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/icons.html
--------------------------------------------------------------------------------
/docs/_includes/icons/link.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/link.html
--------------------------------------------------------------------------------
/docs/_includes/icons/menu.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/menu.html
--------------------------------------------------------------------------------
/docs/_includes/icons/search.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/icons/search.html
--------------------------------------------------------------------------------
/docs/_includes/js/custom.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/_includes/lunr/custom-data.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/_includes/lunr/custom-index.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/_includes/mermaid_config.js:
--------------------------------------------------------------------------------
1 | // _includes/mermaid_config.js
2 | {
3 | theme: "forest"
4 | }
--------------------------------------------------------------------------------
/docs/_includes/nav.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/nav.html
--------------------------------------------------------------------------------
/docs/_includes/nav_footer_custom.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/_includes/search_placeholder_custom.html:
--------------------------------------------------------------------------------
1 | Search {{site.title}}
2 |
--------------------------------------------------------------------------------
/docs/_includes/sorted_pages.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/sorted_pages.html
--------------------------------------------------------------------------------
/docs/_includes/title.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/title.html
--------------------------------------------------------------------------------
/docs/_includes/toc.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/toc.html
--------------------------------------------------------------------------------
/docs/_includes/toc_heading_custom.html:
--------------------------------------------------------------------------------
1 |
Table of contents
2 |
--------------------------------------------------------------------------------
/docs/_includes/vendor/anchor_headings.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_includes/vendor/anchor_headings.html
--------------------------------------------------------------------------------
/docs/_layouts/about.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
--------------------------------------------------------------------------------
/docs/_layouts/default.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_layouts/default.html
--------------------------------------------------------------------------------
/docs/_layouts/home.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
--------------------------------------------------------------------------------
/docs/_layouts/minimal.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_layouts/minimal.html
--------------------------------------------------------------------------------
/docs/_layouts/page.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
--------------------------------------------------------------------------------
/docs/_layouts/post.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | {{ content }}
6 |
--------------------------------------------------------------------------------
/docs/_layouts/table_wrappers.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_layouts/table_wrappers.html
--------------------------------------------------------------------------------
/docs/_layouts/vendor/compress.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_layouts/vendor/compress.html
--------------------------------------------------------------------------------
/docs/_sass/base.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/base.scss
--------------------------------------------------------------------------------
/docs/_sass/buttons.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/buttons.scss
--------------------------------------------------------------------------------
/docs/_sass/code.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/code.scss
--------------------------------------------------------------------------------
/docs/_sass/color_schemes/dark.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/color_schemes/dark.scss
--------------------------------------------------------------------------------
/docs/_sass/color_schemes/legacy_light.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/color_schemes/legacy_light.scss
--------------------------------------------------------------------------------
/docs/_sass/color_schemes/light.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/color_schemes/light.scss
--------------------------------------------------------------------------------
/docs/_sass/content.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/content.scss
--------------------------------------------------------------------------------
/docs/_sass/custom/custom.scss:
--------------------------------------------------------------------------------
1 | // custom SCSS (or CSS) goes here
2 |
--------------------------------------------------------------------------------
/docs/_sass/custom/setup.scss:
--------------------------------------------------------------------------------
1 | // custom setup code goes here
2 |
--------------------------------------------------------------------------------
/docs/_sass/labels.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/labels.scss
--------------------------------------------------------------------------------
/docs/_sass/layout.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/layout.scss
--------------------------------------------------------------------------------
/docs/_sass/modules.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/modules.scss
--------------------------------------------------------------------------------
/docs/_sass/navigation.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/navigation.scss
--------------------------------------------------------------------------------
/docs/_sass/print.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/print.scss
--------------------------------------------------------------------------------
/docs/_sass/search.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/search.scss
--------------------------------------------------------------------------------
/docs/_sass/skiptomain.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/skiptomain.scss
--------------------------------------------------------------------------------
/docs/_sass/support/_variables.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/support/_variables.scss
--------------------------------------------------------------------------------
/docs/_sass/support/mixins/_buttons.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/support/mixins/_buttons.scss
--------------------------------------------------------------------------------
/docs/_sass/support/mixins/_layout.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/support/mixins/_layout.scss
--------------------------------------------------------------------------------
/docs/_sass/support/mixins/_typography.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/support/mixins/_typography.scss
--------------------------------------------------------------------------------
/docs/_sass/support/mixins/mixins.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/support/mixins/mixins.scss
--------------------------------------------------------------------------------
/docs/_sass/support/support.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/support/support.scss
--------------------------------------------------------------------------------
/docs/_sass/tables.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/tables.scss
--------------------------------------------------------------------------------
/docs/_sass/typography.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/typography.scss
--------------------------------------------------------------------------------
/docs/_sass/utilities/_colors.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/utilities/_colors.scss
--------------------------------------------------------------------------------
/docs/_sass/utilities/_layout.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/utilities/_layout.scss
--------------------------------------------------------------------------------
/docs/_sass/utilities/_lists.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/utilities/_lists.scss
--------------------------------------------------------------------------------
/docs/_sass/utilities/_spacing.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/utilities/_spacing.scss
--------------------------------------------------------------------------------
/docs/_sass/utilities/_typography.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/utilities/_typography.scss
--------------------------------------------------------------------------------
/docs/_sass/utilities/utilities.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/utilities/utilities.scss
--------------------------------------------------------------------------------
/docs/_sass/vendor/OneDarkJekyll/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/vendor/OneDarkJekyll/LICENSE
--------------------------------------------------------------------------------
/docs/_sass/vendor/OneDarkJekyll/syntax.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/vendor/OneDarkJekyll/syntax.scss
--------------------------------------------------------------------------------
/docs/_sass/vendor/OneLightJekyll/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/vendor/OneLightJekyll/LICENSE
--------------------------------------------------------------------------------
/docs/_sass/vendor/OneLightJekyll/syntax.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/vendor/OneLightJekyll/syntax.scss
--------------------------------------------------------------------------------
/docs/_sass/vendor/normalize.scss/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/vendor/normalize.scss/README.md
--------------------------------------------------------------------------------
/docs/_sass/vendor/normalize.scss/normalize.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/_sass/vendor/normalize.scss/normalize.scss
--------------------------------------------------------------------------------
/docs/commands/DataTypes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/commands/DataTypes.md
--------------------------------------------------------------------------------
/docs/commands/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/commands/index.md
--------------------------------------------------------------------------------
/docs/commands/yaml_structure.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/commands/yaml_structure.md
--------------------------------------------------------------------------------
/docs/css/custom.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/css/custom.css
--------------------------------------------------------------------------------
/docs/dashboards/DataTypes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/dashboards/DataTypes.md
--------------------------------------------------------------------------------
/docs/dashboards/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/dashboards/index.md
--------------------------------------------------------------------------------
/docs/dashboards/yaml_structure.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/dashboards/yaml_structure.md
--------------------------------------------------------------------------------
/docs/images/dashboard-pods.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/images/dashboard-pods.png
--------------------------------------------------------------------------------
/docs/images/dashboard-pvcs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/images/dashboard-pvcs.png
--------------------------------------------------------------------------------
/docs/images/dashboard-strimzi-kafka-test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/images/dashboard-strimzi-kafka-test.png
--------------------------------------------------------------------------------
/docs/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/index.md
--------------------------------------------------------------------------------
/docs/installation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/docs/installation.md
--------------------------------------------------------------------------------
/examples/commands/pods-wide.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/examples/commands/pods-wide.yml
--------------------------------------------------------------------------------
/examples/commands/pods.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/examples/commands/pods.yml
--------------------------------------------------------------------------------
/examples/commands/pvcs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/examples/commands/pvcs.yml
--------------------------------------------------------------------------------
/examples/dashboards/pods.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/examples/dashboards/pods.yml
--------------------------------------------------------------------------------
/examples/dashboards/pvcs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/examples/dashboards/pvcs.yml
--------------------------------------------------------------------------------
/examples/dashboards/strimzi-kafka-test.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/examples/dashboards/strimzi-kafka-test.yml
--------------------------------------------------------------------------------
/examples/dataSources/prometheus_http.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/examples/dataSources/prometheus_http.yml
--------------------------------------------------------------------------------
/kptop_tool.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kptop_tool.py
--------------------------------------------------------------------------------
/kubePtop/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/kubePtop/ascii_graph.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/ascii_graph.py
--------------------------------------------------------------------------------
/kubePtop/cli_args.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/cli_args.py
--------------------------------------------------------------------------------
/kubePtop/colors.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/colors.py
--------------------------------------------------------------------------------
/kubePtop/command_run.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/command_run.py
--------------------------------------------------------------------------------
/kubePtop/command_yaml_loader.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/command_yaml_loader.py
--------------------------------------------------------------------------------
/kubePtop/dashboard_monitor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/dashboard_monitor.py
--------------------------------------------------------------------------------
/kubePtop/dashboard_yaml_loader.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/dashboard_yaml_loader.py
--------------------------------------------------------------------------------
/kubePtop/global_attrs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/global_attrs.py
--------------------------------------------------------------------------------
/kubePtop/helper.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/helper.py
--------------------------------------------------------------------------------
/kubePtop/logging.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/logging.py
--------------------------------------------------------------------------------
/kubePtop/old/cli.old.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/old/cli.old.py
--------------------------------------------------------------------------------
/kubePtop/old/cli.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/old/cli.py
--------------------------------------------------------------------------------
/kubePtop/old/node_metrics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/old/node_metrics.py
--------------------------------------------------------------------------------
/kubePtop/old/node_monitor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/old/node_monitor.py
--------------------------------------------------------------------------------
/kubePtop/old/pod_metrics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/old/pod_metrics.py
--------------------------------------------------------------------------------
/kubePtop/old/pod_monitor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/old/pod_monitor.py
--------------------------------------------------------------------------------
/kubePtop/old/prometheus_http.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/old/prometheus_http.yml
--------------------------------------------------------------------------------
/kubePtop/read_env.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/read_env.py
--------------------------------------------------------------------------------
/kubePtop/requirements.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/requirements.txt
--------------------------------------------------------------------------------
/kubePtop/session.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/session.py
--------------------------------------------------------------------------------
/kubePtop/tests.to.delete/command.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/tests.to.delete/command.yaml
--------------------------------------------------------------------------------
/kubePtop/tests.to.delete/command2.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/tests.to.delete/command2.yaml
--------------------------------------------------------------------------------
/kubePtop/tests.to.delete/dashboard.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/tests.to.delete/dashboard.yaml
--------------------------------------------------------------------------------
/kubePtop/tests.to.delete/data_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/tests.to.delete/data_types.py
--------------------------------------------------------------------------------
/kubePtop/tests.to.delete/test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/tests.to.delete/test.py
--------------------------------------------------------------------------------
/kubePtop/tests.to.delete/test2.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/tests.to.delete/test2.py
--------------------------------------------------------------------------------
/kubePtop/tests.to.delete/test3.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/kubePtop/tests.to.delete/test3.py
--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eslam-gomaa/kptop/HEAD/setup.py
--------------------------------------------------------------------------------