File tree Expand file tree Collapse file tree 1 file changed +28
-6
lines changed Expand file tree Collapse file tree 1 file changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -67,14 +67,36 @@ See Google's [official documentation](https://cloud.google.com/bigquery/docs/ref
6767
6868If 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 %}
You can’t perform that action at this time.
0 commit comments