Documentation ¶
Overview ¶
Copyright paskal.maksim@gmail.com 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.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrorReadingEndpoint = promauto.NewCounterVec( prometheus.CounterOpts{ Namespace: namespace, Name: "error_reading_endpoint_total", Help: "A counter for errored reading endpoint", }, []string{"node", "resource"}, )
var KubernetesAPIRequest = promauto.NewCounterVec(prometheus.CounterOpts{ Namespace: namespace, Name: "apiserver_request_total", Help: "The total number of kunernetes API requests", }, []string{"cluster", "code"})
var KubernetesAPIRequestDuration = promauto.NewHistogramVec(prometheus.HistogramOpts{ Namespace: namespace, Name: "apiserver_request_duration", Help: "The duration in seconds of kunernetes API requests", }, []string{"cluster"})
var ScheduledEventsTotal = promauto.NewCounterVec( prometheus.CounterOpts{ Namespace: namespace, Name: "scheduled_events_total", Help: "Scheduled Events from Azure", }, []string{"node", "resource", "type"}, )
Functions ¶
func GetHandler ¶
Types ¶
type Instrumenter ¶
type Instrumenter struct {
// contains filtered or unexported fields
}
func NewInstrumenter ¶
func NewInstrumenter(subsystemIdentifier string) *Instrumenter
New creates a new Instrumenter. The subsystemIdentifier will be used as part of the metric names (e.g. http_<identifier>_requests_total).
func (*Instrumenter) InstrumentedRoundTripper ¶
func (i *Instrumenter) InstrumentedRoundTripper() http.RoundTripper
InstrumentedRoundTripper returns an instrumented round tripper.
func (*Instrumenter) WithInsecureSkipVerify ¶ added in v1.0.16
func (i *Instrumenter) WithInsecureSkipVerify(insecure bool) *Instrumenter
func (*Instrumenter) WithProxy ¶ added in v1.0.16
func (i *Instrumenter) WithProxy(proxyURL string) *Instrumenter
type KubernetesMetricsLatency ¶ added in v1.0.8
type KubernetesMetricsLatency struct {
Cluster string
}