diff --git a/protocol/dubbo/client.go b/protocol/dubbo/client.go
index 03ab70467680e6b4c02da52071729e02200f65fc..ba74d86c0c38ba02ec5e87423e0fe8990dae486b 100644
--- a/protocol/dubbo/client.go
+++ b/protocol/dubbo/client.go
@@ -210,6 +210,7 @@ func (c *Client) call(ct CallType, request *Request, response *Response, callbac
 	p.Service.Path = strings.TrimPrefix(request.svcUrl.Path, "/")
 	p.Service.Interface = request.svcUrl.GetParam(constant.INTERFACE_KEY, "")
 	p.Service.Version = request.svcUrl.GetParam(constant.VERSION_KEY, "")
+	p.Service.Group = request.svcUrl.GetParam(constant.GROUP_KEY, "")
 	p.Service.Method = request.method
 	p.Service.Timeout = c.opts.RequestTimeout
 	p.Header.SerialID = byte(S_Dubbo)