From 8824bef6d1437a024eae29949203e4d65c484736 Mon Sep 17 00:00:00 2001 From: tianyu Date: Thu, 7 Mar 2019 13:12:06 +0800 Subject: [PATCH] Update probe-introduction.md (#2324) --- docs/en/concepts-and-designs/probe-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/concepts-and-designs/probe-introduction.md b/docs/en/concepts-and-designs/probe-introduction.md index f4219e9c8..29fe205dc 100644 --- a/docs/en/concepts-and-designs/probe-introduction.md +++ b/docs/en/concepts-and-designs/probe-introduction.md @@ -5,7 +5,7 @@ ways to do so. But ultimately they are same, just collect and reformat data, the In high level, there are three typical groups in all SkyWalking probes. - **Language based native agent**. This kind of agents runs in target service user space, like a part of user codes. Such as -SkyWalking Java agent, use `-javaagent` commend line argument to manipulate codes in runtime, `manipulate` means change and inject +SkyWalking Java agent, use `-javaagent` command line argument to manipulate codes in runtime, `manipulate` means change and inject user's codes. Another kind of agents is using some hook or intercept mechanism provided by target libraries. So you can see, these kinds of agents based on languages and libraries.