mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
704ddd424b
* Initial scaffolding of the host summary endpoint * inmem datastore implementation of GenerateHostStatusStatistics * HostSummary docstring * changing the url of the host summary endpoint * datastore tests for GenerateHostStatusStatistics * MySQL datastore implementation of GenerateHostStatusStatistics * <= and >= to catch exact time edge case * removing clock interface method * lowercase error wraps * removin superfluous whitespace * use updated_at * adding a seen_at column to the hosts table * moving the update of seen_time to the caller * using db.Get instead of db.Select
31 lines
761 B
Go
31 lines
761 B
Go
package service
|
|
|
|
import (
|
|
"github.com/kolide/kolide-ose/server/kolide"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
func (svc service) ListHosts(ctx context.Context, opt kolide.ListOptions) ([]*kolide.Host, error) {
|
|
return svc.ds.ListHosts(opt)
|
|
}
|
|
|
|
func (svc service) GetHost(ctx context.Context, id uint) (*kolide.Host, error) {
|
|
return svc.ds.Host(id)
|
|
}
|
|
|
|
func (svc service) GetHostSummary(ctx context.Context) (*kolide.HostSummary, error) {
|
|
online, offline, mia, err := svc.ds.GenerateHostStatusStatistics(svc.clock.Now())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &kolide.HostSummary{
|
|
OnlineCount: online,
|
|
OfflineCount: offline,
|
|
MIACount: mia,
|
|
}, nil
|
|
}
|
|
|
|
func (svc service) DeleteHost(ctx context.Context, id uint) error {
|
|
return svc.ds.DeleteHost(id)
|
|
}
|