errors

package module
v0.52.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 3, 2024 License: Apache-2.0 Imports: 1 Imported by: 1

Documentation

Overview

Package errors provides custom errors for the agent

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsDisabled

func IsDisabled(err error) bool

IsDisabled returns true if the specified error was created by NewDisabled.

func IsNotFound

func IsNotFound(err error) bool

IsNotFound returns true if the specified error was created by NewNotFound.

func IsPartial

func IsPartial(err error) bool

IsPartial returns true if the specified error was created by NewPartial.

func IsRemoteService

func IsRemoteService(err error) bool

IsRemoteService returns true if the specified error was created by NewRemoteServiceError.

func IsRetriable

func IsRetriable(err error) bool

IsRetriable returns true if the specified error was created by NewRetriable.

func IsTimeout

func IsTimeout(err error) bool

IsTimeout returns true if the specified error was created by NewTimeoutError.

Types

type AgentError

type AgentError struct {
	// contains filtered or unexported fields
}

AgentError is an error intended for consumption by a datadog pkg; it can also be reconstructed by clients from an error response. Public to allow easy type switches.

func NewDisabled

func NewDisabled(component, reason string) *AgentError

NewDisabled returns a new error which indicates that a particular Agent component is disabled.

func NewNotFound

func NewNotFound(notFoundObject string) *AgentError

NewNotFound returns a new error which indicates that the object passed in parameter was not found.

func NewRemoteServiceError

func NewRemoteServiceError(target, status string) *AgentError

NewRemoteServiceError returns a new error which indicates that a remote service queried by the Agent is unavailable (e.g the Datadog Cluster Agent returning 500s). The status string can provide additional context (e.g a http response status "500 Internal Server Error").

func NewRetriable

func NewRetriable(retriableObj interface{}, err error) *AgentError

NewRetriable returns a new error which indicates that the object passed in parameter couldn't be fetched and that the query can be retried.

func NewTimeoutError

func NewTimeoutError(target string, err error) *AgentError

NewTimeoutError returns a new error which was caused by a timeout.

func (AgentError) Error

func (e AgentError) Error() string

Error satisfies the error interface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL