Commit 5606f2a5 authored by Eric's avatar Eric

[Update] 增加create session参数

parent b5a217ef
...@@ -210,17 +210,20 @@ func (s *SwitchSession) MapData() map[string]interface{} { ...@@ -210,17 +210,20 @@ func (s *SwitchSession) MapData() map[string]interface{} {
dataEnd = s.DateEnd dataEnd = s.DateEnd
} }
return map[string]interface{}{ return map[string]interface{}{
"id": s.ID, "id": s.ID,
"user": fmt.Sprintf("%s (%s)", s.p.User.Name, s.p.User.Username), "user": fmt.Sprintf("%s (%s)", s.p.User.Name, s.p.User.Username),
"asset": s.p.Asset.Hostname, "asset": s.p.Asset.Hostname,
"org_id": s.p.Asset.OrgID, "org_id": s.p.Asset.OrgID,
"login_from": s.p.UserConn.LoginFrom(), "login_from": s.p.UserConn.LoginFrom(),
"system_user": s.p.SystemUser.Username, "system_user": s.p.SystemUser.Username,
"protocol": s.p.SystemUser.Protocol, "protocol": s.p.SystemUser.Protocol,
"remote_addr": s.p.UserConn.RemoteAddr(), "remote_addr": s.p.UserConn.RemoteAddr(),
"is_finished": s.finished, "is_finished": s.finished,
"date_start": s.DateStart, "date_start": s.DateStart,
"date_end": dataEnd, "date_end": dataEnd,
"user_id": s.p.User.ID,
"asset_id": s.p.Asset.ID,
"system_user_id": s.p.SystemUser.ID,
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment