Adding stats
diff --git a/rackspace/lb/v1/lbs/requests.go b/rackspace/lb/v1/lbs/requests.go
index 2dd1595..81e7fdc 100644
--- a/rackspace/lb/v1/lbs/requests.go
+++ b/rackspace/lb/v1/lbs/requests.go
@@ -453,6 +453,7 @@
 	return res
 }
 
+// GetErrorPage will retrieve the current error page for the load balancer.
 func GetErrorPage(client *gophercloud.ServiceClient, id int) ErrorPageResult {
 	var res ErrorPageResult
 
@@ -465,6 +466,8 @@
 	return res
 }
 
+// SetErrorPage will set the HTML of the load balancer's error page to a
+// specific value.
 func SetErrorPage(client *gophercloud.ServiceClient, id int, html string) ErrorPageResult {
 	var res ErrorPageResult
 
@@ -481,6 +484,7 @@
 	return res
 }
 
+// DeleteErrorPage will delete the current error page for the load balancer.
 func DeleteErrorPage(client *gophercloud.ServiceClient, id int) gophercloud.ErrResult {
 	var res gophercloud.ErrResult
 
@@ -491,3 +495,16 @@
 
 	return res
 }
+
+// GetStats will retrieve detailed stats related to the load balancer's usage.
+func GetStats(client *gophercloud.ServiceClient, id int) StatsResult {
+	var res StatsResult
+
+	_, res.Err = perigee.Request("GET", statsURL(client, id), perigee.Options{
+		MoreHeaders: client.AuthenticatedHeaders(),
+		Results:     &res.Body,
+		OkCodes:     []int{200},
+	})
+
+	return res
+}