Skip to content

Commit 6cc6ca0

Browse files
committed
Adding YAML examples and layout fixes for Google Cloud BigQuery output plugin. Part of issue #1909.
Signed-off-by: Eric D. Schabell <[email protected]>
1 parent c13deb7 commit 6cc6ca0

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
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 %}

0 commit comments

Comments
 (0)