Linux Log File Management for Application Services

Linux Log File Management for Application Services

Recently, a machine in one of our company’s factories has been frequently alarming due to low disk space. Upon investigation, it was found that this was a test machine for the MES service provided by a vendor, which had a complete set of testing services built on it. The vendor’s Spring Boot application outputs logs … Read more

Java Performance Analysis – Section Four – JVM Monitoring on Linux

Monitoring and Performance Analysis Monitoring Monitoring typically refers to a proactive or preventive activity in production, quality assessment, or development environments. When the application owner receives performance issues without sufficient clues to locate the problem, they will first check performance monitoring, followed by performance analysis. Performance Analysis Performance analysis is an intrusive activity that collects … Read more

Introducing a Powerful Open Source Java Diagnostic Tool from Alibaba: Arthas

Introducing a Powerful Open Source Java Diagnostic Tool from Alibaba: Arthas

What is Arthas? Arthas is an open-source Java online diagnostic tool developed by Alibaba. It is extremely powerful and can solve many issues that are difficult to address online. Arthas operates in a command-line interactive mode, supports JDK6+, and is compatible with Linux, Mac, and Windows operating systems. The commands also support tab key auto-completion … Read more

Master Arthas: Achieve 5 Years of Expertise with Just 3 Years of Experience!

Master Arthas: Achieve 5 Years of Expertise with Just 3 Years of Experience!

Click the “Yudao Source Code” above and select “Set as Favorite” What does it matter if it’s the old or the new wave? The wave that can surf is the good wave! Every day at 10:33 we update articles, losing a bit of hair every day… Quality Source Code Column Original | The Super God … Read more

Introducing Arthas: An Open Source Java Diagnostic Tool from Alibaba

Introducing Arthas: An Open Source Java Diagnostic Tool from Alibaba

What is Arthas? Arthas is an open-source Java online diagnostic tool developed by Alibaba. It is very powerful and can solve many issues that are inconvenient to address online. Arthas operates in a command-line interactive mode, supports JDK6+, and is compatible with Linux, Mac, and Windows operating systems. The commands also support tab key auto-completion … Read more

Master Arthas: Achieve 5 Years of Expertise with Just 3 Years of Experience!

Master Arthas: Achieve 5 Years of Expertise with Just 3 Years of Experience!

Source:https://juejin.cn/post/7114540497187635208Table of Contents Introduction Usage Scenarios Installation Common Commands Others Introduction Arthas is an open-source Java diagnostic tool from Alibaba that dynamically tracks Java code and monitors JVM status in real-time. It allows for easy troubleshooting of JVM-related issues without interrupting program execution. It supports JDK 6+, and is compatible with Linux, Mac, and Windows. … Read more

Essential for Operations: Differences Between ‘ps -ef | grep java’ and ‘jps -l’ in Linux

Essential for Operations: Differences Between 'ps -ef | grep java' and 'jps -l' in Linux

Follow “Operations Interview Insights” Click the “⭐ Star” on the left to receive immediate updates on articles In Linux systems, both ps -ef | grep java and jps -l are methods used to view Java processes, but they have some important differences. ps -ef | grep java Command: ps is a command used to display … Read more

Exploring the Principles of Fault Injection

Exploring the Principles of Fault Injection

Introduction As the number of channel APIs increases, the user base is also growing rapidly. Due to the inherent business complexity of channel APIs and the numerous underlying services they depend on, potential issues can have a significant impact. Relying solely on common unit tests, integration tests, and performance tests to verify service stability is … Read more