This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
62 lines (62 loc) · 1.6 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
options:
port:
type: int
default: 4242
description: |
The TCP port TSD should use for communications.
bind:
type: string
default: 0.0.0.0
description: |
The IPv4 network address to bind to.
tcp_no_delay:
type: boolean
default: True
description: |
Disable Nagel's algorithm.
keep_alive:
type: boolean
default: True
description: |
Determines whether or not to send keepalive packets to peers.
reuse_address:
type: boolean
default: True
description: |
Determines if the same socket should be used for new connections.
worker_threads:
type: int
default: 8
description: |
Number of worker threads dedicated to Netty.
async_io:
type: boolean
default: True
description: |
Whether or not to use NIO or tradditional blocking IO.
mode:
type: string
default: rw
description: |
Whether or not the TSD will allow writing data points.
Must be either "rw" to allow writing data or "ro" to block data point writes.
enable_chunked:
type: boolean
default: True
description: |
Whether or not to enable incoming chunk support for the HTTP RPC.
auto_create_metrics:
type: boolean
default: True
description: |
Whether or not to automatically create UIDs for new metric types.
enable_compaction:
type: boolean
default: True
description: |
Whether or not to enable data compaction in HBase.
flush_interval:
type: int
default: 1000
description: |
How often, in milliseconds, to flush the data point queue to storage.