Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ variables:
# This will be overwritten by the tag version if it is a release.
VERSION: dev
# Manual trigger variables
AGENT_BRANCH:
description: "Branch of the datadog-agent repository to use."
value: main
AGENT_VERSION:
description: "Latest release version of the datadog-agent to tag the build with."
value: "7.66.0"
PIPELINE_LAYER_SUFFIX:
description: "Suffix to be appended to the layer name (default empty)."
value: ""
Expand Down
116 changes: 0 additions & 116 deletions .gitlab/scripts/compile_go_agent.sh

This file was deleted.

2 changes: 1 addition & 1 deletion bottlecap/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion bottlecap/src/lifecycle/invocation/processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,10 @@ impl Processor {
/// This is used to create a cold start span, since this telemetry event does not
/// provide a `request_id`, we try to guess which invocation is the cold start.
pub fn on_platform_init_start(&mut self, time: DateTime<Utc>, runtime_version: Option<String>) {
if runtime_version.as_deref().map_or(false, |rv| rv.contains("DurableFunction")) {
if runtime_version
.as_deref()
.is_some_and(|rv| rv.contains("DurableFunction"))
{
self.enhanced_metrics.set_durable_function_tag();
}
let start_time: i64 = SystemTime::from(time)
Expand Down
80 changes: 0 additions & 80 deletions images/Dockerfile.go_agent.alpine.compile

This file was deleted.

81 changes: 0 additions & 81 deletions images/Dockerfile.go_agent.compile

This file was deleted.

Loading