forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_resolver_debug.go
46 lines (39 loc) · 1.02 KB
/
context_resolver_debug.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
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
package aggregator
import (
"encoding/json"
"io"
"github.com/DataDog/datadog-agent/pkg/metrics"
)
// ContextDebugRepr is the on-disk representation of a context.
type ContextDebugRepr struct {
Name string
Host string
Type string
TaggerTags []string
MetricTags []string
NoIndex bool
Source metrics.MetricSource
}
func (cr *contextResolver) dumpContexts(dest io.Writer) error {
enc := json.NewEncoder(dest)
for _, e := range cr.contextsByKey {
c := e.context
err := enc.Encode(ContextDebugRepr{
Name: c.Name,
Host: c.Host,
Type: c.mtype.String(),
TaggerTags: c.taggerTags.Tags(),
MetricTags: c.metricTags.Tags(),
NoIndex: c.noIndex,
Source: c.source,
})
if err != nil {
return err
}
}
return nil
}