Documentation ¶
Index ¶
- Constants
- func NewTaggedMetricsScope() (*TaggedScope, io.Closer, *CapturingStatsReporter)
- func NewWorkflowServiceWrapper(service api.Interface, scope tally.Scope) api.Interface
- func WrapScope(isReplay *bool, scope tally.Scope, clock Clock) tally.Scope
- type CapturedCount
- type CapturedGauge
- type CapturedHistogramDurationSamples
- type CapturedHistogramValueSamples
- type CapturedTimer
- type CapturingStatsReporter
- func (c *CapturingStatsReporter) Capabilities() tally.Capabilities
- func (c *CapturingStatsReporter) Counts() []CapturedCount
- func (c *CapturingStatsReporter) Flush()
- func (c *CapturingStatsReporter) Gauges() []CapturedGauge
- func (c *CapturingStatsReporter) HistogramDurationSamples() []CapturedHistogramDurationSamples
- func (c *CapturingStatsReporter) HistogramValueSamples() []CapturedHistogramValueSamples
- func (c *CapturingStatsReporter) ReportCounter(name string, tags map[string]string, value int64)
- func (c *CapturingStatsReporter) ReportGauge(name string, tags map[string]string, value float64)
- func (c *CapturingStatsReporter) ReportHistogramDurationSamples(name string, tags map[string]string, buckets tally.Buckets, ...)
- func (c *CapturingStatsReporter) ReportHistogramValueSamples(name string, tags map[string]string, buckets tally.Buckets, ...)
- func (c *CapturingStatsReporter) ReportTimer(name string, tags map[string]string, value time.Duration)
- func (c *CapturingStatsReporter) Reporting() bool
- func (c *CapturingStatsReporter) Tagging() bool
- func (c *CapturingStatsReporter) Timers() []CapturedTimer
- type Clock
- type TaggedScope
Constants ¶
const ( CadenceMetricsPrefix = "cadence-" WorkflowStartCounter = CadenceMetricsPrefix + "workflow-start" WorkflowCompletedCounter = CadenceMetricsPrefix + "workflow-completed" WorkflowCanceledCounter = CadenceMetricsPrefix + "workflow-canceled" WorkflowFailedCounter = CadenceMetricsPrefix + "workflow-failed" WorkflowContinueAsNewCounter = CadenceMetricsPrefix + "workflow-continue-as-new" WorkflowEndToEndLatency = CadenceMetricsPrefix + "workflow-endtoend-latency" // measure workflow execution from start to close WorkflowGetHistoryCounter = CadenceMetricsPrefix + "workflow-get-history-total" WorkflowGetHistoryFailedCounter = CadenceMetricsPrefix + "workflow-get-history-failed" WorkflowGetHistorySucceedCounter = CadenceMetricsPrefix + "workflow-get-history-succeed" WorkflowGetHistoryLatency = CadenceMetricsPrefix + "workflow-get-history-latency" WorkflowSignalWithStartCounter = CadenceMetricsPrefix + "workflow-signal-with-start" DecisionTimeoutCounter = CadenceMetricsPrefix + "decision-timeout" DecisionPollCounter = CadenceMetricsPrefix + "decision-poll-total" DecisionPollFailedCounter = CadenceMetricsPrefix + "decision-poll-failed" DecisionPollTransientFailedCounter = CadenceMetricsPrefix + "decision-poll-transient-failed" DecisionPollNoTaskCounter = CadenceMetricsPrefix + "decision-poll-no-task" DecisionPollSucceedCounter = CadenceMetricsPrefix + "decision-poll-succeed" DecisionPollLatency = CadenceMetricsPrefix + "decision-poll-latency" // measure succeed poll request latency DecisionPollInvalidCounter = CadenceMetricsPrefix + "decision-poll-invalid" DecisionScheduledToStartLatency = CadenceMetricsPrefix + "decision-scheduled-to-start-latency" DecisionExecutionFailedCounter = CadenceMetricsPrefix + "decision-execution-failed" DecisionExecutionLatency = CadenceMetricsPrefix + "decision-execution-latency" DecisionResponseFailedCounter = CadenceMetricsPrefix + "decision-response-failed" DecisionResponseLatency = CadenceMetricsPrefix + "decision-response-latency" DecisionTaskPanicCounter = CadenceMetricsPrefix + "decision-task-panic" DecisionTaskCompletedCounter = CadenceMetricsPrefix + "decision-task-completed" DecisionTaskForceCompleted = CadenceMetricsPrefix + "decision-task-force-completed" ActivityPollCounter = CadenceMetricsPrefix + "activity-poll-total" ActivityPollFailedCounter = CadenceMetricsPrefix + "activity-poll-failed" ActivityPollTransientFailedCounter = CadenceMetricsPrefix + "activity-poll-transient-failed" ActivityPollNoTaskCounter = CadenceMetricsPrefix + "activity-poll-no-task" ActivityPollSucceedCounter = CadenceMetricsPrefix + "activity-poll-succeed" ActivityPollLatency = CadenceMetricsPrefix + "activity-poll-latency" ActivityScheduledToStartLatency = CadenceMetricsPrefix + "activity-scheduled-to-start-latency" ActivityExecutionFailedCounter = CadenceMetricsPrefix + "activity-execution-failed" ActivityExecutionLatency = CadenceMetricsPrefix + "activity-execution-latency" ActivityResponseLatency = CadenceMetricsPrefix + "activity-response-latency" ActivityResponseFailedCounter = CadenceMetricsPrefix + "activity-response-failed" ActivityEndToEndLatency = CadenceMetricsPrefix + "activity-endtoend-latency" ActivityTaskPanicCounter = CadenceMetricsPrefix + "activity-task-panic" ActivityTaskCompletedCounter = CadenceMetricsPrefix + "activity-task-completed" ActivityTaskFailedCounter = CadenceMetricsPrefix + "activity-task-failed" ActivityTaskCanceledCounter = CadenceMetricsPrefix + "activity-task-canceled" ActivityTaskCompletedByIDCounter = CadenceMetricsPrefix + "activity-task-completed-by-id" ActivityTaskFailedByIDCounter = CadenceMetricsPrefix + "activity-task-failed-by-id" ActivityTaskCanceledByIDCounter = CadenceMetricsPrefix + "activity-task-canceled-by-id" LocalActivityTotalCounter = CadenceMetricsPrefix + "local-activity-total" LocalActivityTimeoutCounter = CadenceMetricsPrefix + "local-activity-timeout" LocalActivityCanceledCounter = CadenceMetricsPrefix + "local-activity-canceled" LocalActivityFailedCounter = CadenceMetricsPrefix + "local-activity-failed" LocalActivityPanicCounter = CadenceMetricsPrefix + "local-activity-panic" LocalActivityExecutionLatency = CadenceMetricsPrefix + "local-activity-execution-latency" LocallyDispatchedActivityPollCounter = CadenceMetricsPrefix + "locally-dispatched-activity-poll-total" LocallyDispatchedActivityPollNoTaskCounter = CadenceMetricsPrefix + "locally-dispatched-activity-poll-no-task" LocallyDispatchedActivityPollSucceedCounter = CadenceMetricsPrefix + "locally-dispatched-activity-poll-succeed" ActivityLocalDispatchFailedCounter = CadenceMetricsPrefix + "activity-local-dispatch-failed" ActivityLocalDispatchSucceedCounter = CadenceMetricsPrefix + "activity-local-dispatch-succeed" WorkerPanicCounter = CadenceMetricsPrefix + "worker-panic" UnhandledSignalsCounter = CadenceMetricsPrefix + "unhandled-signals" CorruptedSignalsCounter = CadenceMetricsPrefix + "corrupted-signals" WorkerStartCounter = CadenceMetricsPrefix + "worker-start" PollerStartCounter = CadenceMetricsPrefix + "poller-start" CadenceRequest = CadenceMetricsPrefix + "request" CadenceError = CadenceMetricsPrefix + "error" CadenceLatency = CadenceMetricsPrefix + "latency" CadenceInvalidRequest = CadenceMetricsPrefix + "invalid-request" StickyCacheHit = CadenceMetricsPrefix + "sticky-cache-hit" StickyCacheMiss = CadenceMetricsPrefix + "sticky-cache-miss" StickyCacheEvict = CadenceMetricsPrefix + "sticky-cache-evict" StickyCacheStall = CadenceMetricsPrefix + "sticky-cache-stall" StickyCacheSize = CadenceMetricsPrefix + "sticky-cache-size" NonDeterministicError = CadenceMetricsPrefix + "non-deterministic-error" ReplaySucceedCounter = CadenceMetricsPrefix + "replay-succeed" ReplayFailedCounter = CadenceMetricsPrefix + "replay-failed" ReplaySkippedCounter = CadenceMetricsPrefix + "replay-skipped" ReplayLatency = CadenceMetricsPrefix + "replay-latency" )
Workflow Creation metrics
Variables ¶
This section is empty.
Functions ¶
func NewTaggedMetricsScope ¶
func NewTaggedMetricsScope() (*TaggedScope, io.Closer, *CapturingStatsReporter)
NewTaggedMetricsScope return NewTaggedMetricsScope
func NewWorkflowServiceWrapper ¶
NewWorkflowServiceWrapper creates a new wrapper to WorkflowService that will emit metrics for each service call.
func WrapScope ¶
WrapScope wraps a scope and skip recording metrics when isReplay is true. This is designed to be used by only by workflowEnvironmentImpl so we suppress metrics while replaying history events. Parameter isReplay is a pointer to workflowEnvironmentImpl.isReplay which will be updated when replaying history events.
Types ¶
type CapturedCount ¶
type CapturedCount struct {
// contains filtered or unexported fields
}
CapturedCount has associated name, tags and value
func (*CapturedCount) Name ¶
func (c *CapturedCount) Name() string
Name return the name of CapturedCount
func (*CapturedCount) Tags ¶
func (c *CapturedCount) Tags() map[string]string
Tags return CapturedCount tags
func (*CapturedCount) Value ¶
func (c *CapturedCount) Value() int64
Value return the value of CapturedCount
type CapturedGauge ¶
type CapturedGauge struct {
// contains filtered or unexported fields
}
CapturedGauge has CapturedGauge name, tag and values
func (*CapturedGauge) Name ¶
func (c *CapturedGauge) Name() string
Name return the name of CapturedGauge
func (*CapturedGauge) Tags ¶
func (c *CapturedGauge) Tags() map[string]string
Tags return the tags of CapturedGauge
func (*CapturedGauge) Value ¶
func (c *CapturedGauge) Value() float64
Value return the value of CapturedGauge
type CapturedHistogramDurationSamples ¶
type CapturedHistogramDurationSamples struct {
// contains filtered or unexported fields
}
CapturedHistogramDurationSamples has related information for CapturedHistogramDurationSamples
type CapturedHistogramValueSamples ¶
type CapturedHistogramValueSamples struct {
// contains filtered or unexported fields
}
CapturedHistogramValueSamples has related information for CapturedHistogramValueSamples
type CapturedTimer ¶
type CapturedTimer struct {
// contains filtered or unexported fields
}
CapturedTimer has related name , tags and value
func (*CapturedTimer) Name ¶
func (c *CapturedTimer) Name() string
Name return the name of CapturedTimer
func (*CapturedTimer) Tags ¶
func (c *CapturedTimer) Tags() map[string]string
Tags return the tag of CapturedTimer
func (*CapturedTimer) Value ¶
func (c *CapturedTimer) Value() time.Duration
Value return the value of CapturedTimer
type CapturingStatsReporter ¶
type CapturingStatsReporter struct {
// contains filtered or unexported fields
}
CapturingStatsReporter is a reporter used by tests to capture the metric so we can verify our tests.
func NewMetricsScope ¶
NewMetricsScope returns a new metric scope
func (*CapturingStatsReporter) Capabilities ¶
func (c *CapturingStatsReporter) Capabilities() tally.Capabilities
Capabilities return tally.Capabilities
func (*CapturingStatsReporter) Counts ¶
func (c *CapturingStatsReporter) Counts() []CapturedCount
Counts return Counts
func (*CapturingStatsReporter) Flush ¶
func (c *CapturingStatsReporter) Flush()
Flush will add one to flush
func (*CapturingStatsReporter) Gauges ¶
func (c *CapturingStatsReporter) Gauges() []CapturedGauge
Gauges return Gauges
func (*CapturingStatsReporter) HistogramDurationSamples ¶
func (c *CapturingStatsReporter) HistogramDurationSamples() []CapturedHistogramDurationSamples
HistogramDurationSamples return HistogramDurationSamples
func (*CapturingStatsReporter) HistogramValueSamples ¶
func (c *CapturingStatsReporter) HistogramValueSamples() []CapturedHistogramValueSamples
HistogramValueSamples return HistogramValueSamples
func (*CapturingStatsReporter) ReportCounter ¶
func (c *CapturingStatsReporter) ReportCounter( name string, tags map[string]string, value int64, )
ReportCounter reports the counts
func (*CapturingStatsReporter) ReportGauge ¶
func (c *CapturingStatsReporter) ReportGauge( name string, tags map[string]string, value float64, )
ReportGauge reports the gauges
func (*CapturingStatsReporter) ReportHistogramDurationSamples ¶
func (c *CapturingStatsReporter) ReportHistogramDurationSamples( name string, tags map[string]string, buckets tally.Buckets, bucketLowerBound, bucketUpperBound time.Duration, samples int64, )
ReportHistogramDurationSamples reports ReportHistogramDurationSamples
func (*CapturingStatsReporter) ReportHistogramValueSamples ¶
func (c *CapturingStatsReporter) ReportHistogramValueSamples( name string, tags map[string]string, buckets tally.Buckets, bucketLowerBound, bucketUpperBound float64, samples int64, )
ReportHistogramValueSamples reports histogramValueSamples
func (*CapturingStatsReporter) ReportTimer ¶
func (c *CapturingStatsReporter) ReportTimer( name string, tags map[string]string, value time.Duration, )
ReportTimer reports timers
func (*CapturingStatsReporter) Reporting ¶
func (c *CapturingStatsReporter) Reporting() bool
Reporting will always return true
func (*CapturingStatsReporter) Tagging ¶
func (c *CapturingStatsReporter) Tagging() bool
Tagging will always return true
func (*CapturingStatsReporter) Timers ¶
func (c *CapturingStatsReporter) Timers() []CapturedTimer
Timers return Timers
type TaggedScope ¶
TaggedScope provides metricScope with tags
func NewTaggedScope ¶
func NewTaggedScope(scope tally.Scope) *TaggedScope
NewTaggedScope create a new TaggedScope
func (*TaggedScope) GetTaggedScope ¶
func (ts *TaggedScope) GetTaggedScope(keyValueinPairs ...string) tally.Scope
GetTaggedScope return a scope with one or multiple tags, input should be key value pairs like: GetTaggedScope(scope, tag1, val1, tag2, val2).