forked from jdowning/puppet-influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.pp
More file actions
61 lines (50 loc) · 2.09 KB
/
params.pp
File metadata and controls
61 lines (50 loc) · 2.09 KB
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
# == Class: influxdb::params
# DO NOT CALL DIRECTLY
class influxdb::params {
$ensure = 'installed'
$version = 'latest'
$install_from_repository = false
$config_path = '/opt/influxdb/shared/config.toml'
$hostname = $::hostname
$bind_address = '0.0.0.0'
# [logging]
$logging_level = 'info'
$logging_file = '/opt/influxdb/shared/influxdb.log'
# [admin]
$admin_port = '8083'
$admin_assets = '/opt/influxdb/current/admin'
# [api]
$api_port = '8086'
$api_read_timeout = '5s'
# [input_plugins]
# [raft]
$raft_port = '8090'
$raft_dir = '/opt/influxdb/shared/data/raft'
$raft_election_timeout = '1s'
# [storage]
$storage_dir = '/opt/influxdb/shared/data/db'
$storage_write_buffer_size = '10000'
# [cluster]
$cluster_seed_servers = '[]'
$cluster_protobuf_port = '8099'
$cluster_protobuf_timeout = '2s'
$cluster_protobuf_heartbeat = '200ms'
$cluster_protobuf_min_backoff = '1s'
$cluster_protobuf_max_backoff = '10s'
$cluster_write_buffer_size = '10000'
$cluster_max_response_buffer_size = '100'
$cluster_concurrent_shard_query_limit = '10'
# [leveldb]
$leveldb_max_open_files = '40'
$leveldb_lru_cache_size = '200m'
$leveldb_max_open_shards = '0'
$leveldb_point_batch_size = '100'
$leveldb_write_batch_size = '5000000'
# [sharding]
# [wal]
$wal_dir = '/opt/influxdb/shared/data/wal'
$wal_flush_after = '0'
$wal_bookmark_after = '0'
$wal_index_after = '1000'
$wal_requests_per_logfile = '10000'
}