Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Settings ¶
type Settings struct { FrustratingIfReportedOrWebRequestError bool `json:"frustratingIfReportedOrWebRequestError"` // Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate. Scope string `json:"-" scope:"scope"` // The scope of this setting (DEVICE_APPLICATION_METHOD, MOBILE_APPLICATION, CUSTOM_APPLICATION) Thresholds *Thresholds `json:"thresholds"` }
func (*Settings) MarshalHCL ¶
func (me *Settings) MarshalHCL(properties hcl.Properties) error
type Thresholds ¶
type Thresholds struct { FrustratingThresholdSeconds float64 `json:"frustratingThresholdSeconds"` // If the action duration is above this value, the Apdex is considered to be **Frustrating**. TolerableThresholdSeconds float64 `json:"tolerableThresholdSeconds"` // If the action duration is below this value, the Apdex is considered to be **Satisfactory**. }
func (*Thresholds) MarshalHCL ¶
func (me *Thresholds) MarshalHCL(properties hcl.Properties) error
func (*Thresholds) UnmarshalHCL ¶
func (me *Thresholds) UnmarshalHCL(decoder hcl.Decoder) error
Click to show internal directories.
Click to hide internal directories.