Skip to content

Commit d18d6ef

Browse files
committed
changes to comments for GC steps
1 parent a779607 commit d18d6ef

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

app/monitor/examples/eg001_get_monitoring_data/controller.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,17 @@ def worker(args):
2020
2. Get your monitor data via SDK
2121
"""
2222

23-
# Step 1. Create an API client with headers
23+
# Step 2 start
24+
25+
# Create an API client with headers
2426
api_client = create_monitor_api_client(
2527
access_token=args["access_token"]
2628
)
2729

28-
# Step 1 end
30+
# Step 2 end
31+
32+
#Step 3 start
2933

30-
# Step 2. Get your monitor data
3134
dataset_api = DataSetApi(api_client=api_client)
3235

3336
cursor = ""
@@ -48,6 +51,6 @@ def worker(args):
4851
result.extend(response["data"])
4952
cursor = response["endCursor"]
5053

51-
# Step 2 end
54+
# Step 3 end
5255

5356
return result

0 commit comments

Comments
 (0)