Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[202012] VxLAN Tunnel Counters and Rates implementation #36

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ec36697
VxLAN Tunnel Counters and Rates implementation (#8369)
dgsudharsan Nov 1, 2021
347b2dd
[ci/build]: Upgrade SONiC package versions (#11757)
mssonicbld Aug 29, 2022
8e03939
[submodules] Upgrade HEAD pointer of sonic-mgmt-framework to fix CG a…
liushilongbuaa Aug 30, 2022
ed68e4c
[ci/build]: Upgrade SONiC package versions (#11896)
mssonicbld Aug 30, 2022
932af45
[actions] Update github actions label and automerge. (#11736) (#11909)
liushilongbuaa Aug 31, 2022
c1712b8
[202012] DellEMC: S6000, S6100, Z9332f - Add capabilities fields in p…
ArunSaravananBalachandran Aug 31, 2022
8c57f05
[Arista7050cx3] TD3 SKU changes for pg headroom value after interop t…
developfast Aug 31, 2022
0bf0133
[202012][submodule] Advance sonic-swss-common pointer (#11888)
dprital Sep 1, 2022
9d3194c
Avoid write_standby in warm restart context (#11283)
zjswhhh Jun 30, 2022
4ab8317
[write_standby] update write_standby.py script (#11650)
yxieca Aug 9, 2022
f4e5059
[actions] Add github context env in label action. (#11926)
liushilongbuaa Sep 2, 2022
e821dd8
[arp_update]: Set failed IPv6 neighbors to incomplete (#11919)
theasianpianist Sep 2, 2022
3d81b61
[202012][kernel][swss]: Linux kernel and SWSS submodule update (#11929)
theasianpianist Sep 3, 2022
484402f
[202012] [Mellanox] [SKU] Mellanox-SN4700-C128 SKU added (11574) (#11…
vivekrnv Sep 4, 2022
586a623
[ci/build]: Upgrade SONiC package versions (#11911)
mssonicbld Sep 4, 2022
5357bdb
Support Restapi/gnmi control plane acls in 202012 branch (#11903)
ZhaohuiS Sep 5, 2022
1411205
[actions] Remove approve step in label action. (#11968)
liushilongbuaa Sep 5, 2022
143af80
[ci/build]: Upgrade SONiC package versions (#11976)
mssonicbld Sep 6, 2022
dfd1727
[sonic-utilities]: Submodule update: (#11957)
theasianpianist Sep 6, 2022
1f437da
Merge remote-tracking branch 'upstream/202012' into vxlan_counters_2012
dgsudharsan Sep 6, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# PG lossless profiles.
# speed cable size xon xoff threshold xon_offset
50000 5m 4608 4608 33792 0 4608
100000 5m 4608 4608 49408 0 4608
50000 40m 4608 4608 36352 0 4608
100000 40m 4608 4608 54528 0 4608
50000 300m 4608 4608 55296 0 4608
100000 300m 4608 4608 92672 0 4608
50000 5m 4608 4608 160000 0 4608
100000 5m 4608 4608 160000 0 4608
50000 40m 4608 4608 160000 0 4608
100000 40m 4608 4608 160000 0 4608
50000 300m 4608 4608 160000 0 4608
100000 300m 4608 4608 160000 0 4608
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# PG lossless profiles.
# speed cable size xon xoff threshold xon_offset
50000 5m 4608 4608 79872 0 4608
100000 5m 4608 4608 54528 0 4608
50000 40m 4608 4608 39936 0 4608
100000 40m 4608 4608 60416 0 4608
50000 300m 4608 4608 61440 0 4608
100000 300m 4608 4608 103680 0 4608
50000 5m 4608 4608 160000 0 4608
100000 5m 4608 4608 160000 0 4608
50000 40m 4608 4608 160000 0 4608
100000 40m 4608 4608 160000 0 4608
50000 300m 4608 4608 160000 0 4608
100000 300m 4608 4608 160000 0 4608
238 changes: 204 additions & 34 deletions device/dell/x86_64-dell_s6000_s1220-r0/platform.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"chassis": {
"name": "S6000",
"status_led": {
"controllable": true,
"colors": ["amber", "blinking amber", "green", "blinking green"]
},
"components": [
{
"name": "BIOS"
Expand All @@ -17,111 +21,277 @@
],
"fans": [
{
"name": "FanTray1-Fan1"
},
{
"name": "FanTray1-Fan2"
},
{
"name": "FanTray2-Fan1"
},
{
"name": "FanTray2-Fan2"
},
{
"name": "FanTray3-Fan1"
},
{
"name": "FanTray3-Fan2"
"name": "FanTray1-Fan1",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray1-Fan2",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray2-Fan1",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray2-Fan2",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray3-Fan1",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray3-Fan2",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
}
],
"fan_drawers":[
{
"name": "FanTray1",
"status_led": {
"controllable": true,
"colors": ["amber", "green", "off"]
},
"fans": [
{
"name": "FanTray1-Fan1"
"name": "FanTray1-Fan1",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray1-Fan2"
"name": "FanTray1-Fan2",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
}
]
},
{
"name": "FanTray2",
"status_led": {
"controllable": true,
"colors": ["amber", "green", "off"]
},
"fans": [
{
"name": "FanTray2-Fan1"
"name": "FanTray2-Fan1",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray2-Fan2"
"name": "FanTray2-Fan2",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
}
]
},
{
"name": "FanTray3",
"status_led": {
"controllable": true,
"colors": ["amber", "green", "off"]
},
"fans": [
{
"name": "FanTray3-Fan1"
"name": "FanTray3-Fan1",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
},
{
"name": "FanTray3-Fan2"
"name": "FanTray3-Fan2",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
}
]
}
],
"psus": [
{
"name": "PSU1",
"status_led": {
"controllable": false
},
"fans": [
{
"name": "PSU1 Fan"
"name": "PSU1 Fan",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
}
],
"thermals": [
{
"name": "PSU1-Sensor 1"
"name": "PSU1-Sensor 1",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
},
{
"name": "PSU1-Sensor 2"
"name": "PSU1-Sensor 2",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
}
]
},
{
"name": "PSU2",
"status_led": {
"controllable": false
},
"fans": [
{
"name": "PSU2 Fan"
"name": "PSU2 Fan",
"speed": {
"controllable": true,
"minimum": 40
},
"status_led": {
"available": false
}
}
],
"thermals": [
{
"name": "PSU2-Sensor 1"
"name": "PSU2-Sensor 1",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
},
{
"name": "PSU2-Sensor 2"
"name": "PSU2-Sensor 2",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
}
]
}
],
"thermals": [
{
"name": "ASIC On-board"
"name": "ASIC On-board",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
},
{
"name": "NIC"
"name": "NIC",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
},
{
"name": "System Front"
"name": "System Front",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
},
{
"name": "DIMM"
"name": "DIMM",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
},
{
"name": "CPU Core 0"
"name": "CPU Core 0",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
},
{
"name": "CPU Core 1"
"name": "CPU Core 1",
"controllable": false,
"low-crit-threshold": false,
"high-crit-threshold": false,
"minimum-recorded": false,
"maximum-recorded": false
}
],
"modules": [],
Expand Down
Loading