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
Copy file name to clipboardExpand all lines: docs/operators/aws_cloudwatch_input.md
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,9 @@ You can provide `profile` to specify which credential set to use from a Shared C
19
19
| --- | --- | --- |
20
20
|`id`|`aws_cloudwatch_input`| A unique identifier for the operator. |
21
21
|`output`| Next in pipeline | The connected operator(s) that will receive all outbound entries. |
22
-
|`log_group_name`| required | The Cloudwatch Logs Log Group Name. |
22
+
|`log_group_name`|| The Cloudwatch Logs Log Group Name. Deprecated, use `log_groups` or `log_group_prefix`. |
23
+
|`log_groups`|| List of Cloudwatch Log groups. |
24
+
|`log_group_prefix`|| Log group name prefix. This will detect any log group that starts with the prefix. |
23
25
|`region`| required | The AWS Region to be used. |
24
26
|`log_stream_name_prefix`|| The log stream name prefix to use. This will find any log stream name in the group with the starting prefix. Cannot be used with `log_stream_names`|
25
27
|`log_stream_names`|| An array of log stream names to get events from. Cannot be used with `log_stream_name_prefix`|
@@ -139,3 +141,19 @@ pipeline:
139
141
}
140
142
}
141
143
```
144
+
145
+
#### Log Group Name, Log Groups, Log Group Prefix
146
+
147
+
`log_group_prefix`, `log_groups`, and `log_group_name` can be combined.
0 commit comments