HAProxy Data Plane API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

96 lines
2.9 KiB

// Copyright 2019 HAProxy Technologies
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package handlers
import (
"github.com/go-openapi/runtime/middleware"
client_native "github.com/haproxytech/client-native/v6"
"github.com/haproxytech/client-native/v6/models"
"github.com/haproxytech/dataplaneapi/misc"
"github.com/haproxytech/dataplaneapi/operations/stats"
)
// GetStatsHandlerImpl implementation of the GetStatsHandler interface using client-native client
type GetStatsHandlerImpl struct {
Client client_native.HAProxyClient
}
// Handle executing the request and returning a response
func (h *GetStatsHandlerImpl) Handle(params stats.GetStatsParams, principal interface{}) middleware.Responder {
if params.Name != nil {
if params.Type == nil {
code := misc.ErrHTTPBadRequest
msg := "Type required when filtering by name"
e := &models.Error{Code: &code, Message: &msg}
return stats.NewGetStatsDefault(int(code)).WithPayload(e)
} else if *params.Type == "server" {
if params.Parent == nil {
code := misc.ErrHTTPBadRequest
msg := "Parent backend required when filtering by server"
e := &models.Error{Code: &code, Message: &msg}
return stats.NewGetStatsDefault(int(code)).WithPayload(e)
}
}
}
runtime, err := h.Client.Runtime()
if err != nil {
e := misc.HandleError(err)
return stats.NewGetStatsDefault(int(*e.Code)).WithPayload(e)
}
s := runtime.GetStats()
errorFound := false
for _, nStat := range s {
if nStat.Error != "" {
errorFound = true
continue
}
retVal := make([]*models.NativeStat, 0, len(nStat.Stats))
for _, item := range nStat.Stats {
if params.Name != nil {
if item.Type == "server" {
if item.Name == *params.Name && item.Type == *params.Type && item.BackendName == *params.Parent {
retVal = append(retVal, item)
}
} else if item.Name == *params.Name && item.Type == *params.Type {
retVal = append(retVal, item)
}
} else {
if params.Type != nil {
if *params.Type == "server" && params.Parent != nil {
if item.Type == *params.Type && item.BackendName == *params.Parent {
retVal = append(retVal, item)
}
} else {
if item.Type == *params.Type {
retVal = append(retVal, item)
}
}
} else {
retVal = append(retVal, item)
}
}
}
nStat.Stats = retVal
}
if errorFound {
return stats.NewGetStatsInternalServerError().WithPayload(s)
}
return stats.NewGetStatsOK().WithPayload(s)
}