You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by wu...@apache.org on 2018/07/17 03:15:59 UTC

[incubator-skywalking-data-collect-protocol] branch master updated: Adjust import.

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/incubator-skywalking-data-collect-protocol.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ca5672  Adjust import.
8ca5672 is described below

commit 8ca567248b88d2faa849139e2a42d375c61522f2
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Jul 17 11:15:53 2018 +0800

    Adjust import.
---
 language-agent/ApplicationRegisterService.proto    | 2 +-
 language-agent/DiscoveryService.proto              | 4 ++--
 language-agent/JVMMetricsService.proto             | 2 +-
 language-agent/NetworkAddressRegisterService.proto | 2 +-
 language-agent/TraceSegmentService.proto           | 6 +++---
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/language-agent/ApplicationRegisterService.proto b/language-agent/ApplicationRegisterService.proto
index 19d0c5b..fd8ee0d 100644
--- a/language-agent/ApplicationRegisterService.proto
+++ b/language-agent/ApplicationRegisterService.proto
@@ -22,7 +22,7 @@ option java_multiple_files = true;
 option java_package = "org.apache.skywalking.apm.network.language.agent";
 option csharp_namespace = "SkyWalking.NetworkProtocol";
 
-import "KeyWithIntegerValue.proto";
+import "language-agent/KeyWithIntegerValue.proto";
 
 //register service for ApplicationCode, this service is called when service starts.
 service ApplicationRegisterService {
diff --git a/language-agent/DiscoveryService.proto b/language-agent/DiscoveryService.proto
index d7aebad..8ed583d 100644
--- a/language-agent/DiscoveryService.proto
+++ b/language-agent/DiscoveryService.proto
@@ -22,8 +22,8 @@ option java_multiple_files = true;
 option java_package = "org.apache.skywalking.apm.network.language.agent";
 option csharp_namespace = "SkyWalking.NetworkProtocol";
 
-import "Common.proto";
-import "Downstream.proto";
+import "language-agent/Common.proto";
+import "language-agent/Downstream.proto";
 
 service InstanceDiscoveryService {
     rpc registerInstance (ApplicationInstance) returns (ApplicationInstanceMapping) {
diff --git a/language-agent/JVMMetricsService.proto b/language-agent/JVMMetricsService.proto
index eec0e45..4c50aaf 100644
--- a/language-agent/JVMMetricsService.proto
+++ b/language-agent/JVMMetricsService.proto
@@ -22,7 +22,7 @@ option java_multiple_files = true;
 option java_package = "org.apache.skywalking.apm.network.language.agent";
 option csharp_namespace = "SkyWalking.NetworkProtocol";
 
-import "Downstream.proto";
+import "language-agent/Downstream.proto";
 
 service JVMMetricsService {
     rpc collect (JVMMetrics) returns (Downstream) {
diff --git a/language-agent/NetworkAddressRegisterService.proto b/language-agent/NetworkAddressRegisterService.proto
index 052f1b9..a299edc 100644
--- a/language-agent/NetworkAddressRegisterService.proto
+++ b/language-agent/NetworkAddressRegisterService.proto
@@ -22,7 +22,7 @@ option java_multiple_files = true;
 option java_package = "org.apache.skywalking.apm.network.language.agent";
 option csharp_namespace = "SkyWalking.NetworkProtocol";
 
-import "KeyWithIntegerValue.proto";
+import "language-agent/KeyWithIntegerValue.proto";
 
 service NetworkAddressRegisterService {
     rpc batchRegister (NetworkAddresses) returns (NetworkAddressMappings) {
diff --git a/language-agent/TraceSegmentService.proto b/language-agent/TraceSegmentService.proto
index 0c5da6f..283526c 100644
--- a/language-agent/TraceSegmentService.proto
+++ b/language-agent/TraceSegmentService.proto
@@ -22,9 +22,9 @@ option java_multiple_files = true;
 option java_package = "org.apache.skywalking.apm.network.language.agent";
 option csharp_namespace = "SkyWalking.NetworkProtocol";
 
-import "Common.proto";
-import "Downstream.proto";
-import "KeyWithStringValue.proto";
+import "language-agent/Common.proto";
+import "language-agent/Downstream.proto";
+import "language-agent/KeyWithStringValue.proto";
 
 service TraceSegmentService {
     rpc collect (stream UpstreamSegment) returns (Downstream) {