Skip to content

Commit 9e4c666

Browse files
mergify[bot]efd6
andauthored
[8.16](backport #42442) x-pack/filebeat/input/httpjson: add metrics for number of events and pages published (#42588)
* x-pack/filebeat/input/httpjson: add metrics for number of events and pages published (#42442) This is intended to match the events and batches published by the CEL input, but there is no concept of batches in HTTPJSON, the nearest being paging. (cherry picked from commit 71900c4) * remove irrelevant changelog entries --------- Co-authored-by: Dan Kortschak <[email protected]>
1 parent 48f2ed7 commit 9e4c666

File tree

6 files changed

+31
-12
lines changed

6 files changed

+31
-12
lines changed

CHANGELOG.next.asciidoc

+1
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
202202
- Update CEL mito extensions to v1.12.2. {pull}39755[39755]
203203
- Add ability to remove request trace logs from http_endpoint input. {pull}40005[40005]
204204
- Add ability to remove request trace logs from entityanalytics input. {pull}40004[40004]
205+
- Add metrics for number of events and pages published by HTTPJSON input. {issue}42340[42340] {pull}42442[42442]
205206

206207
*Auditbeat*
207208

x-pack/filebeat/docs/inputs/input-httpjson.asciidoc

+2
Original file line numberDiff line numberDiff line change
@@ -1622,6 +1622,8 @@ observe the activity of the input.
16221622
[options="header"]
16231623
|=======
16241624
| Metric | Description
1625+
| `events_published_total` | Total number of events published.
1626+
| `pages_published_total` | Total number of pages of event published.
16251627
| `http_request_total` | Total number of processed requests.
16261628
| `http_request_errors_total` | Total number of request errors.
16271629
| `http_request_delete_total` | Total number of `DELETE` requests.

x-pack/filebeat/input/httpjson/input.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ func run(ctx v2.Context, cfg config, pub inputcursor.Publisher, crsr *inputcurso
159159
}
160160
pagination := newPagination(cfg, client, log)
161161
responseProcessor := newResponseProcessor(cfg, pagination, xmlDetails, metrics, log)
162-
requester := newRequester(client, requestFactory, responseProcessor, log)
162+
requester := newRequester(client, requestFactory, responseProcessor, metrics, log)
163163

164164
trCtx := emptyTransformContext()
165165
trCtx.cursor = newCursor(cfg.Cursor, log)

x-pack/filebeat/input/httpjson/metrics.go

+12
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ type inputMetrics struct {
1919
intervalPages metrics.Sample // histogram of pages per interval
2020
intervals *monitoring.Uint // total number of intervals executed
2121
intervalErrs *monitoring.Uint // total number of interval errors
22+
eventsPublished *monitoring.Uint // number of events published
23+
pagesPublished *monitoring.Uint // number of pages of event published
2224
}
2325

2426
func newInputMetrics(reg *monitoring.Registry) *inputMetrics {
@@ -29,6 +31,8 @@ func newInputMetrics(reg *monitoring.Registry) *inputMetrics {
2931
out := &inputMetrics{
3032
intervals: monitoring.NewUint(reg, "httpjson_interval_total"),
3133
intervalErrs: monitoring.NewUint(reg, "httpjson_interval_errors_total"),
34+
eventsPublished: monitoring.NewUint(reg, "events_published_total"),
35+
pagesPublished: monitoring.NewUint(reg, "pages_published_total"),
3236
intervalExecutionTime: metrics.NewUniformSample(1024),
3337
intervalPageExecutionTime: metrics.NewUniformSample(1024),
3438
intervalPages: metrics.NewUniformSample(1024),
@@ -44,6 +48,13 @@ func newInputMetrics(reg *monitoring.Registry) *inputMetrics {
4448
return out
4549
}
4650

51+
func (m *inputMetrics) addEventsPublished(n uint64) {
52+
if m == nil {
53+
return
54+
}
55+
m.eventsPublished.Add(n)
56+
}
57+
4758
func (m *inputMetrics) updateIntervalMetrics(err error, t time.Time) {
4859
if m == nil {
4960
return
@@ -59,6 +70,7 @@ func (m *inputMetrics) updatePageExecutionTime(t time.Time) {
5970
if m == nil {
6071
return
6172
}
73+
m.pagesPublished.Add(1)
6274
m.intervalPageExecutionTime.Update(time.Since(t).Nanoseconds())
6375
}
6476

x-pack/filebeat/input/httpjson/request.go

+14-10
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func (r *requester) doRequest(ctx context.Context, trCtx *transformContext, publ
8282

8383
if len(r.requestFactories) == 1 {
8484
finalResps = append(finalResps, httpResp)
85-
p := newPublisher(trCtx, publisher, true, r.log)
85+
p := newPublisher(trCtx, publisher, true, r.metrics, r.log)
8686
r.responseProcessors[i].startProcessing(ctx, trCtx, finalResps, true, p)
8787
n = p.eventCount()
8888
continue
@@ -119,7 +119,7 @@ func (r *requester) doRequest(ctx context.Context, trCtx *transformContext, publ
119119
return err
120120
}
121121
// we avoid unnecessary pagination here since chaining is present, thus avoiding any unexpected updates to cursor values
122-
p := newPublisher(trCtx, publisher, false, r.log)
122+
p := newPublisher(trCtx, publisher, false, r.metrics, r.log)
123123
r.responseProcessors[i].startProcessing(ctx, trCtx, finalResps, false, p)
124124
n = p.eventCount()
125125
} else {
@@ -189,7 +189,7 @@ func (r *requester) doRequest(ctx context.Context, trCtx *transformContext, publ
189189
resps = intermediateResps
190190
}
191191

192-
p := newPublisher(chainTrCtx, publisher, i < len(r.requestFactories), r.log)
192+
p := newPublisher(chainTrCtx, publisher, i < len(r.requestFactories), r.metrics, r.log)
193193
if rf.isChain {
194194
rf.chainResponseProcessor.startProcessing(ctx, chainTrCtx, resps, true, p)
195195
} else {
@@ -474,14 +474,16 @@ type requester struct {
474474
client *httpClient
475475
requestFactories []*requestFactory
476476
responseProcessors []*responseProcessor
477+
metrics *inputMetrics
477478
log *logp.Logger
478479
}
479480

480-
func newRequester(client *httpClient, reqs []*requestFactory, resps []*responseProcessor, log *logp.Logger) *requester {
481+
func newRequester(client *httpClient, reqs []*requestFactory, resps []*responseProcessor, metrics *inputMetrics, log *logp.Logger) *requester {
481482
return &requester{
482483
client: client,
483484
requestFactories: reqs,
484485
responseProcessors: resps,
486+
metrics: metrics,
485487
log: log,
486488
}
487489
}
@@ -716,7 +718,7 @@ func (r *requester) processChainPaginationEvents(ctx context.Context, trCtx *tra
716718
}
717719
resps = intermediateResps
718720
}
719-
p := newPublisher(chainTrCtx, publisher, i < len(r.requestFactories), r.log)
721+
p := newPublisher(chainTrCtx, publisher, i < len(r.requestFactories), r.metrics, r.log)
720722
rf.chainResponseProcessor.startProcessing(ctx, chainTrCtx, resps, true, p)
721723
n += p.eventCount()
722724
}
@@ -752,13 +754,14 @@ func generateNewUrl(replacement, oldUrl, id string) (url.URL, error) {
752754

753755
// publisher is an event publication handler.
754756
type publisher struct {
755-
trCtx *transformContext
756-
pub inputcursor.Publisher
757-
n int
758-
log *logp.Logger
757+
trCtx *transformContext
758+
pub inputcursor.Publisher
759+
n int
760+
log *logp.Logger
761+
metrics *inputMetrics
759762
}
760763

761-
func newPublisher(trCtx *transformContext, pub inputcursor.Publisher, publish bool, log *logp.Logger) *publisher {
764+
func newPublisher(trCtx *transformContext, pub inputcursor.Publisher, publish bool, metrics *inputMetrics, log *logp.Logger) *publisher {
762765
if !publish {
763766
pub = nil
764767
}
@@ -789,6 +792,7 @@ func (p *publisher) handleEvent(_ context.Context, msg mapstr.M) {
789792
p.trCtx.updateLastEvent(msg)
790793
p.trCtx.updateCursor()
791794

795+
p.metrics.addEventsPublished(1)
792796
p.n++
793797
}
794798

x-pack/filebeat/input/httpjson/request_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func TestCtxAfterDoRequest(t *testing.T) {
6666
pagination := newPagination(config, client, log)
6767
responseProcessor := newResponseProcessor(config, pagination, nil, nil, log)
6868

69-
requester := newRequester(client, requestFactory, responseProcessor, log)
69+
requester := newRequester(client, requestFactory, responseProcessor, nil, log)
7070

7171
trCtx := emptyTransformContext()
7272
trCtx.cursor = newCursor(config.Cursor, log)

0 commit comments

Comments
 (0)