forked from telenornms/skogul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.go
272 lines (246 loc) · 6.89 KB
/
data.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
/*
* skogul, core data structures
*
* Copyright (c) 2019-2020 Telenor Norge AS
* Author(s):
* - Kristian Lyngstøl <kly@kly.no>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
package skogul
import (
"encoding/json"
"fmt"
"time"
)
var dataLog = Logger("core", "data")
/*
Container is the top-level object for one or more metric.
If a Template is provided, it will used as the initial value for each of
the metrics - this is expanded by the transformers.Template transformers,
and internal code does not need to worry about this.
A single Container instance is typically the result of a single POST to the
HTTP receiver or similar.
*/
type Container struct {
Template *Metric `json:"template,omitempty"`
Metrics []*Metric `json:"metrics"`
}
/*
Metric is a collection of measurements related to the same metadata and
point in time.
A good example of a single metric is port statistics for a single interface
on a router.
Both Metadata and Data is proided. The difference is generally in how data
is accessed. Metadata is data you will search for - e.g. the name of the
router, the name of the interface, etc. It is also possible to add more
dynamic data as metadata, such as OS versions, but exactly how this will be
handled will be up to underlying storage engines. E.g.: for influxdb, anything
in metadata will be an (indexed) tag, so having reasonably rich metadata is
perfectly fine, but you may want to keep an eye on the granularity.
A simple rule of thumb:
Metadata is what you search with.
Data is what you search for.
Example:
{
"time": "2019-03-25T12:00:00Z",
"metadata": {
"device": "routera",
"os": "JUNOS 15.4R1",
"chassisId": "something"
},
"data": {
"uptime": 124125124,
"cputemp": 22
}
}
It is possible to have nested data, however, it is NOT a requirement
that a sender accepts this. And in general, it is better to "flatten"
out data into multiple metrics instead. This can be done with a
(custom) transformer.
Example of a nested structure:
{
"time": "2019-03-25T12:00:00Z",
"metadata": {
"device": "routera",
"os": "JUNOS 15.4R1",
"chassisId": "something"
},
"data": {
"ports": {
"ge-0/0/0": {
"ifHCInOctets": 5,
"ifHCOutOctets": 10
},
"ge-0/0/1": {
"ifHCInOctets": 2,
"ifHCOutOctets": 20
}
}
}
}
This is legal, but it's probably wise to use a transformer to change it into:
{
"time": "2019-03-25T12:00:00Z",
"metadata": {
"device": "routera",
"os": "JUNOS 15.4R1",
"chassisId": "something",
"port": "ge-0/0/0"
},
"data": {
"ifHCInOctets": 5,
"ifHCOutOctets": 10
}
}
},
{
"time": "2019-03-25T12:00:00Z",
"metadata": {
"device": "routera",
"os": "JUNOS 15.4R1",
"chassisId": "something",
"port": "ge-0/0/1"
},
"data": {
"ifHCInOctets": 2,
"ifHCOutOctets": 20
}
}
}
*/
type Metric struct {
Time *time.Time `json:"timestamp,omitempty"`
Metadata map[string]interface{} `json:"metadata,omitempty"`
Data map[string]interface{} `json:"data,omitempty"`
}
// Validate a single metric.
func (m *Metric) validate() error {
if m.Time == nil {
return fmt.Errorf("missing timestamp for metric(%s)", m.Describe())
}
if m.Data == nil {
return fmt.Errorf("missing data for metric(%s)", m.Describe())
}
if len(m.Data) <= 0 {
return fmt.Errorf("empty data for metric(%s)", m.Describe())
}
return nil
}
/*
Validate checks the validity of the container, verifying that it follows
the exepcted spec. It should be called by any HTTP receiver after
accepting a Container from an external source. It is NOT required
nor recommended to use Validate in senders - the data is already
validated by that time.
*/
func (c *Container) Validate(IgnorePartialErrors bool) error {
if c.Metrics == nil {
return fmt.Errorf("missing metrics[] data.")
}
if len(c.Metrics) <= 0 {
return fmt.Errorf("empty metrics[] data.")
}
var err error
ok := 0
ignored := 0
valids := make([]*Metric, 0)
for _, m := range c.Metrics {
err = m.validate()
if err != nil && !IgnorePartialErrors {
return err
}
if err != nil {
dataLog.WithError(err).Infof("Ignoring metric with failed validation. %s", m.Describe())
ignored++
continue
}
if IgnorePartialErrors {
valids = append(valids, m)
}
ok++
}
if ok == 0 {
return fmt.Errorf("after ignoring %d invalid metrics, there are 0 valid metrics left to send. Last error: %w", ignored, err)
}
if IgnorePartialErrors {
c.Metrics = valids
}
return nil
}
// Describe tries to briefly describe a metric.
//
// FIXME: In addition to only including the first X fields, it should
// probably also look at raw size, as logging an entire telemetry packet is
// a bit much. On the other hand, this should be configurable as it's also
// useful...
func (m Metric) Describe() string {
metadata := 0
mfields := ""
data := 0
dfields := ""
if m.Metadata != nil {
metadata = len(m.Metadata)
i := 0
for idx, v := range m.Metadata {
if i >= 5 || i >= metadata {
break
}
i++
mfields = fmt.Sprintf("%s [%s=%v]", mfields, idx, v)
}
}
if m.Data != nil {
data = len(m.Data)
i := 0
for idx, v := range m.Data {
if i >= 5 || i >= data {
break
}
i++
dfields = fmt.Sprintf("%s [%s=%v]", dfields, idx, v)
}
}
return fmt.Sprintf("%d metadatafields and %d data-fields, First 5 Metadata fields: %s Data: %s", metadata, data, mfields, dfields)
}
// Describe returns key properties of the container useful for debugging
// without excessively spamming the log.
func (c Container) Describe() string {
m0 := ""
if c.Metrics != nil && len(c.Metrics) > 0 {
m0 = c.Metrics[0].Describe()
}
return fmt.Sprintf("Container(%d metrics, Metric[0]: %s", len(c.Metrics), m0)
}
// String returns a stringified variant of the container
// XXX: Do not use? Use Describe instead. Should we just replace String
// XXX: with Describe?
func (c Container) String() string {
b, err := json.MarshalIndent(c, "", " ")
if err != nil {
dataLog.WithError(err).Error("Unable to marshal JSON")
return ""
}
return fmt.Sprintf("%s", b)
}
/*
Duration provides a wrapper around time.Duration to add JSON marshalling
and unmarshalling. It is used whenever time.Duration needs to be exposed in
configuration.
*/
type Duration struct {
time.Duration
}