Skip to content

[otel]: Add e2e test for monitoring metrics in otel mode #8009

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
f07b76f
[Draft]: Add e2e test for monitoring metrics in otel mode
khushijain21 Apr 28, 2025
cee8091
add test for http/metrics
khushijain21 Apr 29, 2025
e3309ee
add ignored fields for http/metrics
khushijain21 Apr 29, 2025
24368eb
Merge branch 'main' into e2emetrics
khushijain21 Apr 29, 2025
1d47945
Merge remote-tracking branch 'refs/remotes/upstream/main' into e2emet…
khushijain21 May 5, 2025
b78e280
after support for default processor in mbreceiver
khushijain21 May 5, 2025
3ba9084
add support for beat/metrics
khushijain21 May 5, 2025
c917993
remove host processor
khushijain21 May 5, 2025
13b4664
Merge remote-tracking branch 'refs/remotes/upstream/main' into e2emet…
khushijain21 May 5, 2025
fb556b5
refactor
khushijain21 May 5, 2025
5020631
update ignored fields
khushijain21 May 5, 2025
86065ad
add missing newline
khushijain21 May 6, 2025
adb48da
refactor impelmentaion
khushijain21 May 7, 2025
d329105
Use template instead of policy
khushijain21 May 7, 2025
84a9061
Merge remote-tracking branch 'refs/remotes/upstream/main' into e2emet…
khushijain21 May 23, 2025
766d71e
refactor monitoring code
khushijain21 May 23, 2025
71ac038
refactor monitoring code
khushijain21 May 23, 2025
baf61f5
use runtime_experimental
khushijain21 May 23, 2025
9c7064f
drop process related fields
khushijain21 May 23, 2025
ea25080
Merge branch 'main' into e2emetrics
khushijain21 May 23, 2025
05be492
fix ut for monitoring
khushijain21 May 23, 2025
1e2b700
fix if condition for http streams
khushijain21 May 23, 2025
cff7efe
Merge branch 'main' into e2emetrics
khushijain21 May 26, 2025
a52437f
address comments
khushijain21 May 26, 2025
6eee04d
address review comments2
khushijain21 May 26, 2025
e20cbe5
Merge branch 'main' into e2emetrics
khushijain21 May 26, 2025
86d59e3
cleanup
khushijain21 May 27, 2025
3f4c583
add event.ingested
khushijain21 May 27, 2025
b3b1898
check ci
khushijain21 May 27, 2025
e11dee5
Merge branch 'main' into e2emetrics
khushijain21 May 27, 2025
a3eada8
pick metrics that have libbeat.output.events fields
khushijain21 May 27, 2025
6edea59
Merge branch 'main' into e2emetrics
khushijain21 May 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/pkg/agent/application/monitoring/v1_monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ func httpCopyRules() []interface{} {
"to": "system.process.memory.size",
},

// I should be able to see fd usage. Am I keep too many files open?
// I should be able to see fd usage. Am I keeping too many files open?
map[string]interface{}{
"from": "http.agent.beat.handles",
"to": "system.process.fd",
Expand Down
Loading