|
@@ -97,6 +97,8 @@ type RootDataT struct {
|
|
|
ParentSys string `json:"parent_sys"` // from cwother header: SysTag
|
|
ParentSys string `json:"parent_sys"` // from cwother header: SysTag
|
|
|
AppNameFrom string `json:"app_name_from"` // from cwother header: app_name
|
|
AppNameFrom string `json:"app_name_from"` // from cwother header: app_name
|
|
|
ServiceTypeFrom string `json:"service_type_from"` // from cwother header: appServiceType
|
|
ServiceTypeFrom string `json:"service_type_from"` // from cwother header: appServiceType
|
|
|
|
|
+ //i6000需要,增加process_jvm_id
|
|
|
|
|
+ ProcessJvmId int64 `json:"process_jvm_id"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// ParamStruct 定义目标结构
|
|
// ParamStruct 定义目标结构
|
|
@@ -477,6 +479,7 @@ func initRootDataFromEvent() RootDataT {
|
|
|
Sys: sysTag,
|
|
Sys: sysTag,
|
|
|
SystemUUID: systemUUID,
|
|
SystemUUID: systemUUID,
|
|
|
UserAgent: "",
|
|
UserAgent: "",
|
|
|
|
|
+ ProcessJvmId: -1,
|
|
|
}
|
|
}
|
|
|
return data
|
|
return data
|
|
|
}
|
|
}
|
|
@@ -523,6 +526,7 @@ func initRootDataJava() RootDataT {
|
|
|
Uri: "",
|
|
Uri: "",
|
|
|
UserDir: "",
|
|
UserDir: "",
|
|
|
VipIds: []interface{}{},
|
|
VipIds: []interface{}{},
|
|
|
|
|
+ ProcessJvmId: -1,
|
|
|
}
|
|
}
|
|
|
return data
|
|
return data
|
|
|
}
|
|
}
|