Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GroupDetailResponse ¶
type GroupDetailResponse struct { ServerTime int64 `json:"server_time"` TaskGroup TaskGroupModel `json:"task_group_status"` Tasks []TaskModel `json:"tasks_status"` }
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service is used to provide a kind of feature.
func NewService ¶
NewService creates a new service.
func (*Service) Register ¶
func (s *Service) Register(r *gin.RouterGroup, auth *user.AuthService)
Register register the handlers to the service.
type StartRequest ¶
type StartRequest struct { Targets []utils.RequestTargetNode `json:"targets"` DurationSecs uint `json:"duration_secs"` }
type Task ¶
type Task struct { *TaskModel // contains filtered or unexported fields }
Task is the unit to fetch profiling information.
type TaskGroup ¶
type TaskGroup struct { *TaskGroupModel // contains filtered or unexported fields }
TaskGroup is the collection of tasks.
func NewTaskGroup ¶
func NewTaskGroup(db *dbstore.DB, profileDurationSecs uint, stats utils.RequestTargetStatistics) *TaskGroup
NewTaskGroup create a new profiling task group.
type TaskGroupModel ¶
type TaskGroupModel struct { ID uint `json:"id" gorm:"primary_key"` State TaskState `json:"state" gorm:"index"` ProfileDurationSecs uint `json:"profile_duration_secs"` TargetStats utils.RequestTargetStatistics `json:"target_stats" gorm:"embedded;embedded_prefix:target_stats_"` StartedAt int64 `json:"started_at"` }
func (TaskGroupModel) TableName ¶
func (TaskGroupModel) TableName() string
type TaskModel ¶
type TaskModel struct { ID uint `json:"id" gorm:"primary_key"` TaskGroupID uint `json:"task_group_id" gorm:"index"` State TaskState `json:"state" gorm:"index"` Target utils.RequestTargetNode `json:"target" gorm:"embedded;embedded_prefix:target_"` FilePath string `json:"file_path" gorm:"type:text"` Error string `json:"error" gorm:"type:text"` StartedAt int64 `json:"started_at"` // The start running time, reset when retry. Used to estimate approximate profiling progress. }
Click to show internal directories.
Click to hide internal directories.