Skip to content

Commit 71d7975

Browse files
committed
🐛 fix application id for k8s applications
1 parent a6d03bb commit 71d7975

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

providers/k8s/resources/applications.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func (k *mqlK8s) apps() ([]interface{}, error) {
5353
appList := []interface{}{}
5454
for _, app := range apps {
5555
r, err := CreateResource(k.MqlRuntime, "k8s.app", map[string]*llx.RawData{
56-
"__id": llx.StringData("app"),
56+
"__id": llx.StringData(app.name + "/" + app.instance),
5757
"name": llx.StringData(app.name),
5858
"version": llx.StringData(app.version),
5959
"instance": llx.StringData(app.instance),

0 commit comments

Comments
 (0)