Skip to content

steadybit-debug collects data from installed Steadybit platforms and agents to aid in customer support

License

Notifications You must be signed in to change notification settings

steadybit/steadybit-debug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

89 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

CI Release

steadybit-debug

steadybit-debug collects data from installed Steadybit platforms and agents to aid in customer support. It helps shorten feedback cycles and avoids frequent back and forth between Steadybit and its customers.

Prerequisites

  • kubectl needs to be available on the $PATH and configured with the correct context.
  • curl needs to be available on the $PATH.

Installation

steadybit-debug is available on Linux, macOS and Windows platforms.

  • Binaries for Linux, Windows and macOS are available as tarballs in the releases page.
  • Via Homebrew for macOS or LinuxBrew for Linux
    brew tap steadybit/homebrew-steadybit-debug
    brew install steadybit-debug
    

Configuration

steadybit-debug has sensible defaults that will work out-of-the-box for users of our Helm charts that haven't renamed the namespaces, deployments or daemon sets. If you made changes, you could configure steadybit-debug to support your specific setup.

Via Command-Line Arguments

Command-line arguments can be used to change the most common configuration options. The following snippet show how to change the references to Kubernetes workloads. Refer to steadybit-debug --help for more information.

steadybit-debug --platform-deployment platform \
   --platform-namespace platform \
   --agent-namespace steadybit-agent-to-prod

Via Configuration Files

Configuration is supported through a file called steadybit-debug.yml existing within your current working directory.

platform:
  namespace: chaos-eng
  deployment: platform
  exportDatabase: false
agent:
  namespace: chaos-eng

To learn more about all the available configuration options please inspect the Go Config struct definition.

MTLS Support for extensions

If 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:

platform:
  namespace: chaos-eng
  deployment: platform
  exportDatabase: false
agent:
  namespace: chaos-eng
tls:
   certChainFile: /Path/to/tls.crt
   certKeyFile: /Path/to/tls.key

or provide the cert and key via command line arguments:

steadybit-debug --platform-deployment platform \
   --platform-namespace platform \
   --agent-namespace steadybit-agent-to-prod \
   --cert-chain-file /Path/to/tls.crt \
   --cert-key-file= /Path/to/tls.key

Database Export support

If you need to export the database of your platform, you can do this by adding the following to your steadybit-debug.yml file:

platform:
  namespace: chaos-eng
  deployment: platform
  exportDatabase: true

This is disabled by default.

Execution

You execute the tool via steadybit-debug. Once executed, you will find that the command collects debugging information within the current working directory. Please send the generated .tar.gz file to your Steadybit contacts.

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.

Collected Information

This tool gathers data from your Kubernetes server and the admin endpoints of the Steadybit platform, agents and extensions. The following listing shows an overview of the generated files (as of 2024-02-08). Feel free to take a closer look at the data it collected for your installation!

.
β”œβ”€β”€ agent
β”‚   β”œβ”€β”€ config.yaml
β”‚   β”œβ”€β”€ description.txt
β”‚   └── pods
β”‚       └── steadybit-agent-0
β”‚           β”œβ”€β”€ actions_metadata.yml
β”‚           β”œβ”€β”€ advice_definition.yml
β”‚           β”œβ”€β”€ config.yml
β”‚           β”œβ”€β”€ description.txt
β”‚           β”œβ”€β”€ discovery_info.yml
β”‚           β”œβ”€β”€ enrichtment_rules.yml
β”‚           β”œβ”€β”€ env.yml
β”‚           β”œβ”€β”€ extension_connection_test_0.txt
β”‚           β”œβ”€β”€ extension_connection_test_1.txt
β”‚           β”œβ”€β”€ extension_connection_test_10.txt
β”‚           β”œβ”€β”€ extension_connection_test_11.txt
β”‚           β”œβ”€β”€ extension_connection_test_12.txt
β”‚           β”œβ”€β”€ extension_connection_test_13.txt
β”‚           β”œβ”€β”€ extension_connection_test_14.txt
β”‚           β”œβ”€β”€ extension_connection_test_15.txt
β”‚           β”œβ”€β”€ extension_connection_test_16.txt
β”‚           β”œβ”€β”€ extension_connection_test_17.txt
β”‚           β”œβ”€β”€ extension_connection_test_18.txt
β”‚           β”œβ”€β”€ extension_connection_test_2.txt
β”‚           β”œβ”€β”€ extension_connection_test_3.txt
β”‚           β”œβ”€β”€ extension_connection_test_4.txt
β”‚           β”œβ”€β”€ extension_connection_test_5.txt
β”‚           β”œβ”€β”€ extension_connection_test_6.txt
β”‚           β”œβ”€β”€ extension_connection_test_7.txt
β”‚           β”œβ”€β”€ extension_connection_test_8.txt
β”‚           β”œβ”€β”€ extension_connection_test_9.txt
β”‚           β”œβ”€β”€ health.yml
β”‚           β”œβ”€β”€ info.yml
β”‚           β”œβ”€β”€ logs.txt
β”‚           β”œβ”€β”€ logs_previous.txt
β”‚           β”œβ”€β”€ platform_connection_test.txt
β”‚           β”œβ”€β”€ platform_traceroute_test.txt
β”‚           β”œβ”€β”€ platform_websocat_connection_test.txt
β”‚           β”œβ”€β”€ platform_websocket_http1_connection_test.txt
β”‚           β”œβ”€β”€ platform_websocket_http2_connection_test.txt
β”‚           β”œβ”€β”€ prometheus_metrics.0.txt
β”‚           β”œβ”€β”€ prometheus_metrics.1.txt
β”‚           β”œβ”€β”€ prometheus_metrics.2.txt
β”‚           β”œβ”€β”€ prometheus_metrics.3.txt
β”‚           β”œβ”€β”€ prometheus_metrics.4.txt
β”‚           β”œβ”€β”€ prometheus_metrics.5.txt
β”‚           β”œβ”€β”€ prometheus_metrics.6.txt
β”‚           β”œβ”€β”€ prometheus_metrics.7.txt
β”‚           β”œβ”€β”€ prometheus_metrics.8.txt
β”‚           β”œβ”€β”€ prometheus_metrics.9.txt
β”‚           β”œβ”€β”€ target_stats.yml
β”‚           β”œβ”€β”€ target_type_description.yml
β”‚           β”œβ”€β”€ targets.yml
β”‚           β”œβ”€β”€ threaddump.yml
β”‚           β”œβ”€β”€ top.0.txt
β”‚           β”œβ”€β”€ top.1.txt
β”‚           β”œβ”€β”€ top.2.txt
β”‚           β”œβ”€β”€ top.3.txt
β”‚           β”œβ”€β”€ top.4.txt
β”‚           β”œβ”€β”€ top.5.txt
β”‚           β”œβ”€β”€ top.6.txt
β”‚           β”œβ”€β”€ top.7.txt
β”‚           β”œβ”€β”€ top.8.txt
β”‚           └── top.9.txt
β”œβ”€β”€ debugging_config.yaml
β”œβ”€β”€ extensions
β”‚   └── steadybit-agent
β”‚       β”œβ”€β”€ steadybit-agent-extension-container
β”‚       β”‚   β”œβ”€β”€ config.yaml
β”‚       β”‚   β”œβ”€β”€ description.txt
β”‚       β”‚   └── pods
β”‚       β”‚       β”œβ”€β”€ steadybit-agent-extension-container-hdmb6
β”‚       β”‚       β”‚   β”œβ”€β”€ config.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ description.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ http
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery_discovered-targets.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery_target-description.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.fill_disk.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_bandwidth.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_blackhole.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_block_dns.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_delay.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_package_corruption.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_package_loss.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.pause.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stop.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_cpu.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_io.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_mem.yml
β”‚       β”‚       β”‚   β”‚   └── GET__discovery_attributes.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ logs.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ logs_previous.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.0.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.1.txt
β”‚       β”‚       β”‚   └── top.2.txt
β”‚       β”‚       β”œβ”€β”€ steadybit-agent-extension-container-x6hq6
β”‚       β”‚       β”‚   β”œβ”€β”€ config.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ description.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ http
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery_discovered-targets.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery_target-description.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.fill_disk.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_bandwidth.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_blackhole.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_block_dns.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_delay.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_package_corruption.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_package_loss.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.pause.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stop.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_cpu.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_io.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_mem.yml
β”‚       β”‚       β”‚   β”‚   └── GET__discovery_attributes.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ logs.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ logs_previous.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.0.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.1.txt
β”‚       β”‚       β”‚   └── top.2.txt
β”‚       β”‚       └── steadybit-agent-extension-container-xccpk
β”‚       β”‚           β”œβ”€β”€ config.yml
β”‚       β”‚           β”œβ”€β”€ description.txt
β”‚       β”‚           β”œβ”€β”€ http
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery_discovered-targets.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.container_discovery_target-description.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.fill_disk.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_bandwidth.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_blackhole.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_block_dns.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_delay.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_package_corruption.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.network_package_loss.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.pause.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stop.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_cpu.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_io.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_container.stress_mem.yml
β”‚       β”‚           β”‚   └── GET__discovery_attributes.yml
β”‚       β”‚           β”œβ”€β”€ logs.txt
β”‚       β”‚           β”œβ”€β”€ logs_previous.txt
β”‚       β”‚           β”œβ”€β”€ top.0.txt
β”‚       β”‚           β”œβ”€β”€ top.1.txt
β”‚       β”‚           └── top.2.txt
β”‚       β”œβ”€β”€ steadybit-agent-extension-host
β”‚       β”‚   β”œβ”€β”€ config.yaml
β”‚       β”‚   β”œβ”€β”€ description.txt
β”‚       β”‚   └── pods
β”‚       β”‚       β”œβ”€β”€ steadybit-agent-extension-host-74njx
β”‚       β”‚       β”‚   β”œβ”€β”€ config.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ description.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ http
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.fill_disk.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery_discovered-targets.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery_target-description.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_bandwidth.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_blackhole.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_block_dns.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_delay.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_package_corruption.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_package_loss.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.shutdown.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stop-process.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-cpu.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-io.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-mem.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.timetravel.yml
β”‚       β”‚       β”‚   β”‚   └── GET__discovery_attributes.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ logs.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ logs_previous.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.0.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.1.txt
β”‚       β”‚       β”‚   └── top.2.txt
β”‚       β”‚       β”œβ”€β”€ steadybit-agent-extension-host-bg529
β”‚       β”‚       β”‚   β”œβ”€β”€ config.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ description.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ http
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.fill_disk.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery_discovered-targets.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery_target-description.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_bandwidth.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_blackhole.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_block_dns.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_delay.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_package_corruption.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_package_loss.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.shutdown.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stop-process.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-cpu.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-io.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-mem.yml
β”‚       β”‚       β”‚   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.timetravel.yml
β”‚       β”‚       β”‚   β”‚   └── GET__discovery_attributes.yml
β”‚       β”‚       β”‚   β”œβ”€β”€ logs.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ logs_previous.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.0.txt
β”‚       β”‚       β”‚   β”œβ”€β”€ top.1.txt
β”‚       β”‚       β”‚   └── top.2.txt
β”‚       β”‚       └── steadybit-agent-extension-host-qph74
β”‚       β”‚           β”œβ”€β”€ config.yml
β”‚       β”‚           β”œβ”€β”€ description.txt
β”‚       β”‚           β”œβ”€β”€ http
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.fill_disk.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery_discovered-targets.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.host_discovery_target-description.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_bandwidth.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_blackhole.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_block_dns.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_delay.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_package_corruption.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.network_package_loss.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.shutdown.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stop-process.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-cpu.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-io.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.stress-mem.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_host.timetravel.yml
β”‚       β”‚           β”‚   └── GET__discovery_attributes.yml
β”‚       β”‚           β”œβ”€β”€ logs.txt
β”‚       β”‚           β”œβ”€β”€ logs_previous.txt
β”‚       β”‚           β”œβ”€β”€ top.0.txt
β”‚       β”‚           β”œβ”€β”€ top.1.txt
β”‚       β”‚           └── top.2.txt
β”‚       β”œβ”€β”€ steadybit-agent-extension-http
β”‚       β”‚   β”œβ”€β”€ config.yaml
β”‚       β”‚   β”œβ”€β”€ description.txt
β”‚       β”‚   └── pods
β”‚       β”‚       └── steadybit-agent-extension-http-ddc796f6d-dwfkl
β”‚       β”‚           β”œβ”€β”€ config.yml
β”‚       β”‚           β”œβ”€β”€ description.txt
β”‚       β”‚           β”œβ”€β”€ http
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__.yml
β”‚       β”‚           β”‚   β”œβ”€β”€ GET__com.steadybit.extension_http.check.fixed_amount.yml
β”‚       β”‚           β”‚   └── GET__com.steadybit.extension_http.check.periodically.yml
β”‚       β”‚           β”œβ”€β”€ logs.txt
β”‚       β”‚           β”œβ”€β”€ logs_previous.txt
β”‚       β”‚           β”œβ”€β”€ top.0.txt
β”‚       β”‚           β”œβ”€β”€ top.1.txt
β”‚       β”‚           └── top.2.txt
β”‚       └── steadybit-agent-extension-kubernetes
β”‚           β”œβ”€β”€ config.yaml
β”‚           β”œβ”€β”€ description.txt
β”‚           └── pods
β”‚               └── steadybit-agent-extension-kubernetes-7d694f8fff-256rh
β”‚                   β”œβ”€β”€ config.yml
β”‚                   β”œβ”€β”€ description.txt
β”‚                   β”œβ”€β”€ http
β”‚                   β”‚   β”œβ”€β”€ GET__.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.crash_loop_pod.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.delete_pod.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.drain_node.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-cluster_discovery.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-cluster_discovery_discovered-targets.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-cluster_discovery_target-description.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-container_discovery.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-container_discovery_discovered-targets.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-daemonset_discovery.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-daemonset_discovery_discovered-targets.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-daemonset_discovery_target-description.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-deployment_discovery.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-deployment_discovery_discovered-targets.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-deployment_discovery_target-description.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-node_discovery.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-node_discovery_discovered-targets.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-node_discovery_target-description.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-pod_discovery.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-pod_discovery_discovered-targets.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-pod_discovery_target-description.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-statefulset_discovery.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-statefulset_discovery_discovered-targets.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes-statefulset_discovery_target-description.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.kubernetes_logs.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.node_count_check.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.pod_count_check.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.pod_count_metric.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.rollout-restart.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.rollout-status.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.scale_deployment.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.scale_statefulset.yml
β”‚                   β”‚   β”œβ”€β”€ GET__com.steadybit.extension_kubernetes.taint_node.yml
β”‚                   β”‚   └── GET__discovery_attributes.yml
β”‚                   β”œβ”€β”€ logs.txt
β”‚                   β”œβ”€β”€ logs_previous.txt
β”‚                   β”œβ”€β”€ top.0.txt
β”‚                   β”œβ”€β”€ top.1.txt
β”‚                   └── top.2.txt
β”œβ”€β”€ nodes
β”‚   β”œβ”€β”€ fargate-ip-10-40-83-162.eu-central-1.compute.internal
β”‚   β”‚   β”œβ”€β”€ config.yaml
β”‚   β”‚   └── description.txt
β”‚   β”œβ”€β”€ fargate-ip-10-40-96-134.eu-central-1.compute.internal
β”‚   β”‚   β”œβ”€β”€ config.yaml
β”‚   β”‚   └── description.txt
β”‚   β”œβ”€β”€ ip-10-40-83-252.eu-central-1.compute.internal
β”‚   β”‚   β”œβ”€β”€ config.yaml
β”‚   β”‚   └── description.txt
β”‚   β”œβ”€β”€ ip-10-40-92-38.eu-central-1.compute.internal
β”‚   β”‚   β”œβ”€β”€ config.yaml
β”‚   β”‚   └── description.txt
β”‚   └── ip-10-40-94-131.eu-central-1.compute.internal
β”‚       β”œβ”€β”€ config.yaml
β”‚       └── description.txt
└── output.txt

xx directories, xxx files

About

steadybit-debug collects data from installed Steadybit platforms and agents to aid in customer support

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages