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

Updated the files for double braces error #975

Merged
merged 1 commit into from
Apr 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion doc/DUT_monitor_HLD.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Display output of the following commands:

+ df -h --total /*
+ ps aux --sort rss
+ docker stats --all --format "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}"
+ docker stats --all --format {% raw %} "table {{.Name}}\t{{.CPUPerc}}\t{{.MemUsage}}" {% endraw %}

### Commands to fetch monitoring data

Expand Down
2 changes: 2 additions & 0 deletions doc/SAI_failure_handling/SAI_failure_handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ An ERROR_DB will be introduced to escalate the failures from orchagent to upper
The schema of ERROR_DB is designed as follows:

```
{% raw %}
ERROR_{{DB_TYPE}}_{{TABLE_TYPE}}_TABLE|entry
"failed_orch": {{failed orch type}}
"failed_SAI": {{failed SAI type}}
Expand All @@ -76,6 +77,7 @@ ERROR_{{DB_TYPE}}_{{TABLE_TYPE}}_TABLE|entry
"attributes": "attr_type0,attr_type1,..." (Optional)
"attr_values": "attr_value0,attr_value1,..." (Optional)
"counter": {{count}}
{% endraw %}
```

The table and key in ERROR_DB correspond to the DB, table, and key where SAI failures happen (e.g., SAI failure happens when conducting operations for APPL_DB entry `ROUTE_TABLE:0.0.0.0/0`, the corresponding key in ERROR_DB should be `ERROR_APPL_ROUTE_TABLE:0.0.0.0/0`).
Expand Down