-
Notifications
You must be signed in to change notification settings - Fork 12
/
hosted_collector.go
188 lines (156 loc) · 5.57 KB
/
hosted_collector.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package sumologic
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
// CollectorRequest is a necessary wrapper for collector API calls.
type CollectorRequest struct {
Collector Collector `json:"collector"`
}
// Collector can either be an installed or hosted collector.
// Installed collectors are installed as agents on servers.
// Hosted collectors receive data via HTTP or more specicialized (e.g. reading from AWS S3).
type Collector struct {
ID int `json:"id,omitempty"`
Name string `json:"name"`
Description string `json:"description,omitempty"`
Category string `json:"category,omitempty"`
TimeZone string `json:"timezone,omitempty"`
Links []CollectorLinks `json:"links,omitempty"`
CollectorType string `json:"collectorType,omitempty"`
CollectorVersion string `json:"collectorVersion,omitempty"`
LastSeenAlive int64 `json:"lastSeenAlive,omitempty"`
Alive bool `json:"alive,omitempty"`
}
// CollectorLinks contains references to related resources such as sources.
type CollectorLinks struct {
Rel string `json:"rel"`
Href string `json:"href"`
}
// ErrCollectorNotFound is returned when a collector doesn't exist on a Read or Delete.
// It's useful for ignoring errors (e.g. delete if exists).
var ErrCollectorNotFound = errors.New("Collector not found")
// GetHostedCollector gets the collector with the specified ID.
func (s *Client) GetHostedCollector(id int) (*Collector, string, error) {
relativeURL, _ := url.Parse(fmt.Sprintf("collectors/%d", id))
url := s.EndpointURL.ResolveReference(relativeURL)
req, err := http.NewRequest("GET", url.String(), nil)
req.Header.Add("Authorization", "Basic "+s.AuthToken)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, "", err
}
defer resp.Body.Close()
ResponseBody, _ := ioutil.ReadAll(resp.Body)
switch resp.StatusCode {
case http.StatusOK:
var cr = new(CollectorRequest)
err = json.Unmarshal(ResponseBody, &cr)
if err != nil {
return nil, "", err
}
return &cr.Collector, resp.Header.Get("ETag"), nil
case http.StatusUnauthorized:
return nil, "", ErrClientAuthenticationError
case http.StatusNotFound:
return nil, "", ErrCollectorNotFound
default:
return nil, "", fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}
// CreateHostedCollector creates a new Hosted Collector.
func (s *Client) CreateHostedCollector(collector Collector) (*Collector, error) {
collectorRequest := CollectorRequest{
Collector: collector,
}
body, _ := json.Marshal(collectorRequest)
relativeURL, _ := url.Parse("collectors")
url := s.EndpointURL.ResolveReference(relativeURL)
req, err := http.NewRequest("POST", url.String(), bytes.NewBuffer(body))
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "Basic "+s.AuthToken)
resp, err := http.DefaultClient.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
responseBody, _ := ioutil.ReadAll(resp.Body)
switch resp.StatusCode {
case http.StatusCreated:
var cr = new(CollectorRequest)
err = json.Unmarshal(responseBody, &cr)
if err != nil {
return nil, err
}
return &cr.Collector, nil
case http.StatusUnauthorized:
return nil, ErrClientAuthenticationError
case http.StatusBadRequest:
return nil, fmt.Errorf("Bad Request. Please check if a collector with this name `%s` already exists", collector.Name)
default:
return nil, fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}
// UpdateHostedCollector updates an existing hosted collector.
func (s *Client) UpdateHostedCollector(collector Collector, etag string) (*Collector, error) {
collectorRequest := CollectorRequest{
Collector: collector,
}
body, _ := json.Marshal(collectorRequest)
relativeURL, _ := url.Parse(fmt.Sprintf("collectors/%d", collector.ID))
url := s.EndpointURL.ResolveReference(relativeURL)
req, err := http.NewRequest("PUT", url.String(), bytes.NewBuffer((body)))
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "Basic "+s.AuthToken)
req.Header.Add("If-Match", etag)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ResponseBody, _ := ioutil.ReadAll(resp.Body)
switch resp.StatusCode {
case http.StatusOK:
var cr = new(CollectorRequest)
err = json.Unmarshal(ResponseBody, &cr)
if err != nil {
return nil, err
}
return &cr.Collector, nil
case http.StatusUnauthorized:
return nil, ErrClientAuthenticationError
case http.StatusBadRequest:
return nil, fmt.Errorf("Bad Request. Please check if a collector with this name `%s` already exists", collector.Name)
default:
return nil, fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}
// DeleteHostedCollector deletes the collector with the specified ID.
func (s *Client) DeleteHostedCollector(id int) error {
c, _ := url.Parse(fmt.Sprintf("collectors/%d", id))
req, err := http.NewRequest("DELETE", s.EndpointURL.ResolveReference(c).String(), nil)
req.Header.Add("Authorization", "Basic "+s.AuthToken)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
switch resp.StatusCode {
case http.StatusOK:
return nil
case http.StatusNotFound:
return ErrCollectorNotFound
case http.StatusUnauthorized:
return ErrClientAuthenticationError
default:
return fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}