From a551b1b3a4275296267f2ff59c33c6e16f86b0ac Mon Sep 17 00:00:00 2001 From: Lemon Date: Sun, 22 Apr 2018 21:59:26 +0800 Subject: [PATCH] Add .NET/.NET Core components in component-libraries config (#1102) * Add .NET/.NET Core components in component-libraries config * Use [3000, 4000) for C#/.NET. --- .../main/resources/component-libraries.yml | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/apm-collector/apm-collector-boot/src/main/resources/component-libraries.yml b/apm-collector/apm-collector-boot/src/main/resources/component-libraries.yml index 3b0069219..6b2ca806c 100644 --- a/apm-collector/apm-collector-boot/src/main/resources/component-libraries.yml +++ b/apm-collector/apm-collector-boot/src/main/resources/component-libraries.yml @@ -35,7 +35,7 @@ Tomcat: languages: Java HttpClient: id: 2 - languages: Java + languages: Java,C# Dubbo: id: 3 languages: Java @@ -122,9 +122,31 @@ Jedis: languages: Java +# .NET/.NET Core components +# [3000, 4000) for C#/.NET only +AspNetCore: + id: 3001 + languages: C# +EntityFrameworkCore: + id: 3002 + languages: C# +SqlClient: + id: 3003 + languages: C# +CAP: + id: 3004 + languages: C# +StackExchange.Redis: + id: 3005 + languages: C# + + + # Component Server mapping defines the server display names of some components # e.g. # Jedis is a client library in Java for Redis server Component-Server-Mappings: Jedis: Redis + StackExchange.Redis: Redis + SqlClient: SqlServer -- GitLab