Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type CaptureSettings ¶
type CaptureSettings struct { Capture bool `json:"capture"` // Capture this error ConsiderForAI *bool `json:"considerForAi,omitempty"` // [View more details](https://dt-url.net/hd580p2k) ImpactApdex *bool `json:"impactApdex,omitempty"` // Include error in Apdex calculations }
func (*CaptureSettings) MarshalHCL ¶
func (me *CaptureSettings) MarshalHCL(properties hcl.Properties) error
func (*CaptureSettings) UnmarshalHCL ¶
func (me *CaptureSettings) UnmarshalHCL(decoder hcl.Decoder) error
type CustomErrorRule ¶
type CustomErrorRule struct { CaptureSettings *CaptureSettings `json:"captureSettings"` // Capture settings KeyMatcher Matcher `json:"keyMatcher"` // Possible Values: `ALL`, `BEGINS_WITH`, `CONTAINS`, `ENDS_WITH`, `EQUALS` KeyPattern *string `json:"keyPattern,omitempty"` // A case-insensitive key pattern ValueMatcher Matcher `json:"valueMatcher"` // Possible Values: `ALL`, `BEGINS_WITH`, `CONTAINS`, `ENDS_WITH`, `EQUALS` ValuePattern *string `json:"valuePattern,omitempty"` // A case-insensitive value pattern }
func (*CustomErrorRule) MarshalHCL ¶
func (me *CustomErrorRule) MarshalHCL(properties hcl.Properties) error
func (*CustomErrorRule) UnmarshalHCL ¶
func (me *CustomErrorRule) UnmarshalHCL(decoder hcl.Decoder) error
type CustomErrorRules ¶
type CustomErrorRules []*CustomErrorRule
func (CustomErrorRules) MarshalHCL ¶
func (me CustomErrorRules) MarshalHCL(properties hcl.Properties) error
func (*CustomErrorRules) UnmarshalHCL ¶
func (me *CustomErrorRules) UnmarshalHCL(decoder hcl.Decoder) error
type Settings ¶
type Settings struct { ErrorRules CustomErrorRules `json:"errorRules,omitempty"` // (Field has overlap with `dynatrace_application_error_rules`) IgnoreCustomErrorsInApdexCalculation bool `json:"ignoreCustomErrorsInApdexCalculation"` // (Field has overlap with `dynatrace_application_error_rules`) This setting overrides Apdex settings for individual rules listed below Scope string `json:"-" scope:"scope"` // The scope of this setting (APPLICATION) }
func (*Settings) MarshalHCL ¶
func (me *Settings) MarshalHCL(properties hcl.Properties) error
Click to show internal directories.
Click to hide internal directories.