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

Add basic fabric link monitoring counters and states handling. #2988

Merged
merged 19 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
0f252f1
Add basic fabric link monitoring counters and states handling.
jfeng-arista Dec 11, 2023
0fc062e
Add basic fabric link monitoring counters and states handling.
jfeng-arista Dec 11, 2023
21684f3
Add basic fabric link monitoring counters and states handling.
jfeng-arista Dec 11, 2023
5b6ee89
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Dec 13, 2023
55e7d74
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Dec 16, 2023
21c36d5
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Dec 28, 2023
4b238db
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Jan 9, 2024
36f8b2a
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Jan 22, 2024
39b5ff3
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Jan 23, 2024
0c03411
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Jan 24, 2024
f893a01
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Feb 8, 2024
6d0fe45
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Feb 14, 2024
f219d10
Merge branch 'master' into master-fabric-link-monitor
prsunny Feb 24, 2024
31dfd3e
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Feb 28, 2024
d6ee34d
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Feb 29, 2024
8503e09
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Mar 11, 2024
70fccf4
revised based on review comments about some identation issues and the…
jfeng-arista Mar 15, 2024
d6a615b
Merge branch 'master' into master-fabric-link-monitor
jfeng-arista Mar 15, 2024
f8d8d54
Cleanup some extra getFabricPortList call.
jfeng-arista Mar 15, 2024
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
4 changes: 2 additions & 2 deletions cfgmgr/fabricmgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ bool FabricMgr::writeConfigToAppDb(const std::string &key, const std::string &fi
if (key == "FABRIC_MONITOR_DATA")
{
m_appFabricMonitorTable.set(key, fvs);
SWSS_LOG_NOTICE("Write FABRIC_MONITOR:%s %s to %s", key.c_str(), field.c_str(), value.c_str());
SWSS_LOG_INFO("Write FABRIC_MONITOR:%s %s to %s", key.c_str(), field.c_str(), value.c_str());
}
else
{
m_appFabricPortTable.set(key, fvs);
SWSS_LOG_NOTICE("Write FABRIC_PORT:%s %s to %s", key.c_str(), field.c_str(), value.c_str());
SWSS_LOG_INFO("Write FABRIC_PORT:%s %s to %s", key.c_str(), field.c_str(), value.c_str());
}

return true;
Expand Down
Loading
Loading