Documentation ¶
Index ¶
- Constants
- type GetMetrics
- type GetMetricsHandler
- type GetMetricsHandlerFunc
- type GetMetricsInternalServerError
- type GetMetricsOK
- type GetMetricsParams
- type GetMetricsURL
- func (o *GetMetricsURL) Build() (*url.URL, error)
- func (o *GetMetricsURL) BuildFull(scheme, host string) (*url.URL, error)
- func (o *GetMetricsURL) Must(u *url.URL, err error) *url.URL
- func (o *GetMetricsURL) SetBasePath(bp string)
- func (o *GetMetricsURL) String() string
- func (o *GetMetricsURL) StringFull(scheme, host string) string
- func (o *GetMetricsURL) WithBasePath(bp string) *GetMetricsURL
Constants ¶
const GetMetricsInternalServerErrorCode int = 500
GetMetricsInternalServerErrorCode is the HTTP code returned for type GetMetricsInternalServerError
const GetMetricsOKCode int = 200
GetMetricsOKCode is the HTTP code returned for type GetMetricsOK
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetMetrics ¶
type GetMetrics struct { Context *middleware.Context Handler GetMetricsHandler }
GetMetrics swagger:route GET /metrics/ metrics getMetrics
Retrieve cilium metrics
func NewGetMetrics ¶
func NewGetMetrics(ctx *middleware.Context, handler GetMetricsHandler) *GetMetrics
NewGetMetrics creates a new http.Handler for the get metrics operation
func (*GetMetrics) ServeHTTP ¶
func (o *GetMetrics) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type GetMetricsHandler ¶
type GetMetricsHandler interface {
Handle(GetMetricsParams) middleware.Responder
}
GetMetricsHandler interface for that can handle valid get metrics params
type GetMetricsHandlerFunc ¶
type GetMetricsHandlerFunc func(GetMetricsParams) middleware.Responder
GetMetricsHandlerFunc turns a function with the right signature into a get metrics handler
func (GetMetricsHandlerFunc) Handle ¶
func (fn GetMetricsHandlerFunc) Handle(params GetMetricsParams) middleware.Responder
Handle executing the request and returning a response
type GetMetricsInternalServerError ¶
type GetMetricsInternalServerError struct { }
GetMetricsInternalServerError Metrics cannot be retrieved
swagger:response getMetricsInternalServerError
func NewGetMetricsInternalServerError ¶
func NewGetMetricsInternalServerError() *GetMetricsInternalServerError
NewGetMetricsInternalServerError creates GetMetricsInternalServerError with default headers values
func (*GetMetricsInternalServerError) WriteResponse ¶
func (o *GetMetricsInternalServerError) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetMetricsOK ¶
GetMetricsOK Success
swagger:response getMetricsOK
func NewGetMetricsOK ¶
func NewGetMetricsOK() *GetMetricsOK
NewGetMetricsOK creates GetMetricsOK with default headers values
func (*GetMetricsOK) SetPayload ¶
func (o *GetMetricsOK) SetPayload(payload []*models.Metric)
SetPayload sets the payload to the get metrics o k response
func (*GetMetricsOK) WithPayload ¶
func (o *GetMetricsOK) WithPayload(payload []*models.Metric) *GetMetricsOK
WithPayload adds the payload to the get metrics o k response
func (*GetMetricsOK) WriteResponse ¶
func (o *GetMetricsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)
WriteResponse to the client
type GetMetricsParams ¶
GetMetricsParams contains all the bound params for the get metrics operation typically these are obtained from a http.Request
swagger:parameters GetMetrics
func NewGetMetricsParams ¶
func NewGetMetricsParams() GetMetricsParams
NewGetMetricsParams creates a new GetMetricsParams object no default values defined in spec.
func (*GetMetricsParams) BindRequest ¶
func (o *GetMetricsParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error
BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.
To ensure default values, the struct must have been initialized with NewGetMetricsParams() beforehand.
type GetMetricsURL ¶
type GetMetricsURL struct {
// contains filtered or unexported fields
}
GetMetricsURL generates an URL for the get metrics operation
func (*GetMetricsURL) Build ¶
func (o *GetMetricsURL) Build() (*url.URL, error)
Build a url path and query string
func (*GetMetricsURL) BuildFull ¶
func (o *GetMetricsURL) BuildFull(scheme, host string) (*url.URL, error)
BuildFull builds a full url with scheme, host, path and query string
func (*GetMetricsURL) Must ¶
Must is a helper function to panic when the url builder returns an error
func (*GetMetricsURL) SetBasePath ¶
func (o *GetMetricsURL) SetBasePath(bp string)
SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string
func (*GetMetricsURL) String ¶
func (o *GetMetricsURL) String() string
String returns the string representation of the path with query string
func (*GetMetricsURL) StringFull ¶
func (o *GetMetricsURL) StringFull(scheme, host string) string
StringFull returns the string representation of a complete url
func (*GetMetricsURL) WithBasePath ¶
func (o *GetMetricsURL) WithBasePath(bp string) *GetMetricsURL
WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string