Skip to content

Commit 6af4db1

Browse files
authored
Adding YAML examples and layout fixes for output plugin docs with names starting with E through F. Fixes #1909. (#1910)
* Fixing YAML examples and layout for Elasticsearch output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> * Adding YAML examples and layout fixes for File output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> * Syntax fix for File output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> * Adding YAML examples and layout fixes for Flowcounter output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> * Adding YAML examples and layout fixes for Forward output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> * Adding YAML examples and layout fixes for GELF output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> * Adding YAML examples and layout fixes for Google Chronicle output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> * Adding YAML examples and layout fixes for Google Cloud BigQuery output plugin. Part of issue #1909. Signed-off-by: Eric D. Schabell <[email protected]> --------- Signed-off-by: Eric D. Schabell <[email protected]>
1 parent 40c7c09 commit 6af4db1

File tree

7 files changed

+394
-233
lines changed

7 files changed

+394
-233
lines changed

pipeline/outputs/bigquery.md

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,36 @@ See Google's [official documentation](https://cloud.google.com/bigquery/docs/ref
6767

6868
If you are using a _Google Cloud Credentials File_, the following configuration is enough to get you started:
6969

70+
{% tabs %}
71+
{% tab title="fluent-bit.yaml" %}
72+
73+
```yaml
74+
pipeline:
75+
inputs:
76+
- name: dummy
77+
tag: dummy
78+
79+
outputs:
80+
- name: bigquery
81+
match: '*'
82+
dataset_id: my_dataset
83+
table_id: dummy_table
84+
```
85+
86+
{% endtab %}
87+
{% tab title="fluent-bit.conf" %}
88+
7089
```text
7190
[INPUT]
72-
Name dummy
73-
Tag dummy
91+
Name dummy
92+
Tag dummy
7493

7594
[OUTPUT]
76-
Name bigquery
77-
Match *
78-
dataset_id my_dataset
79-
table_id dummy_table
95+
Name bigquery
96+
Match *
97+
dataset_id my_dataset
98+
table_id dummy_table
8099
```
100+
101+
{% endtab %}
102+
{% endtabs %}

pipeline/outputs/chronicle.md

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,36 @@ See Google's [official documentation](https://cloud.google.com/chronicle/docs/re
4242

4343
If you are using a _Google Cloud Credentials File_, the following configuration is enough to get you started:
4444

45+
{% tabs %}
46+
{% tab title="fluent-bit.yaml" %}
47+
48+
```yaml
49+
pipeline:
50+
inputs:
51+
- name: dummy
52+
tag: dummy
53+
54+
outputs:
55+
- name: chronicle
56+
match: '*'
57+
customer_id: my_customer_id
58+
log_type: my_super_awesome_type
59+
```
60+
61+
{% endtab %}
62+
{% tab title="fluent-bit.conf" %}
63+
4564
```text
4665
[INPUT]
47-
Name dummy
48-
Tag dummy
66+
Name dummy
67+
Tag dummy
4968

5069
[OUTPUT]
51-
Name chronicle
52-
Match *
53-
customer_id my_customer_id
54-
log_type my_super_awesome_type
70+
Name chronicle
71+
Match *
72+
customer_id my_customer_id
73+
log_type my_super_awesome_type
5574
```
75+
76+
{% endtab %}
77+
{% endtabs %}

0 commit comments

Comments
 (0)