Documentation ¶
Index ¶
- type TrackingService
- func (ts TrackingService) CreateExperiment(ctx context.Context, input *protos.CreateExperiment) (*protos.CreateExperiment_Response, *contract.Error)
- func (ts TrackingService) CreateRun(ctx context.Context, input *protos.CreateRun) (*protos.CreateRun_Response, *contract.Error)
- func (ts TrackingService) DeleteExperiment(ctx context.Context, input *protos.DeleteExperiment) (*protos.DeleteExperiment_Response, *contract.Error)
- func (ts TrackingService) DeleteRun(ctx context.Context, input *protos.DeleteRun) (*protos.DeleteRun_Response, *contract.Error)
- func (ts TrackingService) DeleteTag(ctx context.Context, input *protos.DeleteTag) (*protos.DeleteTag_Response, *contract.Error)
- func (ts TrackingService) DeleteTraceTag(ctx context.Context, input *protos.DeleteTraceTag) (*protos.DeleteTraceTag_Response, *contract.Error)
- func (ts TrackingService) DeleteTraces(ctx context.Context, input *protos.DeleteTraces) (*protos.DeleteTraces_Response, *contract.Error)
- func (ts TrackingService) Destroy() error
- func (ts TrackingService) EndTrace(ctx context.Context, input *protos.EndTrace) (*protos.EndTrace_Response, *contract.Error)
- func (ts TrackingService) GetExperiment(ctx context.Context, input *protos.GetExperiment) (*protos.GetExperiment_Response, *contract.Error)
- func (ts TrackingService) GetExperimentByName(ctx context.Context, input *protos.GetExperimentByName) (*protos.GetExperimentByName_Response, *contract.Error)
- func (ts TrackingService) GetMetricHistory(ctx context.Context, input *protos.GetMetricHistory) (*protos.GetMetricHistory_Response, *contract.Error)
- func (ts TrackingService) GetRun(ctx context.Context, input *protos.GetRun) (*protos.GetRun_Response, *contract.Error)
- func (ts TrackingService) GetTraceInfo(ctx context.Context, input *protos.GetTraceInfo) (*protos.GetTraceInfo_Response, *contract.Error)
- func (ts TrackingService) LogBatch(ctx context.Context, input *protos.LogBatch) (*protos.LogBatch_Response, *contract.Error)
- func (ts TrackingService) LogInputs(ctx context.Context, input *protos.LogInputs) (*protos.LogInputs_Response, *contract.Error)
- func (ts TrackingService) LogMetric(ctx context.Context, input *protos.LogMetric) (*protos.LogMetric_Response, *contract.Error)
- func (ts TrackingService) LogParam(ctx context.Context, input *protos.LogParam) (*protos.LogParam_Response, *contract.Error)
- func (ts TrackingService) RestoreExperiment(ctx context.Context, input *protos.RestoreExperiment) (*protos.RestoreExperiment_Response, *contract.Error)
- func (ts TrackingService) RestoreRun(ctx context.Context, input *protos.RestoreRun) (*protos.RestoreRun_Response, *contract.Error)
- func (ts TrackingService) SearchExperiments(ctx context.Context, input *protos.SearchExperiments) (*protos.SearchExperiments_Response, *contract.Error)
- func (ts TrackingService) SearchRuns(ctx context.Context, input *protos.SearchRuns) (*protos.SearchRuns_Response, *contract.Error)
- func (ts TrackingService) SetExperimentTag(ctx context.Context, input *protos.SetExperimentTag) (*protos.SetExperimentTag_Response, *contract.Error)
- func (ts TrackingService) SetTag(ctx context.Context, input *protos.SetTag) (*protos.SetTag_Response, *contract.Error)
- func (ts TrackingService) SetTraceTag(ctx context.Context, input *protos.SetTraceTag) (*protos.SetTraceTag_Response, *contract.Error)
- func (ts TrackingService) StartTrace(ctx context.Context, input *protos.StartTrace) (*protos.StartTrace_Response, *contract.Error)
- func (ts TrackingService) UpdateExperiment(ctx context.Context, input *protos.UpdateExperiment) (*protos.UpdateExperiment_Response, *contract.Error)
- func (ts TrackingService) UpdateRun(ctx context.Context, input *protos.UpdateRun) (*protos.UpdateRun_Response, *contract.Error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TrackingService ¶
type TrackingService struct { Store store.TrackingStore // contains filtered or unexported fields }
func NewTrackingService ¶
func (TrackingService) CreateExperiment ¶
func (ts TrackingService) CreateExperiment(ctx context.Context, input *protos.CreateExperiment) ( *protos.CreateExperiment_Response, *contract.Error, )
CreateExperiment implements TrackingService.
func (TrackingService) CreateRun ¶
func (ts TrackingService) CreateRun( ctx context.Context, input *protos.CreateRun, ) (*protos.CreateRun_Response, *contract.Error)
func (TrackingService) DeleteExperiment ¶
func (ts TrackingService) DeleteExperiment( ctx context.Context, input *protos.DeleteExperiment, ) (*protos.DeleteExperiment_Response, *contract.Error)
func (TrackingService) DeleteRun ¶
func (ts TrackingService) DeleteRun( ctx context.Context, input *protos.DeleteRun, ) (*protos.DeleteRun_Response, *contract.Error)
func (TrackingService) DeleteTag ¶
func (ts TrackingService) DeleteTag( ctx context.Context, input *protos.DeleteTag, ) (*protos.DeleteTag_Response, *contract.Error)
func (TrackingService) DeleteTraceTag ¶
func (ts TrackingService) DeleteTraceTag( ctx context.Context, input *protos.DeleteTraceTag, ) (*protos.DeleteTraceTag_Response, *contract.Error)
func (TrackingService) DeleteTraces ¶
func (ts TrackingService) DeleteTraces( ctx context.Context, input *protos.DeleteTraces, ) (*protos.DeleteTraces_Response, *contract.Error)
func (TrackingService) Destroy ¶
func (ts TrackingService) Destroy() error
func (TrackingService) EndTrace ¶
func (ts TrackingService) EndTrace( ctx context.Context, input *protos.EndTrace, ) (*protos.EndTrace_Response, *contract.Error)
func (TrackingService) GetExperiment ¶
func (ts TrackingService) GetExperiment( ctx context.Context, input *protos.GetExperiment, ) (*protos.GetExperiment_Response, *contract.Error)
GetExperiment implements TrackingService.
func (TrackingService) GetExperimentByName ¶
func (ts TrackingService) GetExperimentByName( ctx context.Context, input *protos.GetExperimentByName, ) (*protos.GetExperimentByName_Response, *contract.Error)
func (TrackingService) GetMetricHistory ¶
func (ts TrackingService) GetMetricHistory( ctx context.Context, input *protos.GetMetricHistory, ) (*protos.GetMetricHistory_Response, *contract.Error)
func (TrackingService) GetRun ¶
func (ts TrackingService) GetRun( ctx context.Context, input *protos.GetRun, ) (*protos.GetRun_Response, *contract.Error)
func (TrackingService) GetTraceInfo ¶
func (ts TrackingService) GetTraceInfo( ctx context.Context, input *protos.GetTraceInfo, ) (*protos.GetTraceInfo_Response, *contract.Error)
func (TrackingService) LogBatch ¶
func (ts TrackingService) LogBatch( ctx context.Context, input *protos.LogBatch, ) (*protos.LogBatch_Response, *contract.Error)
func (TrackingService) LogInputs ¶
func (ts TrackingService) LogInputs( ctx context.Context, input *protos.LogInputs, ) (*protos.LogInputs_Response, *contract.Error)
func (TrackingService) LogMetric ¶
func (ts TrackingService) LogMetric( ctx context.Context, input *protos.LogMetric, ) (*protos.LogMetric_Response, *contract.Error)
func (TrackingService) LogParam ¶
func (ts TrackingService) LogParam( ctx context.Context, input *protos.LogParam, ) (*protos.LogParam_Response, *contract.Error)
func (TrackingService) RestoreExperiment ¶
func (ts TrackingService) RestoreExperiment( ctx context.Context, input *protos.RestoreExperiment, ) (*protos.RestoreExperiment_Response, *contract.Error)
func (TrackingService) RestoreRun ¶
func (ts TrackingService) RestoreRun( ctx context.Context, input *protos.RestoreRun, ) (*protos.RestoreRun_Response, *contract.Error)
func (TrackingService) SearchExperiments ¶
func (ts TrackingService) SearchExperiments( ctx context.Context, input *protos.SearchExperiments, ) (*protos.SearchExperiments_Response, *contract.Error)
func (TrackingService) SearchRuns ¶
func (ts TrackingService) SearchRuns( ctx context.Context, input *protos.SearchRuns, ) (*protos.SearchRuns_Response, *contract.Error)
func (TrackingService) SetExperimentTag ¶
func (ts TrackingService) SetExperimentTag( ctx context.Context, input *protos.SetExperimentTag, ) (*protos.SetExperimentTag_Response, *contract.Error)
func (TrackingService) SetTag ¶
func (ts TrackingService) SetTag(ctx context.Context, input *protos.SetTag) (*protos.SetTag_Response, *contract.Error)
func (TrackingService) SetTraceTag ¶
func (ts TrackingService) SetTraceTag( ctx context.Context, input *protos.SetTraceTag, ) (*protos.SetTraceTag_Response, *contract.Error)
func (TrackingService) StartTrace ¶
func (ts TrackingService) StartTrace( ctx context.Context, input *protos.StartTrace, ) (*protos.StartTrace_Response, *contract.Error)
func (TrackingService) UpdateExperiment ¶
func (ts TrackingService) UpdateExperiment( ctx context.Context, input *protos.UpdateExperiment, ) (*protos.UpdateExperiment_Response, *contract.Error)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.