forked from galaxydi/go-loghub
-
Notifications
You must be signed in to change notification settings - Fork 113
/
model.go
313 lines (282 loc) · 10.3 KB
/
model.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
package sls
import (
"encoding/json"
"net/http"
"net/url"
"strconv"
"strings"
)
// GetLogRequest for GetLogsV2
type GetLogRequest struct {
From int64 `json:"from"` // unix time, eg time.Now().Unix() - 900
To int64 `json:"to"` // unix time, eg time.Now().Unix()
Topic string `json:"topic"` // @note topic is not used anymore, use __topic__ : xxx in query instead
Lines int64 `json:"line"` // max 100; offset, lines and reverse is ignored when use SQL in query
Offset int64 `json:"offset"`
Reverse bool `json:"reverse"`
Query string `json:"query"`
PowerSQL bool `json:"powerSql"`
FromNsPart int32 `json:"fromNs"`
ToNsPart int32 `json:"toNs"`
NeedHighlight bool `json:"highlight"`
IsAccurate bool `json:"accurate"`
}
func (glr *GetLogRequest) ToURLParams() url.Values {
urlVal := url.Values{}
urlVal.Add("type", "log")
urlVal.Add("from", strconv.Itoa(int(glr.From)))
urlVal.Add("to", strconv.Itoa(int(glr.To)))
urlVal.Add("topic", glr.Topic)
urlVal.Add("line", strconv.Itoa(int(glr.Lines)))
urlVal.Add("offset", strconv.Itoa(int(glr.Offset)))
urlVal.Add("reverse", strconv.FormatBool(glr.Reverse))
urlVal.Add("powerSql", strconv.FormatBool(glr.PowerSQL))
urlVal.Add("query", glr.Query)
urlVal.Add("fromNs", strconv.Itoa(int(glr.FromNsPart)))
urlVal.Add("toNs", strconv.Itoa(int(glr.ToNsPart)))
urlVal.Add("highlight", strconv.FormatBool(glr.NeedHighlight))
urlVal.Add("accurate", strconv.FormatBool(glr.IsAccurate))
return urlVal
}
type PullLogRequest struct {
Project string
Logstore string
ShardID int
Cursor string
EndCursor string
LogGroupMaxCount int
Query string
// Deprecated: PullMode is not used
PullMode string
}
func (plr *PullLogRequest) ToURLParams() url.Values {
urlVal := url.Values{}
urlVal.Add("type", "logs")
urlVal.Add("cursor", plr.Cursor)
urlVal.Add("count", strconv.Itoa(plr.LogGroupMaxCount))
if plr.EndCursor != "" {
urlVal.Add("end_cursor", plr.EndCursor)
}
if plr.Query != "" {
urlVal.Add("query", plr.Query)
urlVal.Add("pullMode", "scan_on_stream")
}
return urlVal
}
type PullLogMeta struct {
NextCursor string
RawSize int
RawSizeBeforeQuery int
RawDataCountBeforeQuery int
}
// GetHistogramsResponse defines response from GetHistograms call
type SingleHistogram struct {
Progress string `json:"progress"`
Count int64 `json:"count"`
From int64 `json:"from"`
To int64 `json:"to"`
}
type GetHistogramsResponse struct {
Progress string `json:"progress"`
Count int64 `json:"count"`
Histograms []SingleHistogram `json:"histograms"`
}
func (resp *GetHistogramsResponse) IsComplete() bool {
return strings.ToLower(resp.Progress) == "complete"
}
// GetLogsResponse defines response from GetLogs call
type GetLogsResponse struct {
Progress string `json:"progress"`
Count int64 `json:"count"`
Logs []map[string]string `json:"logs"`
Contents string `json:"contents"`
HasSQL bool `json:"hasSQL"`
Header http.Header `json:"header"`
}
type MetaTerm struct {
Key string `json:"key"`
Term string `json:"term"`
}
type PhraseQueryInfoV3 struct {
ScanAll *bool `json:"scanAll,omitempty"`
BeginOffset *int64 `json:"beginOffset,omitempty"`
EndOffset *int64 `json:"endOffset,omitempty"`
EndTime *int64 `json:"endTime,omitempty"`
}
type GetLogsV3ResponseMeta struct {
Progress string `json:"progress"`
AggQuery string `json:"aggQuery"`
WhereQuery string `json:"whereQuery"`
HasSQL bool `json:"hasSQL"`
ProcessedRows int64 `json:"processedRows"`
ElapsedMillisecond int64 `json:"elapsedMillisecond"`
CpuSec float64 `json:"cpuSec"`
CpuCores float64 `json:"cpuCores"`
Limited int64 `json:"limited"`
Count int64 `json:"count"`
ProcessedBytes int64 `json:"processedBytes"`
TelemetryType string `json:"telementryType"` // telementryType, ignore typo
PowerSql bool `json:"powerSql"`
InsertedSql string `json:"insertedSQL"`
Keys []string `json:"keys,omitempty"`
Terms []MetaTerm `json:"terms,omitempty"`
Marker *string `json:"marker,omitempty"`
Mode *int `json:"mode,omitempty"`
PhraseQueryInfo *PhraseQueryInfoV3 `json:"phraseQueryInfo,omitempty"`
Shard *int `json:"shard,omitempty"`
ScanBytes *int64 `json:"scanBytes,omitempty"`
IsAccurate *bool `json:"isAccurate,omitempty"`
ColumnTypes []string `json:"columnTypes,omitempty"`
Highlights []map[string]string `json:"highlights,omitempty"`
}
type PhraseQueryInfoV2 struct {
ScanAll string `json:"scanAll,omitempty"`
BeginOffset string `json:"beginOffset,omitempty"`
EndOffset string `json:"endOffset,omitempty"`
EndTime string `json:"endTime,omitempty"`
}
func (s *PhraseQueryInfoV3) toPhraseQueryInfoV2() *PhraseQueryInfoV2 {
if s == nil {
return nil
}
return &PhraseQueryInfoV2{
ScanAll: BoolPtrToStringNum(s.ScanAll),
BeginOffset: Int64PtrToString(s.BeginOffset),
EndOffset: Int64PtrToString(s.EndOffset),
EndTime: Int64PtrToString(s.EndTime),
}
}
type QueryInfoV2 struct {
Keys []string `json:"keys,omitempty"`
Terms [][]string `json:"terms,omitempty"` // [[term, key], [term2, key2]]
Limited string `json:"limited,omitempty"`
Marker *string `json:"marker,omitempty"`
Mode *int `json:"mode,omitempty"`
PhraseQueryInfo *PhraseQueryInfoV2 `json:"phraseQueryInfo,omitempty"`
Shard *int `json:"shard,omitempty"`
ScanBytes *int64 `json:"scanBytes,omitempty"`
IsAccurate *int64 `json:"isAccurate,omitempty"`
ColumnTypes []string `json:"columnTypes,omitempty"`
Highlights []map[string]string `json:"highlight,omitempty"`
}
func (meta *GetLogsV3ResponseMeta) constructQueryInfo() (string, error) {
var terms [][]string
for _, term := range meta.Terms {
terms = append(terms, []string{term.Term, term.Key})
}
var isAccurate *int64
if meta.IsAccurate != nil {
res := BoolToInt64(*meta.IsAccurate)
isAccurate = &res
}
limited := ""
if meta.Limited != 0 {
limited = strconv.FormatInt(meta.Limited, 10)
}
queryInfo := &QueryInfoV2{
Keys: meta.Keys,
Terms: terms,
Limited: limited,
Marker: meta.Marker,
Mode: meta.Mode,
PhraseQueryInfo: meta.PhraseQueryInfo.toPhraseQueryInfoV2(),
Shard: meta.Shard,
ScanBytes: meta.ScanBytes,
IsAccurate: isAccurate,
ColumnTypes: meta.ColumnTypes,
Highlights: meta.Highlights,
}
contents, err := json.Marshal(queryInfo)
if err != nil {
return "", err
}
return string(contents), nil
}
// GetLogsV3Response defines response from GetLogs call
type GetLogsV3Response struct {
Meta GetLogsV3ResponseMeta `json:"meta"`
Logs []map[string]string `json:"data"`
}
func (resp *GetLogsV3Response) IsComplete() bool {
return strings.ToLower(resp.Meta.Progress) == "complete"
}
// GetLogLinesResponse defines response from GetLogLines call
// note: GetLogLinesResponse.Logs is nil when use GetLogLinesResponse
type GetLogLinesResponse struct {
GetLogsResponse
Lines []json.RawMessage
}
func (resp *GetLogsResponse) IsComplete() bool {
return strings.ToLower(resp.Progress) == "complete"
}
func (resp *GetLogsResponse) GetKeys() (error, []string) {
type Content map[string][]interface{}
var content Content
err := json.Unmarshal([]byte(resp.Contents), &content)
if err != nil {
return err, nil
}
result := []string{}
for _, v := range content["keys"] {
result = append(result, v.(string))
}
return nil, result
}
type GetContextLogsResponse struct {
Progress string `json:"progress"`
TotalLines int64 `json:"total_lines"`
BackLines int64 `json:"back_lines"`
ForwardLines int64 `json:"forward_lines"`
Logs []map[string]string `json:"logs"`
}
func (resp *GetContextLogsResponse) IsComplete() bool {
return strings.ToLower(resp.Progress) == "complete"
}
type JsonKey struct {
Type string `json:"type"`
Alias string `json:"alias,omitempty"`
DocValue bool `json:"doc_value,omitempty"`
}
// IndexKey ...
type IndexKey struct {
Token []string `json:"token"` // tokens that split the log line.
CaseSensitive bool `json:"caseSensitive"`
Type string `json:"type"` // text, long, double
DocValue bool `json:"doc_value,omitempty"`
Alias string `json:"alias,omitempty"`
Chn bool `json:"chn"` // parse chinese or not
JsonKeys map[string]*JsonKey `json:"json_keys,omitempty"`
}
type IndexLine struct {
Token []string `json:"token"`
CaseSensitive bool `json:"caseSensitive"`
IncludeKeys []string `json:"include_keys,omitempty"`
ExcludeKeys []string `json:"exclude_keys,omitempty"`
Chn bool `json:"chn"` // parse chinese or not
}
// Index is an index config for a log store.
type Index struct {
Keys map[string]IndexKey `json:"keys,omitempty"`
Line *IndexLine `json:"line,omitempty"`
Ttl uint32 `json:"ttl,omitempty"`
MaxTextLen uint32 `json:"max_text_len,omitempty"`
LogReduce bool `json:"log_reduce"`
LogReduceWhiteListDict []string `json:"log_reduce_white_list,omitempty"`
LogReduceBlackListDict []string `json:"log_reduce_black_list,omitempty"`
}
// CreateDefaultIndex return a full text index config
func CreateDefaultIndex() *Index {
return &Index{
Line: &IndexLine{
Token: []string{" ", "\n", "\t", "\r", ",", ";", "[", "]", "{", "}", "(", ")", "&", "^", "*", "#", "@", "~", "=", "<", ">", "/", "\\", "?", ":", "'", "\""},
CaseSensitive: false,
},
}
}
type GetMeteringModeResponse struct {
MeteringMode string `json:"meteringMode"`
}
const (
CHARGE_BY_FUNCTION = "ChargeByFunction"
CHARGE_BY_DATA_INGEST = "ChargeByDataIngest"
)