Skip to content

Commit 7ac9ccd

Browse files
authored
[NPM-4131] Use module for network path payload (#33336)
1 parent 1cb455d commit 7ac9ccd

File tree

9 files changed

+45
-8
lines changed

9 files changed

+45
-8
lines changed

go.mod

+4
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ replace (
102102
github.com/DataDog/datadog-agent/pkg/logs/status/utils => ./pkg/logs/status/utils
103103
github.com/DataDog/datadog-agent/pkg/logs/util/testutils => ./pkg/logs/util/testutils
104104
github.com/DataDog/datadog-agent/pkg/metrics => ./pkg/metrics/
105+
github.com/DataDog/datadog-agent/pkg/network/payload => ./pkg/network/payload
105106
github.com/DataDog/datadog-agent/pkg/networkdevice/profile => ./pkg/networkdevice/profile
107+
github.com/DataDog/datadog-agent/pkg/networkpath/payload => ./pkg/networkpath/payload
106108
github.com/DataDog/datadog-agent/pkg/obfuscate => ./pkg/obfuscate
107109
github.com/DataDog/datadog-agent/pkg/orchestrator/model => ./pkg/orchestrator/model
108110
github.com/DataDog/datadog-agent/pkg/process/util/api => ./pkg/process/util/api
@@ -575,6 +577,8 @@ require (
575577
github.com/DataDog/datadog-agent/comp/otelcol/ddflareextension/impl v0.64.0-devel
576578
github.com/DataDog/datadog-agent/pkg/config/structure v0.61.0
577579
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
578582
github.com/DataDog/datadog-agent/pkg/util/defaultpaths v0.64.0-devel
579583
github.com/DataDog/datadog-agent/pkg/util/utilizationtracker v0.0.0
580584
github.com/DataDog/dd-trace-go/v2 v2.0.0-beta.11

go.work

+2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ use (
9191
pkg/logs/status/utils
9292
pkg/logs/util/testutils
9393
pkg/metrics
94+
pkg/network/payload
9495
pkg/networkdevice/profile
96+
pkg/networkpath/payload
9597
pkg/obfuscate
9698
pkg/orchestrator/model
9799
pkg/process/util/api

modules.yml

+2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ modules:
188188
used_by_otel: true
189189
pkg/metrics:
190190
used_by_otel: true
191+
pkg/network/payload: default
191192
pkg/networkdevice/profile: default
193+
pkg/networkpath/payload: default
192194
pkg/obfuscate:
193195
used_by_otel: true
194196
pkg/orchestrator/model:

pkg/network/event_common.go

+3-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import (
1818
"go4.org/intern"
1919

2020
"github.com/DataDog/datadog-agent/pkg/network/dns"
21+
networkpayload "github.com/DataDog/datadog-agent/pkg/network/payload"
2122
"github.com/DataDog/datadog-agent/pkg/network/protocols"
2223
"github.com/DataDog/datadog-agent/pkg/network/protocols/http"
2324
"github.com/DataDog/datadog-agent/pkg/network/protocols/kafka"
@@ -298,14 +299,10 @@ type ConnectionStats struct {
298299
}
299300

300301
// 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
304303

305304
// Subnet stores info about a subnet
306-
type Subnet struct {
307-
Alias string `json:"alias,omitempty"`
308-
}
305+
type Subnet = networkpayload.Subnet
309306

310307
// IPTranslation can be associated with a connection to show the connection is NAT'd
311308
type IPTranslation struct {

pkg/network/payload/go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/DataDog/datadog-agent/pkg/network/payload
2+
3+
go 1.23.0

pkg/network/payload/types.go

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
}

pkg/networkpath/payload/go.mod

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
)

pkg/networkpath/payload/go.sum

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/networkpath/payload/pathevent.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Package payload contains Network Path payload
77
package payload
88

9-
import "github.com/DataDog/datadog-agent/pkg/network"
9+
import "github.com/DataDog/datadog-agent/pkg/network/payload"
1010

1111
// Protocol defines supported network protocols
1212
// Please define new protocols based on the Keyword from:
@@ -48,7 +48,7 @@ type NetworkPathHop struct {
4848
// about the source of a path
4949
type NetworkPathSource struct {
5050
Hostname string `json:"hostname"`
51-
Via *network.Via `json:"via,omitempty"`
51+
Via *payload.Via `json:"via,omitempty"`
5252
NetworkID string `json:"network_id,omitempty"` // Today this will be a VPC ID since we only resolve AWS resources
5353
Service string `json:"service,omitempty"`
5454
ContainerID string `json:"container_id,omitempty"`

0 commit comments

Comments
 (0)