We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831f10f commit 3113115Copy full SHA for 3113115
boot/src/main/kotlin/spp/probe/SourceProbe.kt
@@ -230,6 +230,11 @@ object SourceProbe {
230
meta.putAll(ProbeConfiguration.spp.getJsonObject("probe_metadata").map)
231
}
232
233
+ //add application metadata
234
+ if (ProbeConfiguration.spp.containsKey("application")) {
235
+ meta["application"] = ProbeConfiguration.spp.getJsonObject("application").map
236
+ }
237
+
238
//add probe auth headers
239
ProbeConfiguration.getJsonObject("authentication")?.let {
240
it.getString("client_id")?.let { probeMessageHeaders.put("client_id", it) }
0 commit comments