You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 9, 2019. It is now read-only.
Debug your microservices application from VS Code.
What is squash ?
Squash, a tool for debugging distributed applications, is designed to bring the strength of modern debuggers and the convenience of their IDEs to microservices developers. Squash uses popular, powerful and mature debuggers, and integrates them seamlessly with leading container orchestration platform. This allows devs to use the debugger of their choice, and the IDEs that support it, to debug microservices on any platform.
What is squash extention ?
The Squash VS Code extenstion allows Squash to use Visual Studio Code as its user interface.
After installing this extension Squash commands are available in VS Code command palette.
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 misearbly at adding 9 to 99. The applications is composed of two microservices. We set breakpoints in both, then step thought 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 exectution of the appliation.
An annotated version of this demo can be found here.