generated from steadybit/extension-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
63 lines (54 loc) · 2.13 KB
/
main.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
/*
* Copyright 2023 steadybit GmbH. All rights reserved.
*/
package main
import (
"github.com/rs/zerolog"
"github.com/steadybit/action-kit/go/action_kit_api/v2"
"github.com/steadybit/action-kit/go/action_kit_sdk"
"github.com/steadybit/discovery-kit/go/discovery_kit_api"
"github.com/steadybit/discovery-kit/go/discovery_kit_sdk"
"github.com/steadybit/extension-instana/config"
"github.com/steadybit/extension-instana/extapplications"
"github.com/steadybit/extension-instana/extevents"
"github.com/steadybit/extension-instana/extmaintenance"
"github.com/steadybit/extension-kit/extbuild"
"github.com/steadybit/extension-kit/exthealth"
"github.com/steadybit/extension-kit/exthttp"
"github.com/steadybit/extension-kit/extlogging"
"github.com/steadybit/extension-kit/extruntime"
"github.com/steadybit/extension-kit/extsignals"
_ "net/http/pprof" //allow pprof
)
func main() {
extlogging.InitZeroLog()
extbuild.PrintBuildInformation()
extruntime.LogRuntimeInformation(zerolog.DebugLevel)
config.ParseConfiguration()
exthealth.SetReady(false)
exthealth.StartProbes(8091)
exthttp.RegisterHttpHandler("/", exthttp.GetterAsHandler(getExtensionList))
discovery_kit_sdk.Register(extapplications.NewApplicationPerspectiveDiscovery())
action_kit_sdk.RegisterAction(extevents.NewEventCheckAction())
action_kit_sdk.RegisterAction(extmaintenance.NewCreateMaintenanceWindowAction())
//extevents.RegisterEventListenerHandlers()
extsignals.ActivateSignalHandlers()
action_kit_sdk.RegisterCoverageEndpoints()
exthealth.SetReady(true)
exthttp.Listen(exthttp.ListenOpts{
Port: 8090,
})
}
// ExtensionListResponse exists to merge the possible root path responses supported by the
// various extension kits. In this case, the response for ActionKit, DiscoveryKit and EventKit.
type ExtensionListResponse struct {
action_kit_api.ActionList `json:",inline"`
discovery_kit_api.DiscoveryList `json:",inline"`
}
func getExtensionList() ExtensionListResponse {
return ExtensionListResponse{
ActionList: action_kit_sdk.GetActionList(),
DiscoveryList: discovery_kit_sdk.GetDiscoveryList(),
//EventListenerList: extevents.GetEventListenerList(),
}
}