Adding stats
diff --git a/rackspace/lb/v1/lbs/urls.go b/rackspace/lb/v1/lbs/urls.go
index bf1e8b5..f647073 100644
--- a/rackspace/lb/v1/lbs/urls.go
+++ b/rackspace/lb/v1/lbs/urls.go
@@ -12,6 +12,7 @@
algorithmsPath = "algorithms"
logPath = "connectionlogging"
epPath = "errorpage"
+ stPath = "stats"
)
func resourceURL(c *gophercloud.ServiceClient, id int) string {
@@ -37,3 +38,7 @@
func errorPageURL(c *gophercloud.ServiceClient, id int) string {
return c.ServiceURL(path, strconv.Itoa(id), epPath)
}
+
+func statsURL(c *gophercloud.ServiceClient, id int) string {
+ return c.ServiceURL(path, strconv.Itoa(id), stPath)
+}