We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5e77bb commit 7010e35Copy full SHA for 7010e35
.vscode/settings.json
crates/datadog-serverless-compat/src/main.rs
@@ -205,7 +205,7 @@ pub async fn main() {
205
// TODO: See if this works in Google Cloud Functions Gen 1. If not, only enable this for Azure Functions.
206
let mut cpu_collector = if dd_enhanced_metrics {
207
aggregator_handle.as_ref().map(|handle| {
208
- let mut tag_parts = vec![format!("functionname:{}", app_name)];
+ let mut tag_parts = Vec::new();
209
// Azure tags from ddcommon
210
if let Some(aas_metadata) = &*azure_app_services::AAS_METADATA_FUNCTION {
211
let aas_tags = [
0 commit comments