summaryrefslogtreecommitdiffstats
path: root/fluent-bit/packaging/testing/smoke/container/fluent-bit.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'fluent-bit/packaging/testing/smoke/container/fluent-bit.yaml')
-rw-r--r--fluent-bit/packaging/testing/smoke/container/fluent-bit.yaml33
1 files changed, 33 insertions, 0 deletions
diff --git a/fluent-bit/packaging/testing/smoke/container/fluent-bit.yaml b/fluent-bit/packaging/testing/smoke/container/fluent-bit.yaml
new file mode 100644
index 00000000..69167e0b
--- /dev/null
+++ b/fluent-bit/packaging/testing/smoke/container/fluent-bit.yaml
@@ -0,0 +1,33 @@
+---
+# Translated according to https://github.com/fluent/fluent-bit/pull/4621
+service:
+ http_server: "on"
+ Health_Check: "on"
+ log_level: debug
+
+pipeline:
+ inputs:
+ - name: random
+ tag: test
+ samples: 10
+
+ filters:
+ - name: lua
+ match: test
+ call: append_tag
+ code: |
+ function append_tag(tag, timestamp, record)
+ new_record = record
+ new_record["tag"] = tag
+ return 1, timestamp, new_record
+ end
+
+ - name: expect
+ match: test
+ key_exists: tag
+ key_val_eq: tag test
+ action: exit
+
+ outputs:
+ - name: stdout
+ match: test