harbor/src/pkg/jobmonitor/worker.go
stonezdj(Daojun Zhang) 39ca918ffe
Add jobservice monitoring api list pool, worker and stop running task (#17658)
Add REST API to list job pool, worker, stop running task

  Add jobservice handler to retrieve configuration
  Add RBAC for jobservice monitoring dashboard
  Add REST API to list pool, worker and stop running task

Signed-off-by: stonezdj <stonezdj@gmail.com>

Signed-off-by: stonezdj <stonezdj@gmail.com>
2022-11-03 10:47:40 +08:00

88 lines
2.3 KiB
Go

// Copyright Project Harbor Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package jobmonitor
import (
"context"
"strings"
"github.com/gocraft/work"
"github.com/goharbor/harbor/src/pkg/task"
)
const all = "all"
// WorkerManager ...
type WorkerManager interface {
// List lists all workers in the specified pool
List(ctx context.Context, monitClient JobServiceMonitorClient, poolID string) ([]*Worker, error)
}
type workerManagerImpl struct {
taskMgr task.Manager
}
// NewWorkerManager ...
func NewWorkerManager() WorkerManager {
return &workerManagerImpl{taskMgr: task.NewManager()}
}
func (w *workerManagerImpl) List(ctx context.Context, monitClient JobServiceMonitorClient, poolID string) ([]*Worker, error) {
wphs, err := monitClient.WorkerPoolHeartbeats()
if err != nil {
return nil, err
}
workerPoolMap := make(map[string]string)
for _, wph := range wphs {
for _, id := range wph.WorkerIDs {
workerPoolMap[id] = wph.WorkerPoolID
}
}
workers, err := monitClient.WorkerObservations()
if err != nil {
return nil, err
}
if strings.EqualFold(poolID, all) {
return convertToWorker(workers, workerPoolMap), nil
}
// filter workers by pool id
filteredWorkers := make([]*work.WorkerObservation, 0)
for _, w := range workers {
if workerPoolMap[w.WorkerID] == poolID {
filteredWorkers = append(filteredWorkers, w)
}
}
return convertToWorker(filteredWorkers, workerPoolMap), nil
}
func convertToWorker(workers []*work.WorkerObservation, workerPoolMap map[string]string) []*Worker {
wks := make([]*Worker, 0)
for _, w := range workers {
wks = append(wks, &Worker{
ID: w.WorkerID,
PoolID: workerPoolMap[w.WorkerID],
IsBusy: w.IsBusy,
JobName: w.JobName,
JobID: w.JobID,
StartedAt: w.StartedAt,
CheckIn: w.Checkin,
CheckInAt: w.CheckinAt,
})
}
return wks
}