Fix minor metrics bugs and refactor route implementation
This commit is contained in:
@@ -21,38 +21,41 @@ import (
|
||||
|
||||
"kubesphere.io/kubesphere/pkg/constants"
|
||||
"kubesphere.io/kubesphere/pkg/filter/route"
|
||||
"kubesphere.io/kubesphere/pkg/models"
|
||||
"kubesphere.io/kubesphere/pkg/models/metrics"
|
||||
)
|
||||
|
||||
// {namespace} namespace name
|
||||
// {node} node host name
|
||||
// {pod} pod name
|
||||
// {container} container name
|
||||
func Register(ws *restful.WebService) {
|
||||
ws.Route(ws.GET("/namespaces/{namespace}/pods/{podname}/containers/{containername}").To(handleContainerUnderNameSpaceAndPod).Filter(route.RouteLogging)).
|
||||
ws.Route(ws.GET("/namespaces/{namespace}/pods/{pod}/containers/{container}").To(handleContainerUnderNameSpaceAndPod).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
ws.Route(ws.GET("/namespaces/{namespace}/pods/{podname}/containers").To(handleContainersUnderNameSpaceAndPod).Filter(route.RouteLogging)).
|
||||
ws.Route(ws.GET("/namespaces/{namespace}/pods/{pod}/containers").To(handleContainersUnderNameSpaceAndPod).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
ws.Route(ws.GET("/nodes/{nodename}/namespaces/{namespace}/pods/{podname}/containers").To(handleContainersUnderNodeAndNameSpaceAndPod).Filter(route.RouteLogging)).
|
||||
ws.Route(ws.GET("/nodes/{node}/namespaces/{namespace}/pods/{pod}/containers").To(handleContainersUnderNodeAndNameSpaceAndPod).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
}
|
||||
|
||||
func handleContainerUnderNameSpaceAndPod(request *restful.Request, response *restful.Response) {
|
||||
var resultContainer models.ResultContainer
|
||||
resultContainer = models.FormatContainerMetrics(request.PathParameter("namespace"), request.PathParameter("podname"), request.PathParameter("containername"))
|
||||
resultContainer.NodeName = models.GetNodeNameForPod(request.PathParameter("podname"), request.PathParameter("namespace"))
|
||||
var resultContainer metrics.ContainerMetrics
|
||||
resultContainer = metrics.FormatContainerMetrics(request.PathParameter("namespace"), request.PathParameter("pod"), request.PathParameter("container"))
|
||||
resultContainer.NodeName = metrics.GetNodeNameForPod(request.PathParameter("pod"), request.PathParameter("namespace"))
|
||||
response.WriteAsJson(resultContainer)
|
||||
}
|
||||
func handleContainersUnderNameSpaceAndPod(request *restful.Request, response *restful.Response) {
|
||||
var resultNameSpace constants.PageableResponse
|
||||
|
||||
resultNameSpace = models.FormatContainersMetrics("", request.PathParameter("namespace"), request.PathParameter("podname"))
|
||||
resultNameSpace = metrics.FormatContainersMetrics("", request.PathParameter("namespace"), request.PathParameter("pod"))
|
||||
response.WriteAsJson(resultNameSpace)
|
||||
}
|
||||
|
||||
func handleContainersUnderNodeAndNameSpaceAndPod(request *restful.Request, response *restful.Response) {
|
||||
var resultNameSpace constants.PageableResponse
|
||||
|
||||
resultNameSpace = models.FormatContainersMetrics(request.PathParameter("nodename"), request.PathParameter("namespace"), request.PathParameter("podname"))
|
||||
resultNameSpace = metrics.FormatContainersMetrics(request.PathParameter("node"), request.PathParameter("namespace"), request.PathParameter("pod"))
|
||||
|
||||
response.WriteAsJson(resultNameSpace)
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ import (
|
||||
|
||||
"kubesphere.io/kubesphere/pkg/constants"
|
||||
"kubesphere.io/kubesphere/pkg/filter/route"
|
||||
"kubesphere.io/kubesphere/pkg/models"
|
||||
"kubesphere.io/kubesphere/pkg/models/metrics"
|
||||
)
|
||||
|
||||
func Register(ws *restful.WebService, subPath string) {
|
||||
@@ -44,29 +44,35 @@ func Register(ws *restful.WebService, subPath string) {
|
||||
Produces(restful.MIME_JSON)
|
||||
}
|
||||
|
||||
func MakeRequest(node string, ch chan<- metrics.NodeMetrics) {
|
||||
resultNode := metrics.FormatNodeMetrics(node)
|
||||
|
||||
ch <- resultNode
|
||||
}
|
||||
|
||||
func handleNodes(request *restful.Request, response *restful.Response) {
|
||||
var result constants.PageableResponse
|
||||
var resultNode models.ResultNode
|
||||
|
||||
nodes := models.GetNodes()
|
||||
nodes := metrics.GetNodes()
|
||||
|
||||
var total_count int
|
||||
for i, node := range nodes {
|
||||
resultNode = models.FormatNodeMetrics(node)
|
||||
result.Items = append(result.Items, resultNode)
|
||||
total_count = i
|
||||
ch := make(chan metrics.NodeMetrics)
|
||||
for _, node := range nodes {
|
||||
go MakeRequest(node, ch)
|
||||
}
|
||||
total_count = total_count + 1
|
||||
|
||||
result.TotalCount = total_count
|
||||
for _, _ = range nodes {
|
||||
result.Items = append(result.Items, <-ch)
|
||||
}
|
||||
|
||||
result.TotalCount = len(result.Items)
|
||||
response.WriteAsJson(result)
|
||||
}
|
||||
|
||||
func handleSingleNode(request *restful.Request, response *restful.Response) {
|
||||
nodeName := request.PathParameter("nodename")
|
||||
var resultNode models.ResultNode
|
||||
var resultNode metrics.NodeMetrics
|
||||
|
||||
resultNode = models.FormatNodeMetrics(nodeName)
|
||||
resultNode = metrics.FormatNodeMetrics(nodeName)
|
||||
|
||||
response.WriteAsJson(resultNode)
|
||||
}
|
||||
@@ -75,7 +81,7 @@ func handleDrainNode(request *restful.Request, response *restful.Response) {
|
||||
|
||||
nodeName := request.PathParameter("nodename")
|
||||
|
||||
result, err := models.DrainNode(nodeName)
|
||||
result, err := metrics.DrainNode(nodeName)
|
||||
|
||||
if err != nil {
|
||||
|
||||
@@ -93,7 +99,7 @@ func handleDrainStatus(request *restful.Request, response *restful.Response) {
|
||||
|
||||
nodeName := request.PathParameter("nodename")
|
||||
|
||||
result, err := models.DrainStatus(nodeName)
|
||||
result, err := metrics.DrainStatus(nodeName)
|
||||
|
||||
if err != nil {
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
"kubesphere.io/kubesphere/pkg/filter/route"
|
||||
|
||||
"kubesphere.io/kubesphere/pkg/constants"
|
||||
"kubesphere.io/kubesphere/pkg/models"
|
||||
"kubesphere.io/kubesphere/pkg/models/metrics"
|
||||
)
|
||||
|
||||
func Register(ws *restful.WebService) {
|
||||
@@ -30,75 +30,48 @@ func Register(ws *restful.WebService) {
|
||||
ws.Route(ws.GET("/pods").To(handleAllPods).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
ws.Route(ws.GET("/namespaces/{namespace}/pods/{podname}").To(handlePodUnderNameSpace).Filter(route.RouteLogging)).
|
||||
ws.Route(ws.GET("/namespaces/{namespace}/pods/{pod}").To(handlePodUnderNameSpace).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
ws.Route(ws.GET("/namespaces/{namespace}/pods").To(handlePodsUnderNameSpace).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
ws.Route(ws.GET("/nodes/{nodename}/pods").To(handlePodsUnderNode).Filter(route.RouteLogging)).
|
||||
ws.Route(ws.GET("/nodes/{node}/pods").To(handlePodsUnderNode).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
ws.Route(ws.GET("/nodes/{nodename}/namespaces/{namespace}/pods").To(handlePodsUnderNodeAndNameSpace).Filter(route.RouteLogging)).
|
||||
ws.Route(ws.GET("/nodes/{node}/namespaces/{namespace}/pods").To(handlePodsUnderNodeAndNameSpace).Filter(route.RouteLogging)).
|
||||
Consumes(restful.MIME_JSON, restful.MIME_XML).
|
||||
Produces(restful.MIME_JSON)
|
||||
}
|
||||
|
||||
func handleAllPods(request *restful.Request, response *restful.Response) {
|
||||
var result constants.PageableResponse
|
||||
|
||||
namespaces := models.GetNameSpaces()
|
||||
|
||||
var total_count int
|
||||
for i, namespace := range namespaces {
|
||||
result = models.FormatPodsMetrics("", namespace)
|
||||
result.Items = append(result.Items, result)
|
||||
total_count = i
|
||||
}
|
||||
|
||||
result.TotalCount = total_count
|
||||
|
||||
result = metrics.GetAllPodMetrics()
|
||||
response.WriteAsJson(result)
|
||||
}
|
||||
|
||||
func handlePodsUnderNameSpace(request *restful.Request, response *restful.Response) {
|
||||
var result constants.PageableResponse
|
||||
|
||||
result = models.FormatPodsMetrics("", request.PathParameter("namespace"))
|
||||
|
||||
result = metrics.GetPodMetricsInNamespace(request.PathParameter("namespace"))
|
||||
response.WriteAsJson(result)
|
||||
}
|
||||
|
||||
func handlePodsUnderNode(request *restful.Request, response *restful.Response) {
|
||||
var result constants.PageableResponse
|
||||
var resultNameSpace constants.PageableResponse
|
||||
namespaces := models.GetNameSpaces()
|
||||
|
||||
var total_count int
|
||||
for _, namespace := range namespaces {
|
||||
resultNameSpace = models.FormatPodsMetrics(request.PathParameter("nodename"), namespace)
|
||||
|
||||
var sub_total_count int
|
||||
for j, pod := range resultNameSpace.Items {
|
||||
result.Items = append(result.Items, pod)
|
||||
sub_total_count = j
|
||||
}
|
||||
total_count += sub_total_count
|
||||
}
|
||||
result.TotalCount = total_count
|
||||
result = metrics.GetPodMetricsInNode(request.PathParameter("node"))
|
||||
response.WriteAsJson(result)
|
||||
}
|
||||
|
||||
func handlePodUnderNameSpace(request *restful.Request, response *restful.Response) {
|
||||
var resultPod models.ResultPod
|
||||
|
||||
resultPod = models.FormatPodMetrics(request.PathParameter("namespace"), request.PathParameter("podname"))
|
||||
|
||||
var resultPod metrics.PodMetrics
|
||||
resultPod = metrics.FormatPodMetrics(request.PathParameter("namespace"), request.PathParameter("pod"))
|
||||
response.WriteAsJson(resultPod)
|
||||
}
|
||||
|
||||
func handlePodsUnderNodeAndNameSpace(request *restful.Request, response *restful.Response) {
|
||||
var result constants.PageableResponse
|
||||
|
||||
result = models.FormatPodsMetrics(request.PathParameter("nodename"), request.PathParameter("namespace"))
|
||||
|
||||
nodeName := request.PathParameter("node")
|
||||
namespace := request.PathParameter("namespace")
|
||||
result = metrics.GetPodMetricsInNamespaceOfNode(namespace, nodeName)
|
||||
response.WriteAsJson(result)
|
||||
}
|
||||
|
||||
@@ -42,5 +42,6 @@ func listResource(req *restful.Request, resp *restful.Response) {
|
||||
resp.WriteHeaderAndEntity(http.StatusInternalServerError, constants.MessageResponse{Message: err.Error()})
|
||||
return
|
||||
}
|
||||
|
||||
resp.WriteEntity(res)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user