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 2019/03/23 15:14:51 UTC

[incubator-skywalking] branch exporter-impl updated: Fix absent 4.

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

wusheng pushed a commit to branch exporter-impl
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/exporter-impl by this push:
     new 68720af  Fix absent 4.
68720af is described below

commit 68720af7b4523b6817400d939099e2aba3b24377
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Sat Mar 23 08:14:40 2019 -0700

    Fix absent 4.
---
 docs/en/setup/backend/metric-exporter.md                 | 8 ++++----
 oap-server/exporter/src/main/proto/metric-exporter.proto | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/en/setup/backend/metric-exporter.md b/docs/en/setup/backend/metric-exporter.md
index 72e08cd..1bcc0fd 100644
--- a/docs/en/setup/backend/metric-exporter.md
+++ b/docs/en/setup/backend/metric-exporter.md
@@ -20,10 +20,10 @@ message ExportMetricValue {
     string metricName = 1;
     string entityName = 2;
     string entityId = 3;
-    ValueType type = 5;
-    int64 timeBucket = 6;
-    int64 longValue = 7;
-    double doubleValue = 8;
+    ValueType type = 4;
+    int64 timeBucket = 5;
+    int64 longValue = 6;
+    double doubleValue = 7;
 }
 
 enum ValueType {
diff --git a/oap-server/exporter/src/main/proto/metric-exporter.proto b/oap-server/exporter/src/main/proto/metric-exporter.proto
index 4e1201c..180d7df 100644
--- a/oap-server/exporter/src/main/proto/metric-exporter.proto
+++ b/oap-server/exporter/src/main/proto/metric-exporter.proto
@@ -31,10 +31,10 @@ message ExportMetricValue {
     string metricName = 1;
     string entityName = 2;
     string entityId = 3;
-    ValueType type = 5;
-    int64 timeBucket = 6;
-    int64 longValue = 7;
-    double doubleValue = 8;
+    ValueType type = 4;
+    int64 timeBucket = 5;
+    int64 longValue = 6;
+    double doubleValue = 7;
 }
 
 enum ValueType {