mirror of https://github.com/statping/statping
113 lines
3.7 KiB
Go
113 lines
3.7 KiB
Go
// Statup
|
|
// Copyright (C) 2018. Hunter Long and the project contributors
|
|
// Written by Hunter Long <info@socialeck.com> and the project contributors
|
|
//
|
|
// https://github.com/hunterlong/statup
|
|
//
|
|
// The licenses for most software and other practical works are designed
|
|
// to take away your freedom to share and change the works. By contrast,
|
|
// the GNU General Public License is intended to guarantee your freedom to
|
|
// share and change all versions of a program--to make sure it remains free
|
|
// software for all its users.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package types
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Service struct {
|
|
Id int64 `gorm:"primary_key;column:id" json:"id"`
|
|
Name string `gorm:"column:name" json:"name"`
|
|
Domain string `gorm:"column:domain" json:"domain"`
|
|
Expected string `gorm:"not null;column:expected" json:"expected"`
|
|
ExpectedStatus int `gorm:"default:200;column:expected_status" json:"expected_status"`
|
|
Interval int `gorm:"default:30;column:check_interval" json:"check_interval"`
|
|
Type string `gorm:"column:check_type" json:"type"`
|
|
Method string `gorm:"column:method" json:"method"`
|
|
PostData string `gorm:"not null;column:post_data" json:"post_data"`
|
|
Port int `gorm:"not null;column:port" json:"port"`
|
|
Timeout int `gorm:"default:30;column:timeout" json:"timeout"`
|
|
Order int `gorm:"default:0;column:order_id" json:"order_id"`
|
|
CreatedAt time.Time `gorm:"column:created_at" json:"created_at"`
|
|
UpdatedAt time.Time `gorm:"column:updated_at" json:"updated_at"`
|
|
Online bool `gorm:"-" json:"online"`
|
|
Latency float64 `gorm:"-" json:"latency"`
|
|
Online24Hours float32 `gorm:"-" json:"24_hours_online"`
|
|
AvgResponse string `gorm:"-" json:"avg_response"`
|
|
Failures []*Failure `gorm:"-" json:"failures"`
|
|
Checkins []*Checkin `gorm:"-" json:"checkins"`
|
|
Running chan bool `gorm:"-" json:"-"`
|
|
Checkpoint time.Time `gorm:"-" json:"-"`
|
|
LastResponse string `gorm:"-" json:"-"`
|
|
LastStatusCode int `gorm:"-" json:"status_code"`
|
|
LastOnline time.Time `gorm:"-" json:"last_online"`
|
|
DnsLookup float64 `gorm:"-" json:"dns_lookup_time"`
|
|
ServiceInterface `gorm:"-" json:"-"`
|
|
}
|
|
|
|
type ServiceInterface interface {
|
|
// Database functions
|
|
Create() (int64, error)
|
|
Update() error
|
|
Delete() error
|
|
// Basic Method functions
|
|
AvgTime() float64
|
|
OnlineSince(time.Time) float32
|
|
Online24() float32
|
|
SmallText() string
|
|
GraphData() string
|
|
AvgUptime() string
|
|
ToJSON() string
|
|
// Failure functions
|
|
CreateFailure(*Failure) (int64, error)
|
|
LimitedFailures() []*Failure
|
|
AllFailures() []*Failure
|
|
TotalFailuresSince(time.Time) (uint64, error)
|
|
TotalFailures24() (uint64, error)
|
|
TotalFailures() (uint64, error)
|
|
DeleteFailures()
|
|
// Hits functions (successful responses)
|
|
CreateHit(*Hit) (int64, error)
|
|
Hits() ([]*Hit, error)
|
|
TotalHits() (uint64, error)
|
|
TotalHitsSince(time.Time) (uint64, error)
|
|
Sum() (float64, error)
|
|
LimitedHits() ([]*Hit, error)
|
|
SelectHitsGroupBy(string) ([]*Hit, error)
|
|
// Go Routines
|
|
CheckQueue(bool)
|
|
Check(bool) *Service
|
|
checkHttp(bool) *Service
|
|
checkTcp(bool) *Service
|
|
// Checkin functions
|
|
AllCheckins() []*Checkin
|
|
}
|
|
|
|
func (s *Service) Start() {
|
|
if s.Running == nil {
|
|
s.Running = make(chan bool)
|
|
}
|
|
}
|
|
|
|
func (s *Service) Close() {
|
|
if s.IsRunning() {
|
|
close(s.Running)
|
|
}
|
|
}
|
|
|
|
func (s *Service) IsRunning() bool {
|
|
if s.Running == nil {
|
|
return false
|
|
}
|
|
select {
|
|
case <-s.Running:
|
|
return false
|
|
default:
|
|
return true
|
|
}
|
|
}
|