Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dmachard committed Jan 17, 2024
1 parent e166c49 commit e90063d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ multiplexer:
# dnstap:
# listen-ip: 0.0.0.0
# listen-port: 6002
# extended-extra-field: true
# extended-support: true
# routing-policy:
# default: [ console ]

Expand All @@ -117,7 +117,7 @@ multiplexer:
# remote-address: 127.0.0.1
# remote-port: 6002
# flush-interval: 5
# extended-extra-field: true
# extended-support: true

# - name: console
# stdout:
Expand Down
7 changes: 3 additions & 4 deletions docs/collectors/collector_dnstap.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Options:
- `reset-conn`: (bool) Reset TCP connection on exit
- `chan-buffer-size`: (integer) channel buffer size used on incoming packet, number of packet before to drop it.
- `disable-dnsparser"`: (bool) disable the minimalist DNS parser
- `extended-extra-field`: (boolen) decode the extended extra field sent by DNScollector
> If the `extended-extra-field` setting is enabled, DNScollector will expect receiving the specific [protobuf structure](./dnsutils/extended_dnstap.proto) in the extra field, which must be sent by another DNS collector.
- `extended-support`: (boolen) decode the extended extra field sent by DNScollector
> If the `extended-support` setting is enabled, DNScollector will expect receiving the specific [protobuf structure](./dnsutils/extended_dnstap.proto) in the extra field, which must be sent by another DNS collector.
> This field will contain additional metadata generated by various transformations such as filtering, ATags, and others.
Default values:
Expand All @@ -37,10 +37,9 @@ dnstap:
reset-conn: true
chan-buffer-size: 65535
disable-dnsparser: false
extended-extra-field: false
extended-support: false
```
## DNS tap Proxifier
Collector that receives DNSTAP traffic and relays it without decoding or transformations.
Expand Down
4 changes: 2 additions & 2 deletions docs/loggers/logger_dnstap.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Options:
* `overwrite-identity`: (boolean) overwrite original identity
* `buffer-size`: (integer) how many DNS messages will be buffered before being sent
* `chan-buffer-size`: (integer) channel buffer size used on incoming dns message, number of messages before to drop it.
* `extended-extra-field`: (boolen) Extend the DNStap message by incorporating additional transformations, such as filtering and ATags, into the extra field.
* `extended-support`: (boolen) Extend the DNStap message by incorporating additional transformations, such as filtering and ATags, into the extra field.

Default values:

Expand All @@ -42,5 +42,5 @@ dnstapclient:
overwrite-identity: false
buffer-size: 100
chan-buffer-size: 65535
extended-extra-field: false
extended-support: false
```

0 comments on commit e90063d

Please sign in to comment.