-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice.go
110 lines (75 loc) · 2.27 KB
/
service.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package tob
import (
"github.com/telkomdev/tob/config"
)
// ServiceKind represent a type/kind of service
type ServiceKind string
var (
// Postgresql service kind
Postgresql ServiceKind = "postgresql"
// MySQL service kind
MySQL ServiceKind = "mysql"
// Web service kind
Web ServiceKind = "web"
// MongoDB service kind
MongoDB ServiceKind = "mongodb"
// Oracle service kind
Oracle ServiceKind = "oracle"
// Redis service kind
Redis ServiceKind = "redis"
// Elasticsearch service kind
Elasticsearch ServiceKind = "elasticsearch"
// Airflow service kind
Airflow ServiceKind = "airflow"
// AirflowFlower service kind
AirflowFlower ServiceKind = "airflowflower"
// DiskStatus service kind
DiskStatus ServiceKind = "diskstatus"
// Kafka servie kind
Kafka ServiceKind = "kafka"
// Plugin service kind
Plugin ServiceKind = "plugin"
// Dummy service kind
Dummy ServiceKind = "dummy"
)
// Service represent base of all available services
type Service interface {
// Name the name of the service
Name() string
// Ping will try to ping the service
Ping() []byte
// SetURL will set the service URL
SetURL(url string)
// Connect to service if needed
Connect() error
// Close will close the service resources if needed
Close() error
// SetRecover will set recovered status
SetRecover(recovered bool)
// IsRecover will return recovered status
IsRecover() bool
// LastDownTime will set last down time of service to current time
SetLastDownTimeNow()
// GetDownTimeDiff will return down time service difference in minutes
GetDownTimeDiff() string
// SetCheckInterval will set check interval to service
SetCheckInterval(interval int)
// GetCheckInterval will return check interval to service
GetCheckInterval() int
// Enable will set enabled status to service
Enable(enabled bool)
// IsEnabled will return enable status
IsEnabled() bool
// SetMessage will set additional message
SetMessage(message string)
// GetMessage will return additional message
GetMessage() string
// SetConfig will set config
SetConfig(configs config.Config)
// SetNotificatorConfig will set config
SetNotificatorConfig(configs config.Config)
// GetNotificators will return notificators
GetNotificators() []Notificator
// Stop will receive stop channel
Stop() chan bool
}