Skip to content

Commit

Permalink
update dendrite schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanlakhani committed Oct 15, 2024
1 parent ed88961 commit 9f33faf
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion oximeter/oximeter/schema/dendrite.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,20 @@ versions = [
# switch for its statistics, which is why these fields are included.
# Dendrite may eventually report statistics about itself, or other aspects
# not related to the switch, so they belong here, not the target.
{ added_in = 1, fields = [ "switch_model", "switch_revision", "switch_id", "switch_serial", "switch_slot" ] }
{ added_in = 1,
fields = [
"switch_id",
"switch_fab",
"switch_lot",
"switch_wafer",
"switch_wafer_loc_x",
"switch_wafer_loc_y",
"switch_model",
"switch_revision",
"switch_serial",
"switch_slot"
]
}
]

[fields.rack_id]
Expand Down Expand Up @@ -53,6 +66,26 @@ description = "Revision number of the switch being managed"
type = "uuid"
description = "ID of the switch being managed"

[fields.switch_fab]
type = "string"
description = "Fabric the switch the link is on"

[fields.switch_lot]
type = "string"
description = "Lot number of the switch the link is on"

[fields.switch_wafer]
type = "u8"
description = "Wafer number of the switch the link is on"

[fields.switch_wafer_loc_x]
type = "i8"
description = "X-coordinate wafer location of the switch the link is on"

[fields.switch_wafer_loc_y]
type = "i8"
description = "Y-coordinate wafer location of the switch the link is on"

[fields.switch_serial]
type = "string"
description = "Serial number of the switch being managed"
Expand Down

0 comments on commit 9f33faf

Please sign in to comment.