-
Notifications
You must be signed in to change notification settings - Fork 104
/
cluster_diag.go
95 lines (81 loc) · 2.78 KB
/
cluster_diag.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
package gocb
import (
"encoding/json"
"time"
"github.com/google/uuid"
)
// EndPointDiagnostics represents a single entry in a diagnostics report.
type EndPointDiagnostics struct {
Type ServiceType
ID string
Local string
Remote string
LastActivity time.Time
State EndpointState
Namespace string
}
// DiagnosticsResult encapsulates the results of a Diagnostics operation.
type DiagnosticsResult struct {
ID string
Services map[string][]EndPointDiagnostics
sdk string
State ClusterState
}
type jsonDiagnosticEntry struct {
ID string `json:"id,omitempty"`
LastActivityUs uint64 `json:"last_activity_us,omitempty"`
Remote string `json:"remote,omitempty"`
Local string `json:"local,omitempty"`
State string `json:"state,omitempty"`
Details string `json:"details,omitempty"`
Namespace string `json:"namespace,omitempty"`
}
type jsonDiagnosticReport struct {
Version int16 `json:"version"`
SDK string `json:"sdk,omitempty"`
ID string `json:"id,omitempty"`
Services map[string][]jsonDiagnosticEntry `json:"services"`
State string `json:"state"`
}
// MarshalJSON generates a JSON representation of this diagnostics report.
func (report *DiagnosticsResult) MarshalJSON() ([]byte, error) {
jsonReport := jsonDiagnosticReport{
Version: 2,
SDK: report.sdk,
ID: report.ID,
Services: make(map[string][]jsonDiagnosticEntry),
State: clusterStateToString(report.State),
}
for _, serviceType := range report.Services {
for _, service := range serviceType {
serviceStr := serviceTypeToString(service.Type)
stateStr := endpointStateToString(service.State)
jsonReport.Services[serviceStr] = append(jsonReport.Services[serviceStr], jsonDiagnosticEntry{
ID: service.ID,
LastActivityUs: uint64(time.Since(service.LastActivity).Nanoseconds()),
Remote: service.Remote,
Local: service.Local,
State: stateStr,
Details: "",
Namespace: service.Namespace,
})
}
}
return json.Marshal(&jsonReport)
}
// DiagnosticsOptions are the options that are available for use with the Diagnostics operation.
type DiagnosticsOptions struct {
ReportID string
}
// Diagnostics returns information about the internal state of the SDK.
func (c *Cluster) Diagnostics(opts *DiagnosticsOptions) (*DiagnosticsResult, error) {
return autoOpControl(c.diagnosticsController(), "", func(provider diagnosticsProvider) (*DiagnosticsResult, error) {
if opts == nil {
opts = &DiagnosticsOptions{}
}
if opts.ReportID == "" {
opts.ReportID = uuid.New().String()
}
return provider.Diagnostics(opts)
})
}