File tree 9 files changed +45
-8
lines changed
9 files changed +45
-8
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,9 @@ replace (
102
102
github.com/DataDog/datadog-agent/pkg/logs/status/utils => ./pkg/logs/status/utils
103
103
github.com/DataDog/datadog-agent/pkg/logs/util/testutils => ./pkg/logs/util/testutils
104
104
github.com/DataDog/datadog-agent/pkg/metrics => ./pkg/metrics/
105
+ github.com/DataDog/datadog-agent/pkg/network/payload => ./pkg/network/payload
105
106
github.com/DataDog/datadog-agent/pkg/networkdevice/profile => ./pkg/networkdevice/profile
107
+ github.com/DataDog/datadog-agent/pkg/networkpath/payload => ./pkg/networkpath/payload
106
108
github.com/DataDog/datadog-agent/pkg/obfuscate => ./pkg/obfuscate
107
109
github.com/DataDog/datadog-agent/pkg/orchestrator/model => ./pkg/orchestrator/model
108
110
github.com/DataDog/datadog-agent/pkg/process/util/api => ./pkg/process/util/api
@@ -575,6 +577,8 @@ require (
575
577
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/impl v0.64.0-devel
576
578
github.com/DataDog/datadog-agent/pkg/config/structure v0.61.0
577
579
github.com/DataDog/datadog-agent/pkg/fips v0.0.0 // indirect
580
+ github.com/DataDog/datadog-agent/pkg/network/payload v0.0.0-00010101000000-000000000000
581
+ github.com/DataDog/datadog-agent/pkg/networkpath/payload v0.0.0-00010101000000-000000000000
578
582
github.com/DataDog/datadog-agent/pkg/util/defaultpaths v0.64.0-devel
579
583
github.com/DataDog/datadog-agent/pkg/util/utilizationtracker v0.0.0
580
584
github.com/DataDog/dd-trace-go/v2 v2.0.0-beta.11
Original file line number Diff line number Diff line change 91
91
pkg/logs/status/utils
92
92
pkg/logs/util/testutils
93
93
pkg/metrics
94
+ pkg/network/payload
94
95
pkg/networkdevice/profile
96
+ pkg/networkpath/payload
95
97
pkg/obfuscate
96
98
pkg/orchestrator/model
97
99
pkg/process/util/api
Original file line number Diff line number Diff line change @@ -188,7 +188,9 @@ modules:
188
188
used_by_otel : true
189
189
pkg/metrics :
190
190
used_by_otel : true
191
+ pkg/network/payload : default
191
192
pkg/networkdevice/profile : default
193
+ pkg/networkpath/payload : default
192
194
pkg/obfuscate :
193
195
used_by_otel : true
194
196
pkg/orchestrator/model :
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ import (
18
18
"go4.org/intern"
19
19
20
20
"github.com/DataDog/datadog-agent/pkg/network/dns"
21
+ networkpayload "github.com/DataDog/datadog-agent/pkg/network/payload"
21
22
"github.com/DataDog/datadog-agent/pkg/network/protocols"
22
23
"github.com/DataDog/datadog-agent/pkg/network/protocols/http"
23
24
"github.com/DataDog/datadog-agent/pkg/network/protocols/kafka"
@@ -298,14 +299,10 @@ type ConnectionStats struct {
298
299
}
299
300
300
301
// Via has info about the routing decision for a flow
301
- type Via struct {
302
- Subnet Subnet `json:"subnet,omitempty"`
303
- }
302
+ type Via = networkpayload.Via
304
303
305
304
// Subnet stores info about a subnet
306
- type Subnet struct {
307
- Alias string `json:"alias,omitempty"`
308
- }
305
+ type Subnet = networkpayload.Subnet
309
306
310
307
// IPTranslation can be associated with a connection to show the connection is NAT'd
311
308
type IPTranslation struct {
Original file line number Diff line number Diff line change
1
+ module github.com/DataDog/datadog-agent/pkg/network/payload
2
+
3
+ go 1.23.0
Original file line number Diff line number Diff line change
1
+ // Unless explicitly stated otherwise all files in this repository are licensed
2
+ // under the Apache License Version 2.0.
3
+ // This product includes software developed at Datadog (https://www.datadoghq.com/).
4
+ // Copyright 2025-present Datadog, Inc.
5
+
6
+ // Package payload separates network types used as JSON payloads into a module
7
+ package payload
8
+
9
+ // Via has info about the routing decision for a flow
10
+ type Via struct {
11
+ Subnet Subnet `json:"subnet,omitempty"`
12
+ }
13
+
14
+ // Subnet stores info about a subnet
15
+ type Subnet struct {
16
+ Alias string `json:"alias,omitempty"`
17
+ }
Original file line number Diff line number Diff line change
1
+ module github.com/DataDog/datadog-agent/pkg/networkpath/payload
2
+
3
+ go 1.23.0
4
+
5
+ replace github.com/DataDog/datadog-agent/pkg/network/payload => ../../network/payload
6
+
7
+ require (
8
+ github.com/DataDog/datadog-agent/pkg/network/payload v0.0.0-00010101000000-000000000000
9
+ github.com/google/uuid v1.6.0
10
+ )
Original file line number Diff line number Diff line change 6
6
// Package payload contains Network Path payload
7
7
package payload
8
8
9
- import "github.com/DataDog/datadog-agent/pkg/network"
9
+ import "github.com/DataDog/datadog-agent/pkg/network/payload "
10
10
11
11
// Protocol defines supported network protocols
12
12
// Please define new protocols based on the Keyword from:
@@ -48,7 +48,7 @@ type NetworkPathHop struct {
48
48
// about the source of a path
49
49
type NetworkPathSource struct {
50
50
Hostname string `json:"hostname"`
51
- Via * network .Via `json:"via,omitempty"`
51
+ Via * payload .Via `json:"via,omitempty"`
52
52
NetworkID string `json:"network_id,omitempty"` // Today this will be a VPC ID since we only resolve AWS resources
53
53
Service string `json:"service,omitempty"`
54
54
ContainerID string `json:"container_id,omitempty"`
You can’t perform that action at this time.
0 commit comments