{"id":25050597,"url":"https://github.com/steadybit/steadybit-debug","last_synced_at":"2025-04-14T06:41:17.331Z","repository":{"id":50303764,"uuid":"517572772","full_name":"steadybit/steadybit-debug","owner":"steadybit","description":"steadybit-debug collects data from installed Steadybit platforms and agents to aid in customer support","archived":false,"fork":false,"pushed_at":"2025-01-17T06:57:26.000Z","size":349,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-29T05:32:35.205Z","etag":null,"topics":["chaos-engineering","debugging","steadybit"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/steadybit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-07-25T08:03:59.000Z","updated_at":"2025-01-17T06:57:27.000Z","dependencies_parsed_at":"2023-12-21T16:09:57.810Z","dependency_job_id":"50d6d548-0088-4846-963a-f27be8afda2c","html_url":"https://github.com/steadybit/steadybit-debug","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steadybit%2Fsteadybit-debug","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steadybit%2Fsteadybit-debug/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steadybit%2Fsteadybit-debug/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steadybit%2Fsteadybit-debug/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/steadybit","download_url":"https://codeload.github.com/steadybit/steadybit-debug/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237446285,"owners_count":19311293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chaos-engineering","debugging","steadybit"],"created_at":"2025-02-06T09:16:57.384Z","updated_at":"2025-02-06T09:16:57.914Z","avatar_url":"https://github.com/steadybit.png","language":"Go","readme":"[![CI](https://github.com/steadybit/steadybit-debug/actions/workflows/test.yml/badge.svg)](https://github.com/steadybit/steadybit-debug/actions/workflows/test.yml)\n[![Release](https://github.com/steadybit/steadybit-debug/actions/workflows/release.yml/badge.svg)](https://github.com/steadybit/steadybit-debug/actions/workflows/release.yml)\n\n# steadybit-debug\n\nsteadybit-debug collects data from installed Steadybit platforms and\nagents to aid in customer support. It helps shorten feedback cycles and\navoids frequent back and forth between Steadybit and its customers.\n\n## Prerequisites\n\n- `kubectl` needs to be available on the `$PATH` and configured with the correct context.\n- `curl` needs to be available on the `$PATH`.\n\n\n## Installation\n\nsteadybit-debug is available on Linux, macOS and Windows platforms.\n\n - Binaries for Linux, Windows and macOS are available as tarballs in the [releases](https://github.com/steadybit/steadybit-debug/releases) page.\n - Via Homebrew for macOS or LinuxBrew for Linux\n    ```\n    brew tap steadybit/homebrew-steadybit-debug\n    brew install steadybit-debug\n    ```\n\n## Configuration\n\nsteadybit-debug has sensible defaults that will work out-of-the-box for\nusers of our Helm charts that haven't renamed the namespaces, deployments\nor daemon sets. If you made changes, you could configure steadybit-debug\nto support your specific setup.\n\n### Via Command-Line Arguments\n\nCommand-line arguments can be used to change the most common configuration\noptions. The following snippet show how to change the references to\nKubernetes workloads. Refer to `steadybit-debug --help` for more\ninformation.\n\n```\nsteadybit-debug --platform-deployment platform \\\n   --platform-namespace platform \\\n   --agent-namespace steadybit-agent-to-prod\n```\n\n### Via Configuration Files\n\nConfiguration is supported through a file called `steadybit-debug.yml`\nexisting within your current working directory.\n\n```yaml\nplatform:\n  namespace: chaos-eng\n  deployment: platform\n  exportDatabase: false\nagent:\n  namespace: chaos-eng\n```\n\nTo learn more about all the available configuration options please inspect\nthe Go `Config` [struct definition](https://github.com/steadybit/steadybit-debug/blob/main/config/config.go#L11).\n\n## MTLS Support for extensions\nIf you configured your extensions to use mTLS between agent and extension, you need to provide the cert and key files to steadybit-debug. You can do this by adding the following to your `steadybit-debug.yml` file:\n\n```yaml\nplatform:\n  namespace: chaos-eng\n  deployment: platform\n  exportDatabase: false\nagent:\n  namespace: chaos-eng\ntls:\n   certChainFile: /Path/to/tls.crt\n   certKeyFile: /Path/to/tls.key\n```\nor provide the cert and key via command line arguments:\n\n```\nsteadybit-debug --platform-deployment platform \\\n   --platform-namespace platform \\\n   --agent-namespace steadybit-agent-to-prod \\\n   --cert-chain-file /Path/to/tls.crt \\\n   --cert-key-file= /Path/to/tls.key\n```\n\n## Database Export support\nIf you need to export the database of your platform, you can do this by adding the following to your `steadybit-debug.yml` file:\n\n```yaml\nplatform:\n  namespace: chaos-eng\n  deployment: platform\n  exportDatabase: true\n```\nThis is disabled by default.\n\n## Execution\n\nYou execute the tool via `steadybit-debug`. Once executed, you will find that the\ncommand collects debugging information within the current working directory.\nPlease send the generated .tar.gz file to your Steadybit contacts.\n\n![Image showing the execution of the steadybit-debug command on a terminal. Log lines are giving an overview about the expected behavior of the tool.](./example-execution.png)\n\n## Collected Information\n\nThis tool gathers data from your Kubernetes server and the admin endpoints of\nthe Steadybit platform, agents and extensions. The following listing shows an overview of the\ngenerated files (as of 2024-02-08). Feel free to take a closer look at the data\nit collected for your installation!\n\n```\n.\n├── agent\n│   ├── config.yaml\n│   ├── description.txt\n│   └── pods\n│       └── steadybit-agent-0\n│           ├── actions_metadata.yml\n│           ├── advice_definition.yml\n│           ├── config.yml\n│           ├── description.txt\n│           ├── discovery_info.yml\n│           ├── enrichtment_rules.yml\n│           ├── env.yml\n│           ├── extension_connection_test_0.txt\n│           ├── extension_connection_test_1.txt\n│           ├── extension_connection_test_10.txt\n│           ├── extension_connection_test_11.txt\n│           ├── extension_connection_test_12.txt\n│           ├── extension_connection_test_13.txt\n│           ├── extension_connection_test_14.txt\n│           ├── extension_connection_test_15.txt\n│           ├── extension_connection_test_16.txt\n│           ├── extension_connection_test_17.txt\n│           ├── extension_connection_test_18.txt\n│           ├── extension_connection_test_2.txt\n│           ├── extension_connection_test_3.txt\n│           ├── extension_connection_test_4.txt\n│           ├── extension_connection_test_5.txt\n│           ├── extension_connection_test_6.txt\n│           ├── extension_connection_test_7.txt\n│           ├── extension_connection_test_8.txt\n│           ├── extension_connection_test_9.txt\n│           ├── health.yml\n│           ├── info.yml\n│           ├── logs.txt\n│           ├── logs_previous.txt\n│           ├── platform_connection_test.txt\n│           ├── platform_traceroute_test.txt\n│           ├── platform_websocat_connection_test.txt\n│           ├── platform_websocket_http1_connection_test.txt\n│           ├── platform_websocket_http2_connection_test.txt\n│           ├── prometheus_metrics.0.txt\n│           ├── prometheus_metrics.1.txt\n│           ├── prometheus_metrics.2.txt\n│           ├── prometheus_metrics.3.txt\n│           ├── prometheus_metrics.4.txt\n│           ├── prometheus_metrics.5.txt\n│           ├── prometheus_metrics.6.txt\n│           ├── prometheus_metrics.7.txt\n│           ├── prometheus_metrics.8.txt\n│           ├── prometheus_metrics.9.txt\n│           ├── target_stats.yml\n│           ├── target_type_description.yml\n│           ├── targets.yml\n│           ├── threaddump.yml\n│           ├── top.0.txt\n│           ├── top.1.txt\n│           ├── top.2.txt\n│           ├── top.3.txt\n│           ├── top.4.txt\n│           ├── top.5.txt\n│           ├── top.6.txt\n│           ├── top.7.txt\n│           ├── top.8.txt\n│           └── top.9.txt\n├── debugging_config.yaml\n├── extensions\n│   └── steadybit-agent\n│       ├── steadybit-agent-extension-container\n│       │   ├── config.yaml\n│       │   ├── description.txt\n│       │   └── pods\n│       │       ├── steadybit-agent-extension-container-hdmb6\n│       │       │   ├── config.yml\n│       │       │   ├── description.txt\n│       │       │   ├── http\n│       │       │   │   ├── GET__.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.container_discovery.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.container_discovery_discovered-targets.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.container_discovery_target-description.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.fill_disk.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_bandwidth.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_blackhole.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_block_dns.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_delay.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_package_corruption.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_package_loss.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.pause.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stop.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stress_cpu.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stress_io.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stress_mem.yml\n│       │       │   │   └── GET__discovery_attributes.yml\n│       │       │   ├── logs.txt\n│       │       │   ├── logs_previous.txt\n│       │       │   ├── top.0.txt\n│       │       │   ├── top.1.txt\n│       │       │   └── top.2.txt\n│       │       ├── steadybit-agent-extension-container-x6hq6\n│       │       │   ├── config.yml\n│       │       │   ├── description.txt\n│       │       │   ├── http\n│       │       │   │   ├── GET__.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.container_discovery.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.container_discovery_discovered-targets.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.container_discovery_target-description.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.fill_disk.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_bandwidth.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_blackhole.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_block_dns.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_delay.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_package_corruption.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.network_package_loss.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.pause.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stop.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stress_cpu.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stress_io.yml\n│       │       │   │   ├── GET__com.steadybit.extension_container.stress_mem.yml\n│       │       │   │   └── GET__discovery_attributes.yml\n│       │       │   ├── logs.txt\n│       │       │   ├── logs_previous.txt\n│       │       │   ├── top.0.txt\n│       │       │   ├── top.1.txt\n│       │       │   └── top.2.txt\n│       │       └── steadybit-agent-extension-container-xccpk\n│       │           ├── config.yml\n│       │           ├── description.txt\n│       │           ├── http\n│       │           │   ├── GET__.yml\n│       │           │   ├── GET__com.steadybit.extension_container.container_discovery.yml\n│       │           │   ├── GET__com.steadybit.extension_container.container_discovery_discovered-targets.yml\n│       │           │   ├── GET__com.steadybit.extension_container.container_discovery_target-description.yml\n│       │           │   ├── GET__com.steadybit.extension_container.fill_disk.yml\n│       │           │   ├── GET__com.steadybit.extension_container.network_bandwidth.yml\n│       │           │   ├── GET__com.steadybit.extension_container.network_blackhole.yml\n│       │           │   ├── GET__com.steadybit.extension_container.network_block_dns.yml\n│       │           │   ├── GET__com.steadybit.extension_container.network_delay.yml\n│       │           │   ├── GET__com.steadybit.extension_container.network_package_corruption.yml\n│       │           │   ├── GET__com.steadybit.extension_container.network_package_loss.yml\n│       │           │   ├── GET__com.steadybit.extension_container.pause.yml\n│       │           │   ├── GET__com.steadybit.extension_container.stop.yml\n│       │           │   ├── GET__com.steadybit.extension_container.stress_cpu.yml\n│       │           │   ├── GET__com.steadybit.extension_container.stress_io.yml\n│       │           │   ├── GET__com.steadybit.extension_container.stress_mem.yml\n│       │           │   └── GET__discovery_attributes.yml\n│       │           ├── logs.txt\n│       │           ├── logs_previous.txt\n│       │           ├── top.0.txt\n│       │           ├── top.1.txt\n│       │           └── top.2.txt\n│       ├── steadybit-agent-extension-host\n│       │   ├── config.yaml\n│       │   ├── description.txt\n│       │   └── pods\n│       │       ├── steadybit-agent-extension-host-74njx\n│       │       │   ├── config.yml\n│       │       │   ├── description.txt\n│       │       │   ├── http\n│       │       │   │   ├── GET__.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.fill_disk.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.host_discovery.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.host_discovery_discovered-targets.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.host_discovery_target-description.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_bandwidth.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_blackhole.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_block_dns.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_delay.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_package_corruption.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_package_loss.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.shutdown.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stop-process.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stress-cpu.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stress-io.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stress-mem.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.timetravel.yml\n│       │       │   │   └── GET__discovery_attributes.yml\n│       │       │   ├── logs.txt\n│       │       │   ├── logs_previous.txt\n│       │       │   ├── top.0.txt\n│       │       │   ├── top.1.txt\n│       │       │   └── top.2.txt\n│       │       ├── steadybit-agent-extension-host-bg529\n│       │       │   ├── config.yml\n│       │       │   ├── description.txt\n│       │       │   ├── http\n│       │       │   │   ├── GET__.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.fill_disk.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.host_discovery.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.host_discovery_discovered-targets.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.host_discovery_target-description.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_bandwidth.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_blackhole.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_block_dns.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_delay.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_package_corruption.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.network_package_loss.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.shutdown.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stop-process.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stress-cpu.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stress-io.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.stress-mem.yml\n│       │       │   │   ├── GET__com.steadybit.extension_host.timetravel.yml\n│       │       │   │   └── GET__discovery_attributes.yml\n│       │       │   ├── logs.txt\n│       │       │   ├── logs_previous.txt\n│       │       │   ├── top.0.txt\n│       │       │   ├── top.1.txt\n│       │       │   └── top.2.txt\n│       │       └── steadybit-agent-extension-host-qph74\n│       │           ├── config.yml\n│       │           ├── description.txt\n│       │           ├── http\n│       │           │   ├── GET__.yml\n│       │           │   ├── GET__com.steadybit.extension_host.fill_disk.yml\n│       │           │   ├── GET__com.steadybit.extension_host.host_discovery.yml\n│       │           │   ├── GET__com.steadybit.extension_host.host_discovery_discovered-targets.yml\n│       │           │   ├── GET__com.steadybit.extension_host.host_discovery_target-description.yml\n│       │           │   ├── GET__com.steadybit.extension_host.network_bandwidth.yml\n│       │           │   ├── GET__com.steadybit.extension_host.network_blackhole.yml\n│       │           │   ├── GET__com.steadybit.extension_host.network_block_dns.yml\n│       │           │   ├── GET__com.steadybit.extension_host.network_delay.yml\n│       │           │   ├── GET__com.steadybit.extension_host.network_package_corruption.yml\n│       │           │   ├── GET__com.steadybit.extension_host.network_package_loss.yml\n│       │           │   ├── GET__com.steadybit.extension_host.shutdown.yml\n│       │           │   ├── GET__com.steadybit.extension_host.stop-process.yml\n│       │           │   ├── GET__com.steadybit.extension_host.stress-cpu.yml\n│       │           │   ├── GET__com.steadybit.extension_host.stress-io.yml\n│       │           │   ├── GET__com.steadybit.extension_host.stress-mem.yml\n│       │           │   ├── GET__com.steadybit.extension_host.timetravel.yml\n│       │           │   └── GET__discovery_attributes.yml\n│       │           ├── logs.txt\n│       │           ├── logs_previous.txt\n│       │           ├── top.0.txt\n│       │           ├── top.1.txt\n│       │           └── top.2.txt\n│       ├── steadybit-agent-extension-http\n│       │   ├── config.yaml\n│       │   ├── description.txt\n│       │   └── pods\n│       │       └── steadybit-agent-extension-http-ddc796f6d-dwfkl\n│       │           ├── config.yml\n│       │           ├── description.txt\n│       │           ├── http\n│       │           │   ├── GET__.yml\n│       │           │   ├── GET__com.steadybit.extension_http.check.fixed_amount.yml\n│       │           │   └── GET__com.steadybit.extension_http.check.periodically.yml\n│       │           ├── logs.txt\n│       │           ├── logs_previous.txt\n│       │           ├── top.0.txt\n│       │           ├── top.1.txt\n│       │           └── top.2.txt\n│       └── steadybit-agent-extension-kubernetes\n│           ├── config.yaml\n│           ├── description.txt\n│           └── pods\n│               └── steadybit-agent-extension-kubernetes-7d694f8fff-256rh\n│                   ├── config.yml\n│                   ├── description.txt\n│                   ├── http\n│                   │   ├── GET__.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.crash_loop_pod.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.delete_pod.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.drain_node.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-cluster_discovery.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-cluster_discovery_discovered-targets.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-cluster_discovery_target-description.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-container_discovery.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-container_discovery_discovered-targets.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-daemonset_discovery.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-daemonset_discovery_discovered-targets.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-daemonset_discovery_target-description.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-deployment_discovery.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-deployment_discovery_discovered-targets.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-deployment_discovery_target-description.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-node_discovery.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-node_discovery_discovered-targets.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-node_discovery_target-description.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-pod_discovery.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-pod_discovery_discovered-targets.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-pod_discovery_target-description.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-statefulset_discovery.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-statefulset_discovery_discovered-targets.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes-statefulset_discovery_target-description.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.kubernetes_logs.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.node_count_check.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.pod_count_check.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.pod_count_metric.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.rollout-restart.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.rollout-status.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.scale_deployment.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.scale_statefulset.yml\n│                   │   ├── GET__com.steadybit.extension_kubernetes.taint_node.yml\n│                   │   └── GET__discovery_attributes.yml\n│                   ├── logs.txt\n│                   ├── logs_previous.txt\n│                   ├── top.0.txt\n│                   ├── top.1.txt\n│                   └── top.2.txt\n├── nodes\n│   ├── fargate-ip-10-40-83-162.eu-central-1.compute.internal\n│   │   ├── config.yaml\n│   │   └── description.txt\n│   ├── fargate-ip-10-40-96-134.eu-central-1.compute.internal\n│   │   ├── config.yaml\n│   │   └── description.txt\n│   ├── ip-10-40-83-252.eu-central-1.compute.internal\n│   │   ├── config.yaml\n│   │   └── description.txt\n│   ├── ip-10-40-92-38.eu-central-1.compute.internal\n│   │   ├── config.yaml\n│   │   └── description.txt\n│   └── ip-10-40-94-131.eu-central-1.compute.internal\n│       ├── config.yaml\n│       └── description.txt\n└── output.txt\n\nxx directories, xxx files\n\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteadybit%2Fsteadybit-debug","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsteadybit%2Fsteadybit-debug","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteadybit%2Fsteadybit-debug/lists"}