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-query-protocol.git


The following commit(s) were added to refs/heads/master by this push:
     new dde9a0d  add max sampling count to the profile task (#27)
dde9a0d is described below

commit dde9a0dad56617ccbf4226f5f71e667fd9620222
Author: mrproliu <[email protected]>
AuthorDate: Sun Jan 5 00:42:28 2020 +0800

    add max sampling count to the profile task (#27)
---
 profile.graphqls | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/profile.graphqls b/profile.graphqls
index 94c4167..0e41ce7 100644
--- a/profile.graphqls
+++ b/profile.graphqls
@@ -28,6 +28,8 @@ input ProfileTaskCreationRequest {
     minDurationThreshold: Int!
     # when start monitor, time interval for each dumping the stack
     dumpPeriod: Int!
+    # max number of traces will monitor on the sniffer
+    maxSamplingCount: Int!
 }
 
 # Profile task create result
@@ -75,6 +77,8 @@ type ProfileTask {
     minDurationThreshold: Int!
     # when start monitor, time interval for each dumping the stack
     dumpPeriod: Int!
+    # max number of traces will monitor on the sniffer
+    maxSamplingCount: Int!
 
     # instance operation logs
     logs: [ProfileTaskLog!]!

Reply via email to