wu-sheng commented on code in PR #614: URL: https://github.com/apache/skywalking-website/pull/614#discussion_r1241122401
########## content/blog/2023-06-25-intruducing-continuous-profiling-skywalking-with-ebpf/index.md: ########## @@ -0,0 +1,232 @@ +--- +title: "Activating Performance Analysis Tools with SkyWalking and eBPF under Threshold Conditions -- Continuous Profiling" +date: 2023-06-25 +author: "Han Liu" +description: "Introduce and demonstrate how SkyWalking and eBPF implement process monitoring with low energy consumption. It will also detail how, when certain conditions are met, these tools initiate more complex performance tasks to monitor programs." +tags: +- eBPF +- Profiling +- Tracing +--- + +# Background + +In previous articles, We have discussed how to use SkyWalking and eBPF for performance problem detection within [processes](/blog/2022-07-05-pinpoint-service-mesh-critical-performance-impact-by-using-ebpf) and [networks](blog/diagnose-service-mesh-network-performance-with-ebpf). +However, there are still two outstanding issues: + +1. **Task initiation time**: It's often challenging to quickly determine which processes require performance monitoring when problems occur. +Typically, manual intervention is required to identify processes and the types of performance analysis necessary. +We need a faster way to detect which processes require performance analysis. Review Comment: ```suggestion The root cause locating and the time of crash recovery conflict with each other from time to time. In the real case, rebooting would be the first choice of recovery, meanwhile, it destroys the site of crashing. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
