m1m6 / squash

The debugger for microservices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

squash
Debugger for microservices

Debug your microservices application running on container orchestration from IDE.


Debugging microservices applications is a difficult task. The state of the application is spread across multi microservices and it is hard to get the holistic view of the state of the application. Currently debugging of microservices is assisted by openTracing, which helps in tracing of a transaction or workflow for post-mortem analysis, and service mesh like Istio which monitor the network to identify latency problems. These tools however, do not allow to monitor and interfere with the application during run time.

In contrast, "traditional" debuggers of monolithic application provide devs with powerful features like setting breakpoints in their codes, following values of variables on the fly, stepping through the code, and changing these variables during run time.

Squash brings the power of modern popular debuggers to developers of microservices apps that run on container orchestration platforms. Squash bridges between the orchestration platform (without changing it) and IDE. Users are free to choose which containers, pods, services or images they are interested in debugging, and are allowed to set breakpoints in their codes, follow values of their variables on the fly, step through the code while jumping between microservices, and change these values during run time.

Squash is built to be easily extensible, allowing – and encouraging – adding support for more platforms, debuggers and IDEs.

Squash integration with Envoy is now live! Read about the Squash HTTP filter, now part of upstream Envoy here

To learn more about the motivation behind project squash, read our blog post or watch session (slides). We also encourage you to read squash technical overview blog.

To stay up-to-date with Squash, follow us @GetSoloIO and join us on our slack channel.

With Squash, you can:

  • Live debugging cross multi microservices
  • Debug container in a pod
  • Debug a service
  • Set breakpoints
  • Step through the code
  • View and modify values of variables
  • and more ...

Demo

In the following demo we debug an application that adds two numbers. As you can see, it currently fails miserably at adding 9 to 99. The application is composed of two microservices. We set breakpoints in both, then step through the application, while monitoring its variables. At some point we identify the problem, and test it by changing the value of the variable isadd before resuming the execution of the application.

Squash Demo

An annotated version of this demo can be found here.

Documentation


Supported debuggers:

Supported platforms:

Supported IDEs:

We are looking for community help to add support for more debuggers, platforms and IDEs.

Roadmap:

debuggers

platforms:

IDEs

Squash is still experimental! APIs and compatibility are subject to change. We are looking for community support to help identify potential bugs and compatibility issues. Please open a Github issue for any problems you may experience, and join us on our slack channel


Thanks

Squash would not be possible without the valuable open-source work of projects in the community. We would like to extend a special thank-you to Kubernetes, gdb and dlv.

About

The debugger for microservices

License:Apache License 2.0


Languages

Language:Go 96.9%Language:Makefile 2.4%Language:Java 0.5%Language:Shell 0.2%