You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 12, 2022. It is now read-only.
Add option to not publish topic names to Cloudwatch Logs (#58)
* add option to not publish topic names to cloudwatch logs
* fix unit test failure
* add unit tests, improve code coverage
* update documentation
* address PR comments
* make the deprecated constructor use constructor delegation
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,8 @@ An example configuration file called `sample_configuration.yaml` is provided. Wh
119
119
| log_group_name | AWS CloudWatch log group name |*std::string*| 'string'<br/>*note*: Log group names must be unique within a region foran AWS account | ros_log_group |
120
120
| log_stream_name | AWS CloudWatch log stream name |*std::string*| 'string'<br/>*note*: The : (colon) and * (asterisk) characters are not allowed | ros_log_stream |
121
121
| topics | A list of topics to get logs from (excluding `rosout_agg`) |*std::vector<std::string>*|['string', 'string', 'string']|`[]`|
122
-
| min_log_verbosity| The minimum log severity for sending logs selectively to AWS CloudWatch Logs, log messages with a severity lower than `min_log_verbosity` will be ignored |*std::string*| DEBUG/INFO/WARN/ERROR/FATAL | DEBUG |
122
+
| min_log_verbosity | The minimum log severity for sending logs selectively to AWS CloudWatch Logs, log messages with a severity lower than `min_log_verbosity` will be ignored |*std::string*| DEBUG/INFO/WARN/ERROR/FATAL | DEBUG |
123
+
| publish_topic_names | Whether or not to include topic name information in the log messsages that are uploaded to AWS CloudWatch Logs |*bool*| true/false | true |
123
124
| storage_directory | The location where all offline metrics will be stored |*string*| string |~/.ros/cwlogs/ |
124
125
| storage_limit | The maximum size of all offline storage files in KB. Once this limit is reached offline logs will start to be deleted oldest first. |*int*| number | 1048576 |
0 commit comments