You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2020/04/03 08:32:28 UTC

[skywalking-data-collect-protocol] branch master updated: Change CLR from int id to string.

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-data-collect-protocol.git


The following commit(s) were added to refs/heads/master by this push:
     new eb9381d  Change CLR from int id to string.
eb9381d is described below

commit eb9381d39e711e6f6beceae8f2daff594812ad53
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Fri Apr 3 16:31:54 2020 +0800

    Change CLR from int id to string.
---
 language-agent/CLRMetric.proto | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/language-agent/CLRMetric.proto b/language-agent/CLRMetric.proto
index ccbfabf..6cf5549 100644
--- a/language-agent/CLRMetric.proto
+++ b/language-agent/CLRMetric.proto
@@ -31,7 +31,8 @@ service CLRMetricReportService {
 
 message CLRMetricCollection {
     repeated CLRMetric metrics = 1;
-    int32 serviceInstanceId = 2;
+    string service = 2;
+    string serviceInstance = 3;
 }
 
 message CLRMetric {