Versions in this module Expand all Collapse all v0 v0.1.0 Nov 14, 2024 Changes in this version + const DestinationTypeRun + const SourceTypeDataset + const TableNameExperimentTag + const TraceInfoStatusError + const TraceInfoStatusInProgress + const TraceInfoStatusOk + const TraceInfoStatusUnspecified + type AlembicVersion struct + VersionNum *string + func (*AlembicVersion) TableName() string + type Dataset struct + Digest string + ExperimentID int32 + ID string + Name string + Profile string + Schema string + Source string + SourceType string + func (d *Dataset) ToEntity() *entities.Dataset + type Experiment struct + ArtifactLocation string + CreationTime int64 + ID int32 + LastUpdateTime int64 + LifecycleStage LifecycleStage + Name string + Runs []Run + Tags []ExperimentTag + func (e Experiment) ToEntity() *entities.Experiment + type ExperimentTag struct + ExperimentID int32 + Key string + Value string + type Input struct + Dataset Dataset + DestinationID string + DestinationType string + ID string + SourceID string + SourceType string + Tags []InputTag + func NewInputFromEntity(id, sourceID, destinationID string) *Input + func (i *Input) ToEntity() *entities.DatasetInput + type InputTag struct + InputID string + Key string + Value string + func NewInputTagFromEntity(inputID string, tag *entities.InputTag) *InputTag + func (i *InputTag) ToEntity() *entities.InputTag + type LatestMetric struct + IsNaN bool + Key string + RunID string + Step int64 + Timestamp int64 + Value float64 + func (lm LatestMetric) ToEntity() *entities.Metric + type LifecycleStage string + const LifecycleStageActive + const LifecycleStageDeleted + func (s LifecycleStage) String() string + type Metric struct + IsNaN bool + Key string + RunID string + Step int64 + Timestamp int64 + Value float64 + func NewMetricFromEntity(runID string, metric *entities.Metric) *Metric + func (m Metric) NewLatestMetricFromProto() LatestMetric + func (m Metric) ToEntity() *entities.Metric + type Param struct + Key string + RunID string + Value sql.NullString + func NewParamFromEntity(runID string, entity *entities.Param) Param + func (p Param) ToEntity() *entities.Param + type Run struct + ArtifactURI string + DeletedTime sql.NullInt64 + EndTime sql.NullInt64 + EntryPointName string + ExperimentID int32 + ID string + Inputs []Input + LatestMetrics []LatestMetric + LifecycleStage LifecycleStage + Metrics []Metric + Name string + Params []Param + SourceName string + SourceType SourceType + SourceVersion string + StartTime int64 + Status RunStatus + Tags []Tag + UserID string + func (r Run) ToEntity() *entities.Run + type RunStatus string + const RunStatusFailed + const RunStatusFinished + const RunStatusKilled + const RunStatusRunning + const RunStatusScheduled + func (s RunStatus) String() string + type SourceType string + const SourceTypeJob + const SourceTypeLocal + const SourceTypeNotebook + const SourceTypeProject + const SourceTypeRecipe + const SourceTypeUnknown + type Tag struct + Key string + RunID string + Value string + func NewTagFromEntity(runID string, entity *entities.RunTag) Tag + func (t Tag) ToEntity() *entities.RunTag + type TraceInfo struct + ExecutionTimeMS sql.NullInt64 + ExperimentID string + RequestID string + Status string + Tags []TraceTag + TimestampMS int64 + TraceRequestMetadata []TraceRequestMetadata + func (ti TraceInfo) TableName() string + func (ti TraceInfo) ToEntity() *entities.TraceInfo + type TraceRequestMetadata struct + Key string + RequestID string + Value string + func NewTraceRequestMetadataFromEntity(requestID string, metadata *entities.TraceRequestMetadata) TraceRequestMetadata + func (trm TraceRequestMetadata) TableName() string + func (trm TraceRequestMetadata) ToEntity() *entities.TraceRequestMetadata + type TraceTag struct + Key string + RequestID string + Value string + func NewTraceTagFromEntity(requestID string, entity *entities.TraceTag) TraceTag + func (t TraceTag) ToEntity() *entities.TraceTag