Skip to content

Commit

Permalink
Docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zakstucke committed Oct 19, 2023
1 parent 46fd6c9 commit 519a9f1
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions docs/examples/creating_traces.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,14 @@ client.trace_create([
parent_uid=act_uid,
name="hr/power",
data={
"unit": "bpm",
"hr": [102, 110],
"power": [200, 210],
"hr": {
"unit": "bpm",
"values": [102, 110]
},
"power": {
"unit": "watts",
"values": [200, 210],
},
"timestamps": [
dt.datetime(2021, 1, 1),
dt.datetime(2021, 1, 2),
Expand Down

0 comments on commit 519a9f1

Please sign in to comment.