Skip to content

Commit 43d78f4

Browse files
committed
Merge branch 'main' into rayz/move-otlp-source-translation-to-common
2 parents 4e73b58 + b2408fd commit 43d78f4

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.datadog-agent-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.73.0
1+
7.73.1

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ variables:
4444

4545
# Converged Datadog Agent-specific variables, which control how we build the converged Datadog Agent image that we
4646
# publicly publish.
47-
PUBLIC_DSD_VERSION: "7.73.0"
48-
PUBLIC_DD_AGENT_VERSION: "7.73.0-jmx"
47+
PUBLIC_DSD_VERSION: "7.73.1"
48+
PUBLIC_DD_AGENT_VERSION: "7.73.1-jmx"
4949

5050
# Base images to copy Agent Data Plane into, depending on whether the image is meant for our internal environment or
5151
# public registries.

docker/Dockerfile.adp-checks-smp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DD_AGENT_VERSION=7.73.0-jmx
1+
ARG DD_AGENT_VERSION=7.73.1-jmx
22
ARG DD_AGENT_IMAGE=registry.ddbuild.io/images/datadog-agent:${DD_AGENT_VERSION}
33

44
ARG BUILD_IMAGE

docker/Dockerfile.datadog-agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DD_AGENT_VERSION=7.73.0-jmx
1+
ARG DD_AGENT_VERSION=7.73.1-jmx
22
ARG DD_AGENT_IMAGE=datadog/agent:${DD_AGENT_VERSION}
33
ARG ADP_IMAGE=saluki-images/agent-data-plane:latest
44

lib/saluki-components/src/common/otlp/config.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn default_max_recv_msg_size_mib() -> u64 {
2020

2121
/// Receiver configuration for OTLP endpoints.
2222
///
23-
/// This follows the Agent's `otlp_config.receiver` structure.
23+
/// This follows the Datadog Agent `otlp_config.receiver` structure.
2424
#[derive(Deserialize, Debug, Default)]
2525
pub struct Receiver {
2626
/// Protocol-specific receiver configuration.
@@ -125,7 +125,7 @@ pub struct OtlpConfig {
125125
pub struct LogsConfig {
126126
/// Whether to enable OTLP logs support.
127127
///
128-
/// Defaults to true.
128+
/// Defaults to `true`.
129129
#[serde(default = "default_logs_enabled")]
130130
pub enabled: bool,
131131
}
@@ -147,7 +147,7 @@ impl Default for LogsConfig {
147147
pub struct MetricsConfig {
148148
/// Whether to enable OTLP metrics support.
149149
///
150-
/// Defaults to true.
150+
/// Defaults to `true`.
151151
#[serde(default = "default_metrics_enabled")]
152152
pub enabled: bool,
153153
}
@@ -171,7 +171,7 @@ impl Default for MetricsConfig {
171171
pub struct TracesConfig {
172172
/// Whether to enable OTLP traces support.
173173
///
174-
/// Defaults to true.
174+
/// Defaults to `true`.
175175
#[serde(default = "default_traces_enabled")]
176176
pub enabled: bool,
177177

@@ -182,7 +182,7 @@ pub struct TracesConfig {
182182
///
183183
/// Corresponds to `otlp_config.traces.ignore_missing_datadog_fields` in the Agent.
184184
///
185-
/// Defaults to false.
185+
/// Defaults to `false`.
186186
#[serde(default)]
187187
pub ignore_missing_datadog_fields: bool,
188188

@@ -191,7 +191,7 @@ pub struct TracesConfig {
191191
/// Corresponds to the `enable_otlp_compute_top_level_by_span_kind` feature flag
192192
/// in the Agent's `apm_config.features`.
193193
///
194-
/// Defaults to false.
194+
/// Defaults to `false`.
195195
#[serde(default = "default_enable_otlp_compute_top_level_by_span_kind")]
196196
pub enable_otlp_compute_top_level_by_span_kind: bool,
197197

0 commit comments

Comments
 (0)