|
1 | 1 | ---
|
2 |
| -title: Lambda Promtail client |
| 2 | +title: Lambda Promtail client |
3 | 3 | menuTitle: Lambda Promtail
|
4 | 4 | description: Configuring the Lambda Promtail client to send logs to Loki.
|
5 |
| -aliases: |
| 5 | +aliases: |
6 | 6 | - ../clients/lambda-promtail/
|
7 | 7 | weight: 700
|
8 | 8 | ---
|
9 | 9 |
|
10 |
| -# Lambda Promtail client |
| 10 | +# Lambda Promtail client |
11 | 11 |
|
12 | 12 | Grafana Loki includes [Terraform](https://www.terraform.io/) and [CloudFormation](https://aws.amazon.com/cloudformation/) for shipping Cloudwatch, Cloudtrail, VPC Flow Logs and loadbalancer logs to Loki via a [lambda function](https://aws.amazon.com/lambda/). This is done via [lambda-promtail](https://github.com/grafana/loki/blob/main/tools/lambda-promtail) which processes cloudwatch events and propagates them to Loki (or a Promtail instance) via the push-api [scrape config]({{< relref "../../send-data/promtail/configuration#loki_push_api" >}}).
|
13 | 13 |
|
@@ -161,6 +161,113 @@ Incoming logs can have seven special labels assigned to them which can be used i
|
161 | 161 | - `__aws_s3_log_lb`: The name of the loadbalancer.
|
162 | 162 | - `__aws_s3_log_lb_owner`: The Account ID of the loadbalancer owner.
|
163 | 163 |
|
| 164 | +## Relabeling Configuration |
| 165 | + |
| 166 | +Lambda-promtail supports Prometheus-style relabeling through the `RELABEL_CONFIGS` environment variable. This allows you to modify, keep, or drop labels before sending logs to Loki. The configuration is provided as a JSON array of relabel configurations. The relabeling functionality follows the same principles as Prometheus relabeling - for a detailed explanation of how relabeling works, see [How relabeling in Prometheus works](https://grafana.com/blog/2022/03/21/how-relabeling-in-prometheus-works/). |
| 167 | + |
| 168 | +Example configurations: |
| 169 | + |
| 170 | +1. Rename a label and capture regex groups: |
| 171 | +```json |
| 172 | +{ |
| 173 | + "RELABEL_CONFIGS": [ |
| 174 | + { |
| 175 | + "source_labels": ["__aws_log_type"], |
| 176 | + "target_label": "log_type", |
| 177 | + "action": "replace", |
| 178 | + "regex": "(.*)", |
| 179 | + "replacement": "${1}" |
| 180 | + } |
| 181 | + ] |
| 182 | +} |
| 183 | +``` |
| 184 | + |
| 185 | +2. Keep only specific log types (useful for filtering): |
| 186 | +```json |
| 187 | +{ |
| 188 | + "RELABEL_CONFIGS": [ |
| 189 | + { |
| 190 | + "source_labels": ["__aws_log_type"], |
| 191 | + "regex": "s3_.*", |
| 192 | + "action": "keep" |
| 193 | + } |
| 194 | + ] |
| 195 | +} |
| 196 | +``` |
| 197 | + |
| 198 | +3. Drop internal AWS labels (cleanup): |
| 199 | +```json |
| 200 | +{ |
| 201 | + "RELABEL_CONFIGS": [ |
| 202 | + { |
| 203 | + "regex": "__aws_.*", |
| 204 | + "action": "labeldrop" |
| 205 | + } |
| 206 | + ] |
| 207 | +} |
| 208 | +``` |
| 209 | + |
| 210 | +4. Multiple relabeling rules (combining different actions): |
| 211 | +```json |
| 212 | +{ |
| 213 | + "RELABEL_CONFIGS": [ |
| 214 | + { |
| 215 | + "source_labels": ["__aws_log_type"], |
| 216 | + "target_label": "log_type", |
| 217 | + "action": "replace", |
| 218 | + "regex": "(.*)", |
| 219 | + "replacement": "${1}" |
| 220 | + }, |
| 221 | + { |
| 222 | + "source_labels": ["__aws_s3_log_lb"], |
| 223 | + "target_label": "loadbalancer", |
| 224 | + "action": "replace" |
| 225 | + }, |
| 226 | + { |
| 227 | + "regex": "__aws_.*", |
| 228 | + "action": "labeldrop" |
| 229 | + } |
| 230 | + ] |
| 231 | +} |
| 232 | +``` |
| 233 | + |
| 234 | +### Supported Actions |
| 235 | + |
| 236 | +The following actions are supported, matching Prometheus relabeling capabilities: |
| 237 | + |
| 238 | +- `replace`: Replace a label value with a new value using regex capture groups |
| 239 | +- `keep`: Keep entries where labels match the regex (useful for filtering) |
| 240 | +- `drop`: Drop entries where labels match the regex (useful for excluding) |
| 241 | +- `hashmod`: Set a label to the modulus of a hash of labels (useful for sharding) |
| 242 | +- `labelmap`: Copy labels to other labels based on regex matching |
| 243 | +- `labeldrop`: Remove labels matching the regex pattern |
| 244 | +- `labelkeep`: Keep only labels matching the regex pattern |
| 245 | +- `lowercase`: Convert label values to lowercase |
| 246 | +- `uppercase`: Convert label values to uppercase |
| 247 | + |
| 248 | +### Configuration Fields |
| 249 | + |
| 250 | +Each relabel configuration supports these fields (all fields are optional except for `action`): |
| 251 | + |
| 252 | +- `source_labels`: List of label names to use as input for the action |
| 253 | +- `separator`: String to join source label values (default: ";") |
| 254 | +- `target_label`: Label to modify (required for replace and hashmod actions) |
| 255 | +- `regex`: Regular expression to match against (defaults to "(.+)" for most actions) |
| 256 | +- `replacement`: Replacement pattern for matched regex, supports ${1}, ${2}, etc. for capture groups |
| 257 | +- `modulus`: Modulus for hashmod action |
| 258 | +- `action`: One of the supported actions listed above |
| 259 | + |
| 260 | +### Important Notes |
| 261 | + |
| 262 | +1. Relabeling is applied after merging extra labels and dropping labels specified by `DROP_LABELS`. |
| 263 | +2. If all labels are removed after relabeling, the log entry will be dropped entirely. |
| 264 | +3. The relabeling configuration follows the same format as Prometheus's relabel_configs, making it familiar for users of Prometheus. |
| 265 | +4. Relabeling rules are processed in order, and each rule can affect the input of subsequent rules. |
| 266 | +5. Regular expressions in the `regex` field support full RE2 syntax. |
| 267 | +6. For the `replace` action, if the `regex` doesn't match, the target label remains unchanged. |
| 268 | + |
| 269 | +For more details about how relabeling works and advanced use cases, refer to the [Prometheus relabeling blog post](https://grafana.com/blog/2022/03/21/how-relabeling-in-prometheus-works/). |
| 270 | + |
164 | 271 | ## Limitations
|
165 | 272 |
|
166 | 273 | ### Promtail labels
|
|
0 commit comments