eventcounter

package
v0.0.0-...-0d6d9b2 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2024 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	GetEvaluationTimeseriesCountRequest_TimeRange_name = map[int32]string{
		0: "UNKNOWN",
		1: "TWENTY_FOUR_HOURS",
		2: "SEVEN_DAYS",
		3: "FOURTEEN_DAYS",
		4: "THIRTY_DAYS",
	}
	GetEvaluationTimeseriesCountRequest_TimeRange_value = map[string]int32{
		"UNKNOWN":           0,
		"TWENTY_FOUR_HOURS": 1,
		"SEVEN_DAYS":        2,
		"FOURTEEN_DAYS":     3,
		"THIRTY_DAYS":       4,
	}
)

Enum value maps for GetEvaluationTimeseriesCountRequest_TimeRange.

View Source
var (
	Timeseries_Unit_name = map[int32]string{
		0: "HOUR",
		1: "DAY",
	}
	Timeseries_Unit_value = map[string]int32{
		"HOUR": 0,
		"DAY":  1,
	}
)

Enum value maps for Timeseries_Unit.

View Source
var File_proto_eventcounter_distribution_summary_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_evaluation_count_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_experiment_count_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_experiment_result_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_goal_result_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_histogram_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_mau_summary_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_service_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_timeseries_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_variation_count_proto protoreflect.FileDescriptor
View Source
var File_proto_eventcounter_variation_result_proto protoreflect.FileDescriptor

Functions

func RegisterEventCounterServiceServer

func RegisterEventCounterServiceServer(s *grpc.Server, srv EventCounterServiceServer)

Types

type DistributionSummary

type DistributionSummary struct {
	Mean          float64    `protobuf:"fixed64,1,opt,name=mean,proto3" json:"mean"`
	Sd            float64    `protobuf:"fixed64,2,opt,name=sd,proto3" json:"sd"`
	Rhat          float64    `protobuf:"fixed64,3,opt,name=rhat,proto3" json:"rhat"`
	Histogram     *Histogram `protobuf:"bytes,4,opt,name=histogram,proto3" json:"histogram"`
	Median        float64    `protobuf:"fixed64,5,opt,name=median,proto3" json:"median"`
	Percentile025 float64    `protobuf:"fixed64,6,opt,name=percentile025,proto3" json:"percentile025"` // Remove "_" because python should generate same
	// field name for Datasource.
	Percentile975 float64 `protobuf:"fixed64,7,opt,name=percentile975,proto3" json:"percentile975"` // Remove "_" because python should generate same
	// contains filtered or unexported fields
}

func (*DistributionSummary) Descriptor deprecated

func (*DistributionSummary) Descriptor() ([]byte, []int)

Deprecated: Use DistributionSummary.ProtoReflect.Descriptor instead.

func (*DistributionSummary) GetHistogram

func (x *DistributionSummary) GetHistogram() *Histogram

func (*DistributionSummary) GetMean

func (x *DistributionSummary) GetMean() float64

func (*DistributionSummary) GetMedian

func (x *DistributionSummary) GetMedian() float64

func (*DistributionSummary) GetPercentile025

func (x *DistributionSummary) GetPercentile025() float64

func (*DistributionSummary) GetPercentile975

func (x *DistributionSummary) GetPercentile975() float64

func (*DistributionSummary) GetRhat

func (x *DistributionSummary) GetRhat() float64

func (*DistributionSummary) GetSd

func (x *DistributionSummary) GetSd() float64

func (*DistributionSummary) ProtoMessage

func (*DistributionSummary) ProtoMessage()

func (*DistributionSummary) ProtoReflect

func (x *DistributionSummary) ProtoReflect() protoreflect.Message

func (*DistributionSummary) Reset

func (x *DistributionSummary) Reset()

func (*DistributionSummary) String

func (x *DistributionSummary) String() string

type EvaluationCount

type EvaluationCount struct {
	Id             string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	FeatureId      string            `protobuf:"bytes,2,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion int32             `protobuf:"varint,3,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	RealtimeCounts []*VariationCount `protobuf:"bytes,4,rep,name=realtime_counts,json=realtimeCounts,proto3" json:"realtime_counts"`
	BatchCounts    []*VariationCount `protobuf:"bytes,5,rep,name=batch_counts,json=batchCounts,proto3" json:"batch_counts"`
	UpdatedAt      int64             `protobuf:"varint,6,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
	// contains filtered or unexported fields
}

func (*EvaluationCount) Descriptor deprecated

func (*EvaluationCount) Descriptor() ([]byte, []int)

Deprecated: Use EvaluationCount.ProtoReflect.Descriptor instead.

func (*EvaluationCount) GetBatchCounts

func (x *EvaluationCount) GetBatchCounts() []*VariationCount

func (*EvaluationCount) GetFeatureId

func (x *EvaluationCount) GetFeatureId() string

func (*EvaluationCount) GetFeatureVersion

func (x *EvaluationCount) GetFeatureVersion() int32

func (*EvaluationCount) GetId

func (x *EvaluationCount) GetId() string

func (*EvaluationCount) GetRealtimeCounts

func (x *EvaluationCount) GetRealtimeCounts() []*VariationCount

func (*EvaluationCount) GetUpdatedAt

func (x *EvaluationCount) GetUpdatedAt() int64

func (*EvaluationCount) ProtoMessage

func (*EvaluationCount) ProtoMessage()

func (*EvaluationCount) ProtoReflect

func (x *EvaluationCount) ProtoReflect() protoreflect.Message

func (*EvaluationCount) Reset

func (x *EvaluationCount) Reset()

func (*EvaluationCount) String

func (x *EvaluationCount) String() string

type EventCounterServiceClient

EventCounterServiceClient is the client API for EventCounterService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type ExperimentCount

type ExperimentCount struct {
	Id             string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	FeatureId      string `protobuf:"bytes,2,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion int32  `protobuf:"varint,3,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	// Deprecated: Do not use.
	GoalId string `protobuf:"bytes,4,opt,name=goal_id,json=goalId,proto3" json:"goal_id"`
	// Deprecated: Do not use.
	RealtimeCounts []*VariationCount `protobuf:"bytes,5,rep,name=realtime_counts,json=realtimeCounts,proto3" json:"realtime_counts"`
	// Deprecated: Do not use.
	BatchCounts []*VariationCount `protobuf:"bytes,6,rep,name=batch_counts,json=batchCounts,proto3" json:"batch_counts"`
	UpdatedAt   int64             `protobuf:"varint,7,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
	GoalCounts  []*GoalCounts     `protobuf:"bytes,8,rep,name=goal_counts,json=goalCounts,proto3" json:"goal_counts"`
	// contains filtered or unexported fields
}

func (*ExperimentCount) Descriptor deprecated

func (*ExperimentCount) Descriptor() ([]byte, []int)

Deprecated: Use ExperimentCount.ProtoReflect.Descriptor instead.

func (*ExperimentCount) GetBatchCounts deprecated

func (x *ExperimentCount) GetBatchCounts() []*VariationCount

Deprecated: Do not use.

func (*ExperimentCount) GetFeatureId

func (x *ExperimentCount) GetFeatureId() string

func (*ExperimentCount) GetFeatureVersion

func (x *ExperimentCount) GetFeatureVersion() int32

func (*ExperimentCount) GetGoalCounts

func (x *ExperimentCount) GetGoalCounts() []*GoalCounts

func (*ExperimentCount) GetGoalId deprecated

func (x *ExperimentCount) GetGoalId() string

Deprecated: Do not use.

func (*ExperimentCount) GetId

func (x *ExperimentCount) GetId() string

func (*ExperimentCount) GetRealtimeCounts deprecated

func (x *ExperimentCount) GetRealtimeCounts() []*VariationCount

Deprecated: Do not use.

func (*ExperimentCount) GetUpdatedAt

func (x *ExperimentCount) GetUpdatedAt() int64

func (*ExperimentCount) ProtoMessage

func (*ExperimentCount) ProtoMessage()

func (*ExperimentCount) ProtoReflect

func (x *ExperimentCount) ProtoReflect() protoreflect.Message

func (*ExperimentCount) Reset

func (x *ExperimentCount) Reset()

func (*ExperimentCount) String

func (x *ExperimentCount) String() string

type ExperimentResult

type ExperimentResult struct {
	Id           string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	ExperimentId string        `protobuf:"bytes,2,opt,name=experiment_id,json=experimentId,proto3" json:"experiment_id"`
	UpdatedAt    int64         `protobuf:"varint,3,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
	GoalResults  []*GoalResult `protobuf:"bytes,4,rep,name=goal_results,json=goalResults,proto3" json:"goal_results"`
	// contains filtered or unexported fields
}

func (*ExperimentResult) Descriptor deprecated

func (*ExperimentResult) Descriptor() ([]byte, []int)

Deprecated: Use ExperimentResult.ProtoReflect.Descriptor instead.

func (*ExperimentResult) GetExperimentId

func (x *ExperimentResult) GetExperimentId() string

func (*ExperimentResult) GetGoalResults

func (x *ExperimentResult) GetGoalResults() []*GoalResult

func (*ExperimentResult) GetId

func (x *ExperimentResult) GetId() string

func (*ExperimentResult) GetUpdatedAt

func (x *ExperimentResult) GetUpdatedAt() int64

func (*ExperimentResult) ProtoMessage

func (*ExperimentResult) ProtoMessage()

func (*ExperimentResult) ProtoReflect

func (x *ExperimentResult) ProtoReflect() protoreflect.Message

func (*ExperimentResult) Reset

func (x *ExperimentResult) Reset()

func (*ExperimentResult) String

func (x *ExperimentResult) String() string

type GetEvaluationTimeseriesCountRequest

type GetEvaluationTimeseriesCountRequest struct {
	EnvironmentNamespace string                                        `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	FeatureId            string                                        `protobuf:"bytes,2,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	TimeRange            GetEvaluationTimeseriesCountRequest_TimeRange `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetEvaluationTimeseriesCountRequest) Descriptor deprecated

func (*GetEvaluationTimeseriesCountRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetEvaluationTimeseriesCountRequest.ProtoReflect.Descriptor instead.

func (*GetEvaluationTimeseriesCountRequest) GetEnvironmentNamespace

func (x *GetEvaluationTimeseriesCountRequest) GetEnvironmentNamespace() string

func (*GetEvaluationTimeseriesCountRequest) GetFeatureId

func (x *GetEvaluationTimeseriesCountRequest) GetFeatureId() string

func (*GetEvaluationTimeseriesCountRequest) GetTimeRange

func (*GetEvaluationTimeseriesCountRequest) ProtoMessage

func (*GetEvaluationTimeseriesCountRequest) ProtoMessage()

func (*GetEvaluationTimeseriesCountRequest) ProtoReflect

func (*GetEvaluationTimeseriesCountRequest) Reset

func (*GetEvaluationTimeseriesCountRequest) String

type GetEvaluationTimeseriesCountRequest_TimeRange

type GetEvaluationTimeseriesCountRequest_TimeRange int32
const (
	GetEvaluationTimeseriesCountRequest_UNKNOWN           GetEvaluationTimeseriesCountRequest_TimeRange = 0
	GetEvaluationTimeseriesCountRequest_TWENTY_FOUR_HOURS GetEvaluationTimeseriesCountRequest_TimeRange = 1
	GetEvaluationTimeseriesCountRequest_SEVEN_DAYS        GetEvaluationTimeseriesCountRequest_TimeRange = 2
	GetEvaluationTimeseriesCountRequest_FOURTEEN_DAYS     GetEvaluationTimeseriesCountRequest_TimeRange = 3
	GetEvaluationTimeseriesCountRequest_THIRTY_DAYS       GetEvaluationTimeseriesCountRequest_TimeRange = 4
)

func (GetEvaluationTimeseriesCountRequest_TimeRange) Descriptor

func (GetEvaluationTimeseriesCountRequest_TimeRange) Enum

func (GetEvaluationTimeseriesCountRequest_TimeRange) EnumDescriptor deprecated

func (GetEvaluationTimeseriesCountRequest_TimeRange) EnumDescriptor() ([]byte, []int)

Deprecated: Use GetEvaluationTimeseriesCountRequest_TimeRange.Descriptor instead.

func (GetEvaluationTimeseriesCountRequest_TimeRange) Number

func (GetEvaluationTimeseriesCountRequest_TimeRange) String

func (GetEvaluationTimeseriesCountRequest_TimeRange) Type

type GetEvaluationTimeseriesCountResponse

type GetEvaluationTimeseriesCountResponse struct {
	UserCounts  []*VariationTimeseries `protobuf:"bytes,1,rep,name=user_counts,json=userCounts,proto3" json:"user_counts"`
	EventCounts []*VariationTimeseries `protobuf:"bytes,2,rep,name=event_counts,json=eventCounts,proto3" json:"event_counts"`
	// contains filtered or unexported fields
}

func (*GetEvaluationTimeseriesCountResponse) Descriptor deprecated

func (*GetEvaluationTimeseriesCountResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetEvaluationTimeseriesCountResponse.ProtoReflect.Descriptor instead.

func (*GetEvaluationTimeseriesCountResponse) GetEventCounts

func (*GetEvaluationTimeseriesCountResponse) GetUserCounts

func (*GetEvaluationTimeseriesCountResponse) ProtoMessage

func (*GetEvaluationTimeseriesCountResponse) ProtoMessage()

func (*GetEvaluationTimeseriesCountResponse) ProtoReflect

func (*GetEvaluationTimeseriesCountResponse) Reset

func (*GetEvaluationTimeseriesCountResponse) String

type GetExperimentEvaluationCountRequest

type GetExperimentEvaluationCountRequest struct {
	EnvironmentNamespace string   `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	StartAt              int64    `protobuf:"varint,2,opt,name=start_at,json=startAt,proto3" json:"start_at"`
	EndAt                int64    `protobuf:"varint,3,opt,name=end_at,json=endAt,proto3" json:"end_at"`
	FeatureId            string   `protobuf:"bytes,4,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion       int32    `protobuf:"varint,5,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	VariationIds         []string `protobuf:"bytes,6,rep,name=variation_ids,json=variationIds,proto3" json:"variation_ids"`
	// contains filtered or unexported fields
}

func (*GetExperimentEvaluationCountRequest) Descriptor deprecated

func (*GetExperimentEvaluationCountRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExperimentEvaluationCountRequest.ProtoReflect.Descriptor instead.

func (*GetExperimentEvaluationCountRequest) GetEndAt

func (*GetExperimentEvaluationCountRequest) GetEnvironmentNamespace

func (x *GetExperimentEvaluationCountRequest) GetEnvironmentNamespace() string

func (*GetExperimentEvaluationCountRequest) GetFeatureId

func (x *GetExperimentEvaluationCountRequest) GetFeatureId() string

func (*GetExperimentEvaluationCountRequest) GetFeatureVersion

func (x *GetExperimentEvaluationCountRequest) GetFeatureVersion() int32

func (*GetExperimentEvaluationCountRequest) GetStartAt

func (*GetExperimentEvaluationCountRequest) GetVariationIds

func (x *GetExperimentEvaluationCountRequest) GetVariationIds() []string

func (*GetExperimentEvaluationCountRequest) ProtoMessage

func (*GetExperimentEvaluationCountRequest) ProtoMessage()

func (*GetExperimentEvaluationCountRequest) ProtoReflect

func (*GetExperimentEvaluationCountRequest) Reset

func (*GetExperimentEvaluationCountRequest) String

type GetExperimentEvaluationCountResponse

type GetExperimentEvaluationCountResponse struct {
	FeatureId       string            `protobuf:"bytes,1,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion  int32             `protobuf:"varint,2,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	VariationCounts []*VariationCount `protobuf:"bytes,3,rep,name=variation_counts,json=variationCounts,proto3" json:"variation_counts"`
	// contains filtered or unexported fields
}

func (*GetExperimentEvaluationCountResponse) Descriptor deprecated

func (*GetExperimentEvaluationCountResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExperimentEvaluationCountResponse.ProtoReflect.Descriptor instead.

func (*GetExperimentEvaluationCountResponse) GetFeatureId

func (x *GetExperimentEvaluationCountResponse) GetFeatureId() string

func (*GetExperimentEvaluationCountResponse) GetFeatureVersion

func (x *GetExperimentEvaluationCountResponse) GetFeatureVersion() int32

func (*GetExperimentEvaluationCountResponse) GetVariationCounts

func (x *GetExperimentEvaluationCountResponse) GetVariationCounts() []*VariationCount

func (*GetExperimentEvaluationCountResponse) ProtoMessage

func (*GetExperimentEvaluationCountResponse) ProtoMessage()

func (*GetExperimentEvaluationCountResponse) ProtoReflect

func (*GetExperimentEvaluationCountResponse) Reset

func (*GetExperimentEvaluationCountResponse) String

type GetExperimentGoalCountRequest

type GetExperimentGoalCountRequest struct {
	EnvironmentNamespace string   `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	StartAt              int64    `protobuf:"varint,2,opt,name=start_at,json=startAt,proto3" json:"start_at"`
	EndAt                int64    `protobuf:"varint,3,opt,name=end_at,json=endAt,proto3" json:"end_at"`
	GoalId               string   `protobuf:"bytes,4,opt,name=goal_id,json=goalId,proto3" json:"goal_id"`
	FeatureId            string   `protobuf:"bytes,5,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion       int32    `protobuf:"varint,6,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	VariationIds         []string `protobuf:"bytes,7,rep,name=variation_ids,json=variationIds,proto3" json:"variation_ids"`
	// contains filtered or unexported fields
}

func (*GetExperimentGoalCountRequest) Descriptor deprecated

func (*GetExperimentGoalCountRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExperimentGoalCountRequest.ProtoReflect.Descriptor instead.

func (*GetExperimentGoalCountRequest) GetEndAt

func (x *GetExperimentGoalCountRequest) GetEndAt() int64

func (*GetExperimentGoalCountRequest) GetEnvironmentNamespace

func (x *GetExperimentGoalCountRequest) GetEnvironmentNamespace() string

func (*GetExperimentGoalCountRequest) GetFeatureId

func (x *GetExperimentGoalCountRequest) GetFeatureId() string

func (*GetExperimentGoalCountRequest) GetFeatureVersion

func (x *GetExperimentGoalCountRequest) GetFeatureVersion() int32

func (*GetExperimentGoalCountRequest) GetGoalId

func (x *GetExperimentGoalCountRequest) GetGoalId() string

func (*GetExperimentGoalCountRequest) GetStartAt

func (x *GetExperimentGoalCountRequest) GetStartAt() int64

func (*GetExperimentGoalCountRequest) GetVariationIds

func (x *GetExperimentGoalCountRequest) GetVariationIds() []string

func (*GetExperimentGoalCountRequest) ProtoMessage

func (*GetExperimentGoalCountRequest) ProtoMessage()

func (*GetExperimentGoalCountRequest) ProtoReflect

func (*GetExperimentGoalCountRequest) Reset

func (x *GetExperimentGoalCountRequest) Reset()

func (*GetExperimentGoalCountRequest) String

type GetExperimentGoalCountResponse

type GetExperimentGoalCountResponse struct {
	GoalId          string            `protobuf:"bytes,1,opt,name=goal_id,json=goalId,proto3" json:"goal_id"`
	VariationCounts []*VariationCount `protobuf:"bytes,2,rep,name=variation_counts,json=variationCounts,proto3" json:"variation_counts"`
	// contains filtered or unexported fields
}

func (*GetExperimentGoalCountResponse) Descriptor deprecated

func (*GetExperimentGoalCountResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExperimentGoalCountResponse.ProtoReflect.Descriptor instead.

func (*GetExperimentGoalCountResponse) GetGoalId

func (x *GetExperimentGoalCountResponse) GetGoalId() string

func (*GetExperimentGoalCountResponse) GetVariationCounts

func (x *GetExperimentGoalCountResponse) GetVariationCounts() []*VariationCount

func (*GetExperimentGoalCountResponse) ProtoMessage

func (*GetExperimentGoalCountResponse) ProtoMessage()

func (*GetExperimentGoalCountResponse) ProtoReflect

func (*GetExperimentGoalCountResponse) Reset

func (x *GetExperimentGoalCountResponse) Reset()

func (*GetExperimentGoalCountResponse) String

type GetExperimentResultRequest

type GetExperimentResultRequest struct {
	EnvironmentNamespace string `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	ExperimentId         string `protobuf:"bytes,2,opt,name=experiment_id,json=experimentId,proto3" json:"experiment_id"`
	// contains filtered or unexported fields
}

func (*GetExperimentResultRequest) Descriptor deprecated

func (*GetExperimentResultRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetExperimentResultRequest.ProtoReflect.Descriptor instead.

func (*GetExperimentResultRequest) GetEnvironmentNamespace

func (x *GetExperimentResultRequest) GetEnvironmentNamespace() string

func (*GetExperimentResultRequest) GetExperimentId

func (x *GetExperimentResultRequest) GetExperimentId() string

func (*GetExperimentResultRequest) ProtoMessage

func (*GetExperimentResultRequest) ProtoMessage()

func (*GetExperimentResultRequest) ProtoReflect

func (*GetExperimentResultRequest) Reset

func (x *GetExperimentResultRequest) Reset()

func (*GetExperimentResultRequest) String

func (x *GetExperimentResultRequest) String() string

type GetExperimentResultResponse

type GetExperimentResultResponse struct {
	ExperimentResult *ExperimentResult `protobuf:"bytes,1,opt,name=experiment_result,json=experimentResult,proto3" json:"experiment_result"`
	// contains filtered or unexported fields
}

func (*GetExperimentResultResponse) Descriptor deprecated

func (*GetExperimentResultResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetExperimentResultResponse.ProtoReflect.Descriptor instead.

func (*GetExperimentResultResponse) GetExperimentResult

func (x *GetExperimentResultResponse) GetExperimentResult() *ExperimentResult

func (*GetExperimentResultResponse) ProtoMessage

func (*GetExperimentResultResponse) ProtoMessage()

func (*GetExperimentResultResponse) ProtoReflect

func (*GetExperimentResultResponse) Reset

func (x *GetExperimentResultResponse) Reset()

func (*GetExperimentResultResponse) String

func (x *GetExperimentResultResponse) String() string

type GetMAUCountRequest

type GetMAUCountRequest struct {
	EnvironmentNamespace string `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	YearMonth            string `protobuf:"bytes,2,opt,name=year_month,json=yearMonth,proto3" json:"year_month"`
	// contains filtered or unexported fields
}

func (*GetMAUCountRequest) Descriptor deprecated

func (*GetMAUCountRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetMAUCountRequest.ProtoReflect.Descriptor instead.

func (*GetMAUCountRequest) GetEnvironmentNamespace

func (x *GetMAUCountRequest) GetEnvironmentNamespace() string

func (*GetMAUCountRequest) GetYearMonth

func (x *GetMAUCountRequest) GetYearMonth() string

func (*GetMAUCountRequest) ProtoMessage

func (*GetMAUCountRequest) ProtoMessage()

func (*GetMAUCountRequest) ProtoReflect

func (x *GetMAUCountRequest) ProtoReflect() protoreflect.Message

func (*GetMAUCountRequest) Reset

func (x *GetMAUCountRequest) Reset()

func (*GetMAUCountRequest) String

func (x *GetMAUCountRequest) String() string

type GetMAUCountResponse

type GetMAUCountResponse struct {
	EventCount int64 `protobuf:"varint,1,opt,name=event_count,json=eventCount,proto3" json:"event_count"`
	UserCount  int64 `protobuf:"varint,2,opt,name=user_count,json=userCount,proto3" json:"user_count"`
	// contains filtered or unexported fields
}

func (*GetMAUCountResponse) Descriptor deprecated

func (*GetMAUCountResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetMAUCountResponse.ProtoReflect.Descriptor instead.

func (*GetMAUCountResponse) GetEventCount

func (x *GetMAUCountResponse) GetEventCount() int64

func (*GetMAUCountResponse) GetUserCount

func (x *GetMAUCountResponse) GetUserCount() int64

func (*GetMAUCountResponse) ProtoMessage

func (*GetMAUCountResponse) ProtoMessage()

func (*GetMAUCountResponse) ProtoReflect

func (x *GetMAUCountResponse) ProtoReflect() protoreflect.Message

func (*GetMAUCountResponse) Reset

func (x *GetMAUCountResponse) Reset()

func (*GetMAUCountResponse) String

func (x *GetMAUCountResponse) String() string

type GetOpsEvaluationUserCountRequest

type GetOpsEvaluationUserCountRequest struct {
	EnvironmentNamespace string `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	OpsRuleId            string `protobuf:"bytes,2,opt,name=ops_rule_id,json=opsRuleId,proto3" json:"ops_rule_id"`
	ClauseId             string `protobuf:"bytes,3,opt,name=clause_id,json=clauseId,proto3" json:"clause_id"`
	FeatureId            string `protobuf:"bytes,4,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion       int32  `protobuf:"varint,5,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	VariationId          string `protobuf:"bytes,6,opt,name=variation_id,json=variationId,proto3" json:"variation_id"`
	// contains filtered or unexported fields
}

func (*GetOpsEvaluationUserCountRequest) Descriptor deprecated

func (*GetOpsEvaluationUserCountRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOpsEvaluationUserCountRequest.ProtoReflect.Descriptor instead.

func (*GetOpsEvaluationUserCountRequest) GetClauseId

func (x *GetOpsEvaluationUserCountRequest) GetClauseId() string

func (*GetOpsEvaluationUserCountRequest) GetEnvironmentNamespace

func (x *GetOpsEvaluationUserCountRequest) GetEnvironmentNamespace() string

func (*GetOpsEvaluationUserCountRequest) GetFeatureId

func (x *GetOpsEvaluationUserCountRequest) GetFeatureId() string

func (*GetOpsEvaluationUserCountRequest) GetFeatureVersion

func (x *GetOpsEvaluationUserCountRequest) GetFeatureVersion() int32

func (*GetOpsEvaluationUserCountRequest) GetOpsRuleId

func (x *GetOpsEvaluationUserCountRequest) GetOpsRuleId() string

func (*GetOpsEvaluationUserCountRequest) GetVariationId

func (x *GetOpsEvaluationUserCountRequest) GetVariationId() string

func (*GetOpsEvaluationUserCountRequest) ProtoMessage

func (*GetOpsEvaluationUserCountRequest) ProtoMessage()

func (*GetOpsEvaluationUserCountRequest) ProtoReflect

func (*GetOpsEvaluationUserCountRequest) Reset

func (*GetOpsEvaluationUserCountRequest) String

type GetOpsEvaluationUserCountResponse

type GetOpsEvaluationUserCountResponse struct {
	OpsRuleId string `protobuf:"bytes,1,opt,name=ops_rule_id,json=opsRuleId,proto3" json:"ops_rule_id"`
	ClauseId  string `protobuf:"bytes,2,opt,name=clause_id,json=clauseId,proto3" json:"clause_id"`
	Count     int64  `protobuf:"varint,3,opt,name=count,proto3" json:"count"`
	// contains filtered or unexported fields
}

func (*GetOpsEvaluationUserCountResponse) Descriptor deprecated

func (*GetOpsEvaluationUserCountResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOpsEvaluationUserCountResponse.ProtoReflect.Descriptor instead.

func (*GetOpsEvaluationUserCountResponse) GetClauseId

func (x *GetOpsEvaluationUserCountResponse) GetClauseId() string

func (*GetOpsEvaluationUserCountResponse) GetCount

func (*GetOpsEvaluationUserCountResponse) GetOpsRuleId

func (x *GetOpsEvaluationUserCountResponse) GetOpsRuleId() string

func (*GetOpsEvaluationUserCountResponse) ProtoMessage

func (*GetOpsEvaluationUserCountResponse) ProtoMessage()

func (*GetOpsEvaluationUserCountResponse) ProtoReflect

func (*GetOpsEvaluationUserCountResponse) Reset

func (*GetOpsEvaluationUserCountResponse) String

type GetOpsGoalUserCountRequest

type GetOpsGoalUserCountRequest struct {
	EnvironmentNamespace string `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	OpsRuleId            string `protobuf:"bytes,2,opt,name=ops_rule_id,json=opsRuleId,proto3" json:"ops_rule_id"`
	ClauseId             string `protobuf:"bytes,3,opt,name=clause_id,json=clauseId,proto3" json:"clause_id"`
	FeatureId            string `protobuf:"bytes,4,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion       int32  `protobuf:"varint,5,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	VariationId          string `protobuf:"bytes,6,opt,name=variation_id,json=variationId,proto3" json:"variation_id"`
	// contains filtered or unexported fields
}

func (*GetOpsGoalUserCountRequest) Descriptor deprecated

func (*GetOpsGoalUserCountRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetOpsGoalUserCountRequest.ProtoReflect.Descriptor instead.

func (*GetOpsGoalUserCountRequest) GetClauseId

func (x *GetOpsGoalUserCountRequest) GetClauseId() string

func (*GetOpsGoalUserCountRequest) GetEnvironmentNamespace

func (x *GetOpsGoalUserCountRequest) GetEnvironmentNamespace() string

func (*GetOpsGoalUserCountRequest) GetFeatureId

func (x *GetOpsGoalUserCountRequest) GetFeatureId() string

func (*GetOpsGoalUserCountRequest) GetFeatureVersion

func (x *GetOpsGoalUserCountRequest) GetFeatureVersion() int32

func (*GetOpsGoalUserCountRequest) GetOpsRuleId

func (x *GetOpsGoalUserCountRequest) GetOpsRuleId() string

func (*GetOpsGoalUserCountRequest) GetVariationId

func (x *GetOpsGoalUserCountRequest) GetVariationId() string

func (*GetOpsGoalUserCountRequest) ProtoMessage

func (*GetOpsGoalUserCountRequest) ProtoMessage()

func (*GetOpsGoalUserCountRequest) ProtoReflect

func (*GetOpsGoalUserCountRequest) Reset

func (x *GetOpsGoalUserCountRequest) Reset()

func (*GetOpsGoalUserCountRequest) String

func (x *GetOpsGoalUserCountRequest) String() string

type GetOpsGoalUserCountResponse

type GetOpsGoalUserCountResponse struct {
	OpsRuleId string `protobuf:"bytes,1,opt,name=ops_rule_id,json=opsRuleId,proto3" json:"ops_rule_id"`
	ClauseId  string `protobuf:"bytes,2,opt,name=clause_id,json=clauseId,proto3" json:"clause_id"`
	Count     int64  `protobuf:"varint,3,opt,name=count,proto3" json:"count"`
	// contains filtered or unexported fields
}

func (*GetOpsGoalUserCountResponse) Descriptor deprecated

func (*GetOpsGoalUserCountResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetOpsGoalUserCountResponse.ProtoReflect.Descriptor instead.

func (*GetOpsGoalUserCountResponse) GetClauseId

func (x *GetOpsGoalUserCountResponse) GetClauseId() string

func (*GetOpsGoalUserCountResponse) GetCount

func (x *GetOpsGoalUserCountResponse) GetCount() int64

func (*GetOpsGoalUserCountResponse) GetOpsRuleId

func (x *GetOpsGoalUserCountResponse) GetOpsRuleId() string

func (*GetOpsGoalUserCountResponse) ProtoMessage

func (*GetOpsGoalUserCountResponse) ProtoMessage()

func (*GetOpsGoalUserCountResponse) ProtoReflect

func (*GetOpsGoalUserCountResponse) Reset

func (x *GetOpsGoalUserCountResponse) Reset()

func (*GetOpsGoalUserCountResponse) String

func (x *GetOpsGoalUserCountResponse) String() string

type GoalCounts

type GoalCounts struct {
	GoalId         string            `protobuf:"bytes,1,opt,name=goal_id,json=goalId,proto3" json:"goal_id"`
	RealtimeCounts []*VariationCount `protobuf:"bytes,2,rep,name=realtime_counts,json=realtimeCounts,proto3" json:"realtime_counts"`
	// Deprecated: Do not use.
	BatchCounts []*VariationCount `protobuf:"bytes,3,rep,name=batch_counts,json=batchCounts,proto3" json:"batch_counts"`
	// contains filtered or unexported fields
}

func (*GoalCounts) Descriptor deprecated

func (*GoalCounts) Descriptor() ([]byte, []int)

Deprecated: Use GoalCounts.ProtoReflect.Descriptor instead.

func (*GoalCounts) GetBatchCounts deprecated

func (x *GoalCounts) GetBatchCounts() []*VariationCount

Deprecated: Do not use.

func (*GoalCounts) GetGoalId

func (x *GoalCounts) GetGoalId() string

func (*GoalCounts) GetRealtimeCounts

func (x *GoalCounts) GetRealtimeCounts() []*VariationCount

func (*GoalCounts) ProtoMessage

func (*GoalCounts) ProtoMessage()

func (*GoalCounts) ProtoReflect

func (x *GoalCounts) ProtoReflect() protoreflect.Message

func (*GoalCounts) Reset

func (x *GoalCounts) Reset()

func (*GoalCounts) String

func (x *GoalCounts) String() string

type GoalResult

type GoalResult struct {
	GoalId           string             `protobuf:"bytes,1,opt,name=goal_id,json=goalId,proto3" json:"goal_id"`
	VariationResults []*VariationResult `protobuf:"bytes,2,rep,name=variation_results,json=variationResults,proto3" json:"variation_results"`
	// contains filtered or unexported fields
}

func (*GoalResult) Descriptor deprecated

func (*GoalResult) Descriptor() ([]byte, []int)

Deprecated: Use GoalResult.ProtoReflect.Descriptor instead.

func (*GoalResult) GetGoalId

func (x *GoalResult) GetGoalId() string

func (*GoalResult) GetVariationResults

func (x *GoalResult) GetVariationResults() []*VariationResult

func (*GoalResult) ProtoMessage

func (*GoalResult) ProtoMessage()

func (*GoalResult) ProtoReflect

func (x *GoalResult) ProtoReflect() protoreflect.Message

func (*GoalResult) Reset

func (x *GoalResult) Reset()

func (*GoalResult) String

func (x *GoalResult) String() string

type Histogram

type Histogram struct {
	Hist []int64   `protobuf:"varint,1,rep,packed,name=hist,proto3" json:"hist"`
	Bins []float64 `protobuf:"fixed64,2,rep,packed,name=bins,proto3" json:"bins"`
	// contains filtered or unexported fields
}

func (*Histogram) Descriptor deprecated

func (*Histogram) Descriptor() ([]byte, []int)

Deprecated: Use Histogram.ProtoReflect.Descriptor instead.

func (*Histogram) GetBins

func (x *Histogram) GetBins() []float64

func (*Histogram) GetHist

func (x *Histogram) GetHist() []int64

func (*Histogram) ProtoMessage

func (*Histogram) ProtoMessage()

func (*Histogram) ProtoReflect

func (x *Histogram) ProtoReflect() protoreflect.Message

func (*Histogram) Reset

func (x *Histogram) Reset()

func (*Histogram) String

func (x *Histogram) String() string

type ListExperimentResultsRequest

type ListExperimentResultsRequest struct {
	FeatureId            string                 `protobuf:"bytes,1,opt,name=feature_id,json=featureId,proto3" json:"feature_id"`
	FeatureVersion       *wrapperspb.Int32Value `protobuf:"bytes,2,opt,name=feature_version,json=featureVersion,proto3" json:"feature_version"`
	EnvironmentNamespace string                 `protobuf:"bytes,3,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	// contains filtered or unexported fields
}

func (*ListExperimentResultsRequest) Descriptor deprecated

func (*ListExperimentResultsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListExperimentResultsRequest.ProtoReflect.Descriptor instead.

func (*ListExperimentResultsRequest) GetEnvironmentNamespace

func (x *ListExperimentResultsRequest) GetEnvironmentNamespace() string

func (*ListExperimentResultsRequest) GetFeatureId

func (x *ListExperimentResultsRequest) GetFeatureId() string

func (*ListExperimentResultsRequest) GetFeatureVersion

func (x *ListExperimentResultsRequest) GetFeatureVersion() *wrapperspb.Int32Value

func (*ListExperimentResultsRequest) ProtoMessage

func (*ListExperimentResultsRequest) ProtoMessage()

func (*ListExperimentResultsRequest) ProtoReflect

func (*ListExperimentResultsRequest) Reset

func (x *ListExperimentResultsRequest) Reset()

func (*ListExperimentResultsRequest) String

type ListExperimentResultsResponse

type ListExperimentResultsResponse struct {
	Results map[string]*ExperimentResult `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ListExperimentResultsResponse) Descriptor deprecated

func (*ListExperimentResultsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListExperimentResultsResponse.ProtoReflect.Descriptor instead.

func (*ListExperimentResultsResponse) GetResults

func (*ListExperimentResultsResponse) ProtoMessage

func (*ListExperimentResultsResponse) ProtoMessage()

func (*ListExperimentResultsResponse) ProtoReflect

func (*ListExperimentResultsResponse) Reset

func (x *ListExperimentResultsResponse) Reset()

func (*ListExperimentResultsResponse) String

type MAUSummary

type MAUSummary struct {
	Yearmonth       string          `protobuf:"bytes,1,opt,name=yearmonth,proto3" json:"yearmonth"`
	EnvironmentId   string          `protobuf:"bytes,2,opt,name=environment_id,json=environmentId,proto3" json:"environment_id"`
	SourceId        client.SourceId `protobuf:"varint,3,opt,name=source_id,json=sourceId,proto3,enum=bucketeer.event.client.SourceId" json:"source_id"`
	UserCount       int64           `protobuf:"varint,4,opt,name=user_count,json=userCount,proto3" json:"user_count"`
	RequestCount    int64           `protobuf:"varint,5,opt,name=request_count,json=requestCount,proto3" json:"request_count"`
	EvaluationCount int64           `protobuf:"varint,6,opt,name=evaluation_count,json=evaluationCount,proto3" json:"evaluation_count"`
	GoalCount       int64           `protobuf:"varint,7,opt,name=goal_count,json=goalCount,proto3" json:"goal_count"`
	IsAll           bool            `protobuf:"varint,8,opt,name=is_all,json=isAll,proto3" json:"is_all"`
	IsFinished      bool            `protobuf:"varint,9,opt,name=is_finished,json=isFinished,proto3" json:"is_finished"`
	CreatedAt       int64           `protobuf:"varint,10,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
	UpdatedAt       int64           `protobuf:"varint,11,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
	// contains filtered or unexported fields
}

func (*MAUSummary) Descriptor deprecated

func (*MAUSummary) Descriptor() ([]byte, []int)

Deprecated: Use MAUSummary.ProtoReflect.Descriptor instead.

func (*MAUSummary) GetCreatedAt

func (x *MAUSummary) GetCreatedAt() int64

func (*MAUSummary) GetEnvironmentId

func (x *MAUSummary) GetEnvironmentId() string

func (*MAUSummary) GetEvaluationCount

func (x *MAUSummary) GetEvaluationCount() int64

func (*MAUSummary) GetGoalCount

func (x *MAUSummary) GetGoalCount() int64

func (*MAUSummary) GetIsAll

func (x *MAUSummary) GetIsAll() bool

func (*MAUSummary) GetIsFinished

func (x *MAUSummary) GetIsFinished() bool

func (*MAUSummary) GetRequestCount

func (x *MAUSummary) GetRequestCount() int64

func (*MAUSummary) GetSourceId

func (x *MAUSummary) GetSourceId() client.SourceId

func (*MAUSummary) GetUpdatedAt

func (x *MAUSummary) GetUpdatedAt() int64

func (*MAUSummary) GetUserCount

func (x *MAUSummary) GetUserCount() int64

func (*MAUSummary) GetYearmonth

func (x *MAUSummary) GetYearmonth() string

func (*MAUSummary) ProtoMessage

func (*MAUSummary) ProtoMessage()

func (*MAUSummary) ProtoReflect

func (x *MAUSummary) ProtoReflect() protoreflect.Message

func (*MAUSummary) Reset

func (x *MAUSummary) Reset()

func (*MAUSummary) String

func (x *MAUSummary) String() string

type SummarizeMAUCountsRequest

type SummarizeMAUCountsRequest struct {
	YearMonth  string `protobuf:"bytes,1,opt,name=year_month,json=yearMonth,proto3" json:"year_month"`
	IsFinished bool   `protobuf:"varint,2,opt,name=is_finished,json=isFinished,proto3" json:"is_finished"`
	// contains filtered or unexported fields
}

func (*SummarizeMAUCountsRequest) Descriptor deprecated

func (*SummarizeMAUCountsRequest) Descriptor() ([]byte, []int)

Deprecated: Use SummarizeMAUCountsRequest.ProtoReflect.Descriptor instead.

func (*SummarizeMAUCountsRequest) GetIsFinished

func (x *SummarizeMAUCountsRequest) GetIsFinished() bool

func (*SummarizeMAUCountsRequest) GetYearMonth

func (x *SummarizeMAUCountsRequest) GetYearMonth() string

func (*SummarizeMAUCountsRequest) ProtoMessage

func (*SummarizeMAUCountsRequest) ProtoMessage()

func (*SummarizeMAUCountsRequest) ProtoReflect

func (*SummarizeMAUCountsRequest) Reset

func (x *SummarizeMAUCountsRequest) Reset()

func (*SummarizeMAUCountsRequest) String

func (x *SummarizeMAUCountsRequest) String() string

type SummarizeMAUCountsResponse

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

func (*SummarizeMAUCountsResponse) Descriptor deprecated

func (*SummarizeMAUCountsResponse) Descriptor() ([]byte, []int)

Deprecated: Use SummarizeMAUCountsResponse.ProtoReflect.Descriptor instead.

func (*SummarizeMAUCountsResponse) ProtoMessage

func (*SummarizeMAUCountsResponse) ProtoMessage()

func (*SummarizeMAUCountsResponse) ProtoReflect

func (*SummarizeMAUCountsResponse) Reset

func (x *SummarizeMAUCountsResponse) Reset()

func (*SummarizeMAUCountsResponse) String

func (x *SummarizeMAUCountsResponse) String() string

type Timeseries

type Timeseries struct {
	Timestamps  []int64         `protobuf:"varint,1,rep,packed,name=timestamps,proto3" json:"timestamps"`
	Values      []float64       `protobuf:"fixed64,2,rep,packed,name=values,proto3" json:"values"`
	Unit        Timeseries_Unit `protobuf:"varint,3,opt,name=unit,proto3,enum=bucketeer.eventcounter.Timeseries_Unit" json:"unit"`
	TotalCounts int64           `protobuf:"varint,4,opt,name=total_counts,json=totalCounts,proto3" json:"total_counts"`
	// contains filtered or unexported fields
}

func (*Timeseries) Descriptor deprecated

func (*Timeseries) Descriptor() ([]byte, []int)

Deprecated: Use Timeseries.ProtoReflect.Descriptor instead.

func (*Timeseries) GetTimestamps

func (x *Timeseries) GetTimestamps() []int64

func (*Timeseries) GetTotalCounts

func (x *Timeseries) GetTotalCounts() int64

func (*Timeseries) GetUnit

func (x *Timeseries) GetUnit() Timeseries_Unit

func (*Timeseries) GetValues

func (x *Timeseries) GetValues() []float64

func (*Timeseries) ProtoMessage

func (*Timeseries) ProtoMessage()

func (*Timeseries) ProtoReflect

func (x *Timeseries) ProtoReflect() protoreflect.Message

func (*Timeseries) Reset

func (x *Timeseries) Reset()

func (*Timeseries) String

func (x *Timeseries) String() string

type Timeseries_Unit

type Timeseries_Unit int32
const (
	Timeseries_HOUR Timeseries_Unit = 0
	Timeseries_DAY  Timeseries_Unit = 1
)

func (Timeseries_Unit) Descriptor

func (Timeseries_Unit) Enum

func (x Timeseries_Unit) Enum() *Timeseries_Unit

func (Timeseries_Unit) EnumDescriptor deprecated

func (Timeseries_Unit) EnumDescriptor() ([]byte, []int)

Deprecated: Use Timeseries_Unit.Descriptor instead.

func (Timeseries_Unit) Number

func (Timeseries_Unit) String

func (x Timeseries_Unit) String() string

func (Timeseries_Unit) Type

type UnimplementedEventCounterServiceServer

type UnimplementedEventCounterServiceServer struct {
}

UnimplementedEventCounterServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedEventCounterServiceServer) GetExperimentGoalCount

func (*UnimplementedEventCounterServiceServer) GetExperimentResult

func (*UnimplementedEventCounterServiceServer) GetMAUCount

func (*UnimplementedEventCounterServiceServer) GetOpsGoalUserCount

func (*UnimplementedEventCounterServiceServer) ListExperimentResults

func (*UnimplementedEventCounterServiceServer) SummarizeMAUCounts

type VariationCount

type VariationCount struct {
	VariationId             string  `protobuf:"bytes,1,opt,name=variation_id,json=variationId,proto3" json:"variation_id"`
	UserCount               int64   `protobuf:"varint,2,opt,name=user_count,json=userCount,proto3" json:"user_count"`
	EventCount              int64   `protobuf:"varint,3,opt,name=event_count,json=eventCount,proto3" json:"event_count"`
	ValueSum                float64 `protobuf:"fixed64,4,opt,name=value_sum,json=valueSum,proto3" json:"value_sum"`
	CreatedAt               int64   `protobuf:"varint,5,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
	VariationValue          string  `protobuf:"bytes,6,opt,name=variation_value,json=variationValue,proto3" json:"variation_value"`
	ValueSumPerUserMean     float64 `protobuf:"fixed64,7,opt,name=value_sum_per_user_mean,json=valueSumPerUserMean,proto3" json:"value_sum_per_user_mean"`
	ValueSumPerUserVariance float64 `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*VariationCount) Descriptor deprecated

func (*VariationCount) Descriptor() ([]byte, []int)

Deprecated: Use VariationCount.ProtoReflect.Descriptor instead.

func (*VariationCount) GetCreatedAt

func (x *VariationCount) GetCreatedAt() int64

func (*VariationCount) GetEventCount

func (x *VariationCount) GetEventCount() int64

func (*VariationCount) GetUserCount

func (x *VariationCount) GetUserCount() int64

func (*VariationCount) GetValueSum

func (x *VariationCount) GetValueSum() float64

func (*VariationCount) GetValueSumPerUserMean

func (x *VariationCount) GetValueSumPerUserMean() float64

func (*VariationCount) GetValueSumPerUserVariance

func (x *VariationCount) GetValueSumPerUserVariance() float64

func (*VariationCount) GetVariationId

func (x *VariationCount) GetVariationId() string

func (*VariationCount) GetVariationValue

func (x *VariationCount) GetVariationValue() string

func (*VariationCount) ProtoMessage

func (*VariationCount) ProtoMessage()

func (*VariationCount) ProtoReflect

func (x *VariationCount) ProtoReflect() protoreflect.Message

func (*VariationCount) Reset

func (x *VariationCount) Reset()

func (*VariationCount) String

func (x *VariationCount) String() string

type VariationResult

type VariationResult struct {
	VariationId                                string               `protobuf:"bytes,1,opt,name=variation_id,json=variationId,proto3" json:"variation_id"`
	ExperimentCount                            *VariationCount      `protobuf:"bytes,2,opt,name=experiment_count,json=experimentCount,proto3" json:"experiment_count"`
	EvaluationCount                            *VariationCount      `protobuf:"bytes,3,opt,name=evaluation_count,json=evaluationCount,proto3" json:"evaluation_count"`
	CvrProbBest                                *DistributionSummary `protobuf:"bytes,4,opt,name=cvr_prob_best,json=cvrProbBest,proto3" json:"cvr_prob_best"`
	CvrProbBeatBaseline                        *DistributionSummary `protobuf:"bytes,5,opt,name=cvr_prob_beat_baseline,json=cvrProbBeatBaseline,proto3" json:"cvr_prob_beat_baseline"`
	CvrProb                                    *DistributionSummary `protobuf:"bytes,6,opt,name=cvr_prob,json=cvrProb,proto3" json:"cvr_prob"`
	EvaluationUserCountTimeseries              *Timeseries          `` /* 142-byte string literal not displayed */
	EvaluationEventCountTimeseries             *Timeseries          `` /* 145-byte string literal not displayed */
	GoalUserCountTimeseries                    *Timeseries          `protobuf:"bytes,9,opt,name=goal_user_count_timeseries,json=goalUserCountTimeseries,proto3" json:"goal_user_count_timeseries"`
	GoalEventCountTimeseries                   *Timeseries          `` /* 128-byte string literal not displayed */
	GoalValueSumTimeseries                     *Timeseries          `protobuf:"bytes,11,opt,name=goal_value_sum_timeseries,json=goalValueSumTimeseries,proto3" json:"goal_value_sum_timeseries"`
	CvrMedianTimeseries                        *Timeseries          `protobuf:"bytes,12,opt,name=cvr_median_timeseries,json=cvrMedianTimeseries,proto3" json:"cvr_median_timeseries"`
	CvrPercentile025Timeseries                 *Timeseries          `` /* 132-byte string literal not displayed */
	CvrPercentile975Timeseries                 *Timeseries          `` /* 132-byte string literal not displayed */
	CvrTimeseries                              *Timeseries          `protobuf:"bytes,15,opt,name=cvr_timeseries,json=cvrTimeseries,proto3" json:"cvr_timeseries"`
	GoalValueSumPerUserTimeseries              *Timeseries          `` /* 147-byte string literal not displayed */
	GoalValueSumPerUserProb                    *DistributionSummary `` /* 129-byte string literal not displayed */
	GoalValueSumPerUserProbBest                *DistributionSummary `` /* 143-byte string literal not displayed */
	GoalValueSumPerUserProbBeatBaseline        *DistributionSummary `` /* 169-byte string literal not displayed */
	GoalValueSumPerUserMedianTimeseries        *Timeseries          `` /* 167-byte string literal not displayed */
	GoalValueSumPerUserPercentile025Timeseries *Timeseries          `` /* 188-byte string literal not displayed */
	GoalValueSumPerUserPercentile975Timeseries *Timeseries          `` /* 188-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*VariationResult) Descriptor deprecated

func (*VariationResult) Descriptor() ([]byte, []int)

Deprecated: Use VariationResult.ProtoReflect.Descriptor instead.

func (*VariationResult) GetCvrMedianTimeseries

func (x *VariationResult) GetCvrMedianTimeseries() *Timeseries

func (*VariationResult) GetCvrPercentile025Timeseries

func (x *VariationResult) GetCvrPercentile025Timeseries() *Timeseries

func (*VariationResult) GetCvrPercentile975Timeseries

func (x *VariationResult) GetCvrPercentile975Timeseries() *Timeseries

func (*VariationResult) GetCvrProb

func (x *VariationResult) GetCvrProb() *DistributionSummary

func (*VariationResult) GetCvrProbBeatBaseline

func (x *VariationResult) GetCvrProbBeatBaseline() *DistributionSummary

func (*VariationResult) GetCvrProbBest

func (x *VariationResult) GetCvrProbBest() *DistributionSummary

func (*VariationResult) GetCvrTimeseries

func (x *VariationResult) GetCvrTimeseries() *Timeseries

func (*VariationResult) GetEvaluationCount

func (x *VariationResult) GetEvaluationCount() *VariationCount

func (*VariationResult) GetEvaluationEventCountTimeseries

func (x *VariationResult) GetEvaluationEventCountTimeseries() *Timeseries

func (*VariationResult) GetEvaluationUserCountTimeseries

func (x *VariationResult) GetEvaluationUserCountTimeseries() *Timeseries

func (*VariationResult) GetExperimentCount

func (x *VariationResult) GetExperimentCount() *VariationCount

func (*VariationResult) GetGoalEventCountTimeseries

func (x *VariationResult) GetGoalEventCountTimeseries() *Timeseries

func (*VariationResult) GetGoalUserCountTimeseries

func (x *VariationResult) GetGoalUserCountTimeseries() *Timeseries

func (*VariationResult) GetGoalValueSumPerUserMedianTimeseries

func (x *VariationResult) GetGoalValueSumPerUserMedianTimeseries() *Timeseries

func (*VariationResult) GetGoalValueSumPerUserPercentile025Timeseries

func (x *VariationResult) GetGoalValueSumPerUserPercentile025Timeseries() *Timeseries

func (*VariationResult) GetGoalValueSumPerUserPercentile975Timeseries

func (x *VariationResult) GetGoalValueSumPerUserPercentile975Timeseries() *Timeseries

func (*VariationResult) GetGoalValueSumPerUserProb

func (x *VariationResult) GetGoalValueSumPerUserProb() *DistributionSummary

func (*VariationResult) GetGoalValueSumPerUserProbBeatBaseline

func (x *VariationResult) GetGoalValueSumPerUserProbBeatBaseline() *DistributionSummary

func (*VariationResult) GetGoalValueSumPerUserProbBest

func (x *VariationResult) GetGoalValueSumPerUserProbBest() *DistributionSummary

func (*VariationResult) GetGoalValueSumPerUserTimeseries

func (x *VariationResult) GetGoalValueSumPerUserTimeseries() *Timeseries

func (*VariationResult) GetGoalValueSumTimeseries

func (x *VariationResult) GetGoalValueSumTimeseries() *Timeseries

func (*VariationResult) GetVariationId

func (x *VariationResult) GetVariationId() string

func (*VariationResult) ProtoMessage

func (*VariationResult) ProtoMessage()

func (*VariationResult) ProtoReflect

func (x *VariationResult) ProtoReflect() protoreflect.Message

func (*VariationResult) Reset

func (x *VariationResult) Reset()

func (*VariationResult) String

func (x *VariationResult) String() string

type VariationTimeseries

type VariationTimeseries struct {
	VariationId string      `protobuf:"bytes,1,opt,name=variation_id,json=variationId,proto3" json:"variation_id"`
	Timeseries  *Timeseries `protobuf:"bytes,2,opt,name=timeseries,proto3" json:"timeseries"`
	// contains filtered or unexported fields
}

func (*VariationTimeseries) Descriptor deprecated

func (*VariationTimeseries) Descriptor() ([]byte, []int)

Deprecated: Use VariationTimeseries.ProtoReflect.Descriptor instead.

func (*VariationTimeseries) GetTimeseries

func (x *VariationTimeseries) GetTimeseries() *Timeseries

func (*VariationTimeseries) GetVariationId

func (x *VariationTimeseries) GetVariationId() string

func (*VariationTimeseries) ProtoMessage

func (*VariationTimeseries) ProtoMessage()

func (*VariationTimeseries) ProtoReflect

func (x *VariationTimeseries) ProtoReflect() protoreflect.Message

func (*VariationTimeseries) Reset

func (x *VariationTimeseries) Reset()

func (*VariationTimeseries) String

func (x *VariationTimeseries) String() string

Jump to

Keyboard shortcuts

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