|
1 | 1 | # Language Support |
2 | 2 |
|
3 | | -Parca agent currently supports all compiled languages, e.g. C, C++, Rust, Go (with extended support for Go). |
| 3 | +Support in Parca Agent for various languages is constantly improving, here are some indications and examples to help you get started. |
4 | 4 |
|
| 5 | +## Ahead-of-time (AOT) compilation |
5 | 6 |
|
6 | | -[Further language support](https://github.com/parca-dev/parca-agent/issues?q=is%3Aissue+is%3Aopen+label%3Afeature%2Flanguage-support), for just-in-time (JIT) compilers and dynamic languages, is coming in the upcoming weeks and months. |
| 7 | +All AOT compiled languages with [debug info](./symbolization#what-can-be-symbolized), and frame pointer or DWARF unwinding information: |
| 8 | + |
| 9 | +* [C](https://github.com/parca-dev/parca-demo/tree/main/c) |
| 10 | +* [C++](https://github.com/parca-dev/parca-demo/tree/main/cpp) |
| 11 | +* [Go](https://github.com/parca-dev/parca-demo/tree/main/go) (with [extended support](./symbolization#go)) |
| 12 | +* [Rust](https://github.com/parca-dev/parca-demo/tree/main/rust) |
| 13 | +* And more |
| 14 | + |
| 15 | +## Just-in-time (JIT) compilation |
| 16 | + |
| 17 | +All JIT compiled languages with frame pointer, and [Perf map](https://github.com/torvalds/linux/blob/master/tools/perf/Documentation/jit-interface.txt) or [jitdump](https://github.com/torvalds/linux/blob/master/tools/perf/Documentation/jitdump-specification.txt): |
| 18 | + |
| 19 | +* [.NET](https://github.com/parca-dev/parca-demo/tree/main/dotnet) |
| 20 | +* [Deno](https://github.com/parca-dev/parca-demo/tree/main/deno) |
| 21 | +* [Erlang](https://github.com/parca-dev/parca-demo/tree/main/erlang) |
| 22 | +* [Java](https://github.com/parca-dev/parca-demo/tree/main/java) |
| 23 | +* [Julia](https://github.com/parca-dev/parca-demo/tree/main/julia) |
| 24 | +* [Node.js](https://github.com/parca-dev/parca-demo/tree/main/nodejs) |
| 25 | +* [PHP 8 and above](https://github.com/parca-dev/parca-demo/tree/main/php) |
| 26 | +* [Python 12 and above](https://github.com/parca-dev/parca-demo/tree/main/python) |
| 27 | +* [Wasmtime](https://github.com/parca-dev/parca-demo/tree/main/wasmtime) |
| 28 | +* And more |
| 29 | + |
| 30 | +## Interpreted |
| 31 | + |
| 32 | +_Coming soon_ |
| 33 | + |
| 34 | +## Coming Soon |
| 35 | + |
| 36 | +* Extended support for JVM runtimes via [async-profiler](https://github.com/jvm-profiling-tools/async-profiler) |
| 37 | + |
| 38 | +:::info |
| 39 | + |
| 40 | +[Further language support](https://github.com/parca-dev/parca-agent/issues?q=is%3Aissue+is%3Aopen+label%3Afeature%2Flanguage-support) is coming in the upcoming weeks and months. |
| 41 | + |
| 42 | +::: |
0 commit comments