@@ -365,7 +365,7 @@ fn build_crash_info_tags(crash_info: &CrashInfo) -> String {
365365 append_signal_tags ( & mut tags, siginfo) ;
366366 }
367367
368- tags. push_str ( & format ! ( ",target_triple :{TARGET_TRIPLE}" ) ) ;
368+ tags. push_str ( & format ! ( ",runtime_platform :{TARGET_TRIPLE}" ) ) ;
369369 tags
370370}
371371
@@ -459,7 +459,7 @@ impl ErrorsIntakePayload {
459459 append_signal_tags ( & mut ddtags, sig_info) ;
460460 }
461461
462- ddtags. push_str ( & format ! ( ",target_triple :{TARGET_TRIPLE}" ) ) ;
462+ ddtags. push_str ( & format ! ( ",runtime_platform :{TARGET_TRIPLE}" ) ) ;
463463
464464 let ( error_type, message) = if let Some ( sig_info) = sig_info {
465465 (
@@ -694,7 +694,7 @@ mod tests {
694694 "si_code_human_readable:SEGV_BNDERR" ,
695695 "si_signo:11" ,
696696 "si_signo_human_readable:SIGSEGV" ,
697- & format ! ( "target_triple :{}" , super :: super :: TARGET_TRIPLE ) ,
697+ & format ! ( "runtime_platform :{}" , super :: super :: TARGET_TRIPLE ) ,
698698 ] ;
699699
700700 let expected_metadata_tags = [ "service:foo" , "version:bar" , "language_name:native" ] ;
@@ -732,7 +732,7 @@ mod tests {
732732 "si_code_human_readable:SEGV_BNDERR" ,
733733 "si_signo:11" ,
734734 "si_signo_human_readable:SIGSEGV" ,
735- & format ! ( "target_triple :{}" , super :: super :: TARGET_TRIPLE ) ,
735+ & format ! ( "runtime_platform :{}" , super :: super :: TARGET_TRIPLE ) ,
736736 ] ;
737737
738738 println ! ( "payload.ddtags: {}" , payload. ddtags) ;
0 commit comments