In this tutorial, we’ll show the actual performance impact of OpenResty XRay when tracing Rust applications. We will watch CPU, memory, load average, traffic throughput, latency, etc. when OpenResty XRay is actively sampling and analyzing the target system. OpenResty XRay is a non-invasive diagnostic system based on our own dynamic tracing technology. It has minimal performance overhead. It can analyze running applications in real-time to help pinpoint the root causes of various issues.

Process Performance Before Running Analysis

How will OpenResty XRay’s Agent affect a target Rust application’s performance? Let’s find it out in this video.

Screenshot

Let’s run the top command to check the process list.

Right now, the Agent of OpenResty XRay is not running any analysis. So its performance impact on the target processes is strictly zero. Thanks to dynamic-tracing technologies. It never modifies the target processes in any way.

Screenshot

Look at this process named rocket-server. We already know it is written in Rust.

Screenshot

Its CPU utilization is about 73%.

Screenshot

The load average of the last minute is 0.86.

Screenshot

The CPU idle percentage is 74.3%.

Screenshot

The currently available memory is about 1566MB.

Screenshot

Let’s instruct OpenResty XRay to actively analyze that Rust process. Then we can see its performance impact on the target.

Screenshot

Performance Impact When the Analyzer is Running

Open the OpenResty XRay web console in the web browser.

Screenshot

Make sure it is the right machine you are watching.

Screenshot

The production mode is for analyzing online production environments. It tries hard to minimize the performance impact on the target applications and servers. It may take longer to analyze though.

Screenshot

Go to the “Guided Analysis” page.

Screenshot

Let’s select “High CPU usage”.

Screenshot

Click on “Next”.

Screenshot

Select the Rust application.

Screenshot

Select the process that consumes 74% of the CPU resources. This is what we saw previously in top.

Screenshot

Let’s start analyzing.

Screenshot

The system will keep performing different rounds of analysis.

Screenshot

It will keep sampling for 300 seconds, or 5 minutes.

Screenshot

Let’s return to the terminal window. We can see that CPU utilization is around 74%. It went up less than 1%.

Screenshot

The load average of the last minute is 0.92 now, increased by 0.06 from 0.86.

Screenshot

The CPU idle percentage is 74.5%, nearly the same as the previous value 74.3%.

Screenshot

The currently available memory is about 1564MB, a decrease of about 2MB from before. There is no significant change from before.

Screenshot

Impact Measurement on Throughput and Latency

We measured the maximum server throughput in different cases. Here’s what we found.

Screenshot

Without installing the OpenResty XRay Agent, the maximum throughput is about 56600 requests per second.

Screenshot

When the Agent is installed but not running the analyzers, the request rate remains the same.

Screenshot

When the analyzers are sampling, the request rate is around 55300 RPS, merely 2.2% lower than when not doing analysis. It can be seen that running the analyzers for performance analysis has minimal impact on the maximum throughput of the target process.

Screenshot

Here is the benchmark showing the impact on request latency during the sampling process. And this is what we found in comparison.

Screenshot

Without installing the OpenResty XRay Agent, the average request latency is 37.79 microseconds.

Screenshot

When the Agent is installed but the analyzers are not running, the average latency remains unchanged.

Screenshot

When the analyzers are running, the latency becomes 38.91 microseconds. An increase of only 1.12 microseconds. It is evident that running the analyzers for performance analysis has a minimal impact on the latency of the target process.

Screenshot

The overhead of automatic analysis in the “Insights” page and “Dashboard” page is similarly small and tiny.

Screenshot

What is OpenResty XRay

OpenResty XRay is a dynamic-tracing product that automatically analyzes your running applications to troubleshoot performance problems, behavioral issues, and security vulnerabilities with actionable suggestions. Under the hood, OpenResty XRay is powered by our Y language targeting various runtimes like Stap+, eBPF+, GDB, and ODB, depending on the contexts.

If you like this tutorial, please subscribe to this blog site and/or our YouTube channel. Thank you!

About The Author

Yichun Zhang (Github handle: agentzh), is the original creator of the OpenResty® open-source project and the CEO of OpenResty Inc..

Yichun is one of the earliest advocates and leaders of “open-source technology”. He worked at many internationally renowned tech companies, such as Cloudflare, Yahoo!. He is a pioneer of “edge computing”, “dynamic tracing” and “machine coding”, with over 22 years of programming and 16 years of open source experience. Yichun is well-known in the open-source space as the project leader of OpenResty®, adopted by more than 40 million global website domains.

OpenResty Inc., the enterprise software start-up founded by Yichun in 2017, has customers from some of the biggest companies in the world. Its flagship product, OpenResty XRay, is a non-invasive profiling and troubleshooting tool that significantly enhances and utilizes dynamic tracing technology. And its OpenResty Edge product is a powerful distributed traffic management and private CDN software product.

As an avid open-source contributor, Yichun has contributed more than a million lines of code to numerous open-source projects, including Linux kernel, Nginx, LuaJIT, GDB, SystemTap, LLVM, Perl, etc. He has also authored more than 60 open-source software libraries.