JetBrains Launches GoLand 2026.2 Early Access Program with New Performance Tools
Breaking: GoLand 2026.2 EAP Now Open
JetBrains has officially opened the Early Access Program (EAP) for GoLand 2026.2, giving developers the first chance to test new performance profiling, memory optimization, and project onboarding features before the final release. The EAP builds are free for the entire cycle until Beta, allowing users to trial upcoming functionality in real-world workflows.

Key Highlights: Performance Tools at Center Stage
The new release introduces a dedicated Go Performance Optimization tool window, consolidating profiling, escape analysis, and struct optimization into a single interface. Developers can now analyze CPU usage, memory allocation, and goroutine behavior directly within the IDE without switching between external tools.
“We’re focusing on making performance analysis seamless. Developers should be able to understand their Go program’s behavior and optimize it without leaving their workflow,” said Maria Chen, Product Lead for GoLand at JetBrains.
Profiling Built on pprof
The EAP includes a pprof-based profiler for both test and run configurations. It answers critical questions: where does the program spend CPU time? How much memory does it allocate? Which code paths cause excessive allocations? Profiling types cover CPU, heap, allocs, goroutine, and mutex analysis.
- CPU Profiler: Samples running goroutines to identify hot spots.
- Heap & Allocs Profilers: Track memory usage and allocation patterns.
- Goroutine Profiler: Shows active goroutines and blocking points.
Background: What Is the GoLand EAP?
The Early Access Program allows developers to test pre-release features, provide direct feedback, and influence the final product. New EAP builds are released regularly throughout the cycle, though they may be unstable.

Users can download the first build via the Toolbox App, the JetBrains website, or in-IDE update. Feedback is encouraged — participants who complete the EAP survey can win a free GoLand subscription or an Amazon Gift Card.
Current Roadmap and Priorities
JetBrains has published a public roadmap detailing planned tasks, including performance tooling improvements, analysis accuracy, and workflow enhancements. However, priorities may shift based on user feedback during the EAP.
What This Means for Go Developers
The GoLand 2026.2 EAP empowers developers to benchmark and optimize their code earlier in the development cycle. By integrating previously separate performance tools, JetBrains aims to reduce context switching and speed up debugging of CPU and memory issues.
For teams working on high-performance Go services, the ability to run pprof-based profiling directly from the IDE can accelerate finding bottlenecks. The EAP also signals a broader push toward making the IDE a central hub for performance analysis — a trend likely to continue in future releases.
How to Get Started
Download the first EAP build from the official download page or use the Toolbox App. Install alongside your stable version to test without disrupting existing projects.
Disclaimer: EAP builds are under development and may contain bugs. JetBrains continues to refine the tools based on feedback throughout the cycle.