Skip to content
Merged
34 changes: 28 additions & 6 deletions pipeline/outputs/bigquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,36 @@ See Google's [official documentation](https://cloud.google.com/bigquery/docs/ref

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

{% tabs %}
{% tab title="fluent-bit.yaml" %}

```yaml
pipeline:
inputs:
- name: dummy
tag: dummy

outputs:
- name: bigquery
match: '*'
dataset_id: my_dataset
table_id: dummy_table
```

{% endtab %}
{% tab title="fluent-bit.conf" %}

```text
[INPUT]
Name dummy
Tag dummy
Name dummy
Tag dummy

[OUTPUT]
Name bigquery
Match *
dataset_id my_dataset
table_id dummy_table
Name bigquery
Match *
dataset_id my_dataset
table_id dummy_table
```

{% endtab %}
{% endtabs %}
34 changes: 28 additions & 6 deletions pipeline/outputs/chronicle.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,36 @@ See Google's [official documentation](https://cloud.google.com/chronicle/docs/re

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

{% tabs %}
{% tab title="fluent-bit.yaml" %}

```yaml
pipeline:
inputs:
- name: dummy
tag: dummy

outputs:
- name: chronicle
match: '*'
customer_id: my_customer_id
log_type: my_super_awesome_type
```

{% endtab %}
{% tab title="fluent-bit.conf" %}

```text
[INPUT]
Name dummy
Tag dummy
Name dummy
Tag dummy

[OUTPUT]
Name chronicle
Match *
customer_id my_customer_id
log_type my_super_awesome_type
Name chronicle
Match *
customer_id my_customer_id
log_type my_super_awesome_type
```

{% endtab %}
{% endtabs %}
Loading