forked from influxdata/influxdb-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.go
202 lines (170 loc) · 6.26 KB
/
options.go
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// Copyright 2020 InfluxData, Inc. All rights reserved.
// Use of this source code is governed by MIT
// license that can be found in the LICENSE file.
package influxdb2
import (
"crypto/tls"
nethttp "net/http"
"time"
"github.com/influxdata/influxdb-client-go/v2/api/http"
"github.com/influxdata/influxdb-client-go/v2/api/write"
)
// Options holds configuration properties for communicating with InfluxDB server
type Options struct {
// LogLevel to filter log messages. Each level mean to log all categories bellow. 0 error, 1 - warning, 2 - info, 3 - debug
logLevel uint
// Writing options
writeOptions *write.Options
// Http options
httpOptions *http.Options
}
// BatchSize returns size of batch
func (o *Options) BatchSize() uint {
return o.WriteOptions().BatchSize()
}
// SetBatchSize sets number of points sent in single request
func (o *Options) SetBatchSize(batchSize uint) *Options {
o.WriteOptions().SetBatchSize(batchSize)
return o
}
// FlushInterval returns flush interval in ms
func (o *Options) FlushInterval() uint {
return o.WriteOptions().FlushInterval()
}
// SetFlushInterval sets flush interval in ms in which is buffer flushed if it has not been already written
func (o *Options) SetFlushInterval(flushIntervalMs uint) *Options {
o.WriteOptions().SetFlushInterval(flushIntervalMs)
return o
}
// RetryInterval returns the retry interval in ms
func (o *Options) RetryInterval() uint {
return o.WriteOptions().RetryInterval()
}
// SetRetryInterval sets retry interval in ms, which is set if not sent by server
func (o *Options) SetRetryInterval(retryIntervalMs uint) *Options {
o.WriteOptions().SetRetryInterval(retryIntervalMs)
return o
}
// MaxRetries returns maximum count of retry attempts of failed writes
func (o *Options) MaxRetries() uint {
return o.WriteOptions().MaxRetries()
}
// SetMaxRetries sets maximum count of retry attempts of failed writes
func (o *Options) SetMaxRetries(maxRetries uint) *Options {
o.WriteOptions().SetMaxRetries(maxRetries)
return o
}
// RetryBufferLimit returns retry buffer limit
func (o *Options) RetryBufferLimit() uint {
return o.WriteOptions().RetryBufferLimit()
}
// SetRetryBufferLimit sets maximum number of points to keep for retry. Should be multiple of BatchSize.
func (o *Options) SetRetryBufferLimit(retryBufferLimit uint) *Options {
o.WriteOptions().SetRetryBufferLimit(retryBufferLimit)
return o
}
// MaxRetryInterval return maximum retry interval in ms. Default 5min.
func (o *Options) MaxRetryInterval() uint {
return o.WriteOptions().MaxRetryInterval()
}
// SetMaxRetryInterval set maximum retry interval in ms
func (o *Options) SetMaxRetryInterval(maxRetryIntervalMs uint) *Options {
o.WriteOptions().SetMaxRetryInterval(maxRetryIntervalMs)
return o
}
// LogLevel returns log level
func (o *Options) LogLevel() uint {
return o.logLevel
}
// SetLogLevel set level to filter log messages. Each level mean to log all categories bellow. Default is ErrorLevel.
// There are four level constant int the log package in this library:
// - ErrorLevel
// - WarningLevel
// - InfoLevel
// - DebugLevel
// The DebugLevel will print also content of writen batches, queries.
// The InfoLevel prints HTTP requests info, among others.
// Set log.Log to nil in order to completely disable logging.
func (o *Options) SetLogLevel(logLevel uint) *Options {
o.logLevel = logLevel
return o
}
// Precision returns time precision for writes
func (o *Options) Precision() time.Duration {
return o.WriteOptions().Precision()
}
// SetPrecision sets time precision to use in writes for timestamp. In unit of duration: time.Nanosecond, time.Microsecond, time.Millisecond, time.Second
func (o *Options) SetPrecision(precision time.Duration) *Options {
o.WriteOptions().SetPrecision(precision)
return o
}
// UseGZip returns true if write request are gzip`ed
func (o *Options) UseGZip() bool {
return o.WriteOptions().UseGZip()
}
// SetUseGZip specifies whether to use GZip compression in write requests.
func (o *Options) SetUseGZip(useGZip bool) *Options {
o.WriteOptions().SetUseGZip(useGZip)
return o
}
// HTTPClient returns the http.Client that is configured to be used
// for HTTP requests. It will return the one that has been set using
// SetHTTPClient or it will construct a default client using the
// other configured options.
func (o *Options) HTTPClient() *nethttp.Client {
return o.httpOptions.HTTPClient()
}
// SetHTTPClient will configure the http.Client that is used
// for HTTP requests. If set to nil, an HTTPClient will be
// generated.
//
// Setting the HTTPClient will cause the other HTTP options
// to be ignored.
// In case of UsersAPI.SignIn() is used, HTTPClient.Jar will be used for storing session cookie.
func (o *Options) SetHTTPClient(c *nethttp.Client) *Options {
o.httpOptions.SetHTTPClient(c)
return o
}
// TLSConfig returns TLS config
func (o *Options) TLSConfig() *tls.Config {
return o.HTTPOptions().TLSConfig()
}
// SetTLSConfig sets TLS configuration for secure connection
func (o *Options) SetTLSConfig(tlsConfig *tls.Config) *Options {
o.HTTPOptions().SetTLSConfig(tlsConfig)
return o
}
// HTTPRequestTimeout returns HTTP request timeout
func (o *Options) HTTPRequestTimeout() uint {
return o.HTTPOptions().HTTPRequestTimeout()
}
// SetHTTPRequestTimeout sets HTTP request timeout in sec
func (o *Options) SetHTTPRequestTimeout(httpRequestTimeout uint) *Options {
o.HTTPOptions().SetHTTPRequestTimeout(httpRequestTimeout)
return o
}
// WriteOptions returns write related options
func (o *Options) WriteOptions() *write.Options {
if o.writeOptions == nil {
o.writeOptions = write.DefaultOptions()
}
return o.writeOptions
}
// HTTPOptions returns HTTP related options
func (o *Options) HTTPOptions() *http.Options {
if o.httpOptions == nil {
o.httpOptions = http.DefaultOptions()
}
return o.httpOptions
}
// AddDefaultTag adds a default tag. DefaultTags are added to each written point.
// If a tag with the same key already exist it is overwritten.
// If a point already defines such a tag, it is left unchanged
func (o *Options) AddDefaultTag(key, value string) *Options {
o.WriteOptions().AddDefaultTag(key, value)
return o
}
// DefaultOptions returns Options object with default values
func DefaultOptions() *Options {
return &Options{logLevel: 0, writeOptions: write.DefaultOptions(), httpOptions: http.DefaultOptions()}
}