The link for the button is generated by making Instana API calls to find a Service name that matches. But in some cases, there may be more than 1 service and so the types and technologies should also be matched.
In the example below we should match on label=xyz and types=DATABASE and technologies=mySqlDatabase rather than just the label=xyz which would match on the HTTP service which is not a database.
{
"id":"0000000000000000000000000000000000000000",
"label":"xyz",
"types":[
"HTTP"
],
"technologies":[
"solr",
"tomcatApplicationContainer"
],
{
"id":"0000000000000000000000000000000000000000",
"label":"xyz",
"types":[
"DATABASE"
],
"technologies":[
"mySqlDatabase"
],
"processSnapshotIds":[
],
},
2 years ago
Fixed in v3.4.0
0 1 year ago Reply
1 year ago