api.xpack.monitoring.bulk.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. // Licensed to Elasticsearch B.V. under one or more contributor
  2. // license agreements. See the NOTICE file distributed with
  3. // this work for additional information regarding copyright
  4. // ownership. Elasticsearch B.V. licenses this file to you under
  5. // the Apache License, Version 2.0 (the "License"); you may
  6. // not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing,
  12. // software distributed under the License is distributed on an
  13. // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. // KIND, either express or implied. See the License for the
  15. // specific language governing permissions and limitations
  16. // under the License.
  17. //
  18. // Code generated from specification version 7.17.10: DO NOT EDIT
  19. package esapi
  20. import (
  21. "context"
  22. "io"
  23. "net/http"
  24. "strings"
  25. )
  26. func newMonitoringBulkFunc(t Transport) MonitoringBulk {
  27. return func(body io.Reader, o ...func(*MonitoringBulkRequest)) (*Response, error) {
  28. var r = MonitoringBulkRequest{Body: body}
  29. for _, f := range o {
  30. f(&r)
  31. }
  32. return r.Do(r.ctx, t)
  33. }
  34. }
  35. // ----- API Definition -------------------------------------------------------
  36. // MonitoringBulk - Used by the monitoring features to send monitoring data.
  37. //
  38. // See full documentation at https://www.elastic.co/guide/en/elasticsearch/reference/master/monitor-elasticsearch-cluster.html.
  39. type MonitoringBulk func(body io.Reader, o ...func(*MonitoringBulkRequest)) (*Response, error)
  40. // MonitoringBulkRequest configures the Monitoring Bulk API request.
  41. type MonitoringBulkRequest struct {
  42. DocumentType string
  43. Body io.Reader
  44. Interval string
  45. SystemAPIVersion string
  46. SystemID string
  47. Pretty bool
  48. Human bool
  49. ErrorTrace bool
  50. FilterPath []string
  51. Header http.Header
  52. ctx context.Context
  53. }
  54. // Do executes the request and returns response or error.
  55. func (r MonitoringBulkRequest) Do(ctx context.Context, transport Transport) (*Response, error) {
  56. var (
  57. method string
  58. path strings.Builder
  59. params map[string]string
  60. )
  61. method = "POST"
  62. path.Grow(1 + len("_monitoring") + 1 + len(r.DocumentType) + 1 + len("bulk"))
  63. path.WriteString("/")
  64. path.WriteString("_monitoring")
  65. if r.DocumentType != "" {
  66. path.WriteString("/")
  67. path.WriteString(r.DocumentType)
  68. }
  69. path.WriteString("/")
  70. path.WriteString("bulk")
  71. params = make(map[string]string)
  72. if r.Interval != "" {
  73. params["interval"] = r.Interval
  74. }
  75. if r.SystemAPIVersion != "" {
  76. params["system_api_version"] = r.SystemAPIVersion
  77. }
  78. if r.SystemID != "" {
  79. params["system_id"] = r.SystemID
  80. }
  81. if r.Pretty {
  82. params["pretty"] = "true"
  83. }
  84. if r.Human {
  85. params["human"] = "true"
  86. }
  87. if r.ErrorTrace {
  88. params["error_trace"] = "true"
  89. }
  90. if len(r.FilterPath) > 0 {
  91. params["filter_path"] = strings.Join(r.FilterPath, ",")
  92. }
  93. req, err := newRequest(method, path.String(), r.Body)
  94. if err != nil {
  95. return nil, err
  96. }
  97. if len(params) > 0 {
  98. q := req.URL.Query()
  99. for k, v := range params {
  100. q.Set(k, v)
  101. }
  102. req.URL.RawQuery = q.Encode()
  103. }
  104. if len(r.Header) > 0 {
  105. if len(req.Header) == 0 {
  106. req.Header = r.Header
  107. } else {
  108. for k, vv := range r.Header {
  109. for _, v := range vv {
  110. req.Header.Add(k, v)
  111. }
  112. }
  113. }
  114. }
  115. if r.Body != nil && req.Header.Get(headerContentType) == "" {
  116. req.Header[headerContentType] = headerContentTypeJSON
  117. }
  118. if ctx != nil {
  119. req = req.WithContext(ctx)
  120. }
  121. res, err := transport.Perform(req)
  122. if err != nil {
  123. return nil, err
  124. }
  125. response := Response{
  126. StatusCode: res.StatusCode,
  127. Body: res.Body,
  128. Header: res.Header,
  129. }
  130. return &response, nil
  131. }
  132. // WithContext sets the request context.
  133. func (f MonitoringBulk) WithContext(v context.Context) func(*MonitoringBulkRequest) {
  134. return func(r *MonitoringBulkRequest) {
  135. r.ctx = v
  136. }
  137. }
  138. // WithDocumentType - default document type for items which don't provide one.
  139. func (f MonitoringBulk) WithDocumentType(v string) func(*MonitoringBulkRequest) {
  140. return func(r *MonitoringBulkRequest) {
  141. r.DocumentType = v
  142. }
  143. }
  144. // WithInterval - collection interval (e.g., '10s' or '10000ms') of the payload.
  145. func (f MonitoringBulk) WithInterval(v string) func(*MonitoringBulkRequest) {
  146. return func(r *MonitoringBulkRequest) {
  147. r.Interval = v
  148. }
  149. }
  150. // WithSystemAPIVersion - api version of the monitored system.
  151. func (f MonitoringBulk) WithSystemAPIVersion(v string) func(*MonitoringBulkRequest) {
  152. return func(r *MonitoringBulkRequest) {
  153. r.SystemAPIVersion = v
  154. }
  155. }
  156. // WithSystemID - identifier of the monitored system.
  157. func (f MonitoringBulk) WithSystemID(v string) func(*MonitoringBulkRequest) {
  158. return func(r *MonitoringBulkRequest) {
  159. r.SystemID = v
  160. }
  161. }
  162. // WithPretty makes the response body pretty-printed.
  163. func (f MonitoringBulk) WithPretty() func(*MonitoringBulkRequest) {
  164. return func(r *MonitoringBulkRequest) {
  165. r.Pretty = true
  166. }
  167. }
  168. // WithHuman makes statistical values human-readable.
  169. func (f MonitoringBulk) WithHuman() func(*MonitoringBulkRequest) {
  170. return func(r *MonitoringBulkRequest) {
  171. r.Human = true
  172. }
  173. }
  174. // WithErrorTrace includes the stack trace for errors in the response body.
  175. func (f MonitoringBulk) WithErrorTrace() func(*MonitoringBulkRequest) {
  176. return func(r *MonitoringBulkRequest) {
  177. r.ErrorTrace = true
  178. }
  179. }
  180. // WithFilterPath filters the properties of the response body.
  181. func (f MonitoringBulk) WithFilterPath(v ...string) func(*MonitoringBulkRequest) {
  182. return func(r *MonitoringBulkRequest) {
  183. r.FilterPath = v
  184. }
  185. }
  186. // WithHeader adds the headers to the HTTP request.
  187. func (f MonitoringBulk) WithHeader(h map[string]string) func(*MonitoringBulkRequest) {
  188. return func(r *MonitoringBulkRequest) {
  189. if r.Header == nil {
  190. r.Header = make(http.Header)
  191. }
  192. for k, v := range h {
  193. r.Header.Add(k, v)
  194. }
  195. }
  196. }
  197. // WithOpaqueID adds the X-Opaque-Id header to the HTTP request.
  198. func (f MonitoringBulk) WithOpaqueID(s string) func(*MonitoringBulkRequest) {
  199. return func(r *MonitoringBulkRequest) {
  200. if r.Header == nil {
  201. r.Header = make(http.Header)
  202. }
  203. r.Header.Set("X-Opaque-Id", s)
  204. }
  205. }