This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
system_integration.feature
74 lines (60 loc) · 1.92 KB
/
system_integration.feature
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
@system_integration
Feature: System Integration
Scenarios for System Integration logs and metrics packages.
Scenario Outline: Adding <value> <integration> Integration to a Policy
Given an agent is deployed to Fleet with "tar" installer
And the agent is listed in Fleet as "online"
When the policy is updated to have "<integration>" set to "<value>"
Then "<integration>" with "<value>" metrics are present in the datastreams
@core
Examples: System/metrics + core
| integration | value |
| system/metrics | core |
@cpu
Examples: System/metrics + cpu
| integration | value |
| system/metrics | cpu |
@diskio
Examples: System/metrics + diskio
| integration | value |
| system/metrics | diskio |
@fsstat
Examples: System/metrics + fsstat
| integration | value |
| system/metrics | fsstat |
@load
Examples: System/metrics + load
| integration | value |
| system/metrics | load |
@memory
Examples: System/metrics + memory
| integration | value |
| system/metrics | memory |
@network
Examples: System/metrics + network
| integration | value |
| system/metrics | network |
@process
Examples: System/metrics + process
| integration | value |
| system/metrics | process |
@socket_summary
Examples: System/metrics + socket_summary
| integration | value |
| system/metrics | socket_summary |
@uptime
Examples: System/metrics + uptime
| integration | value |
| system/metrics | uptime |
@process_summary
Examples: System/metrics + process.summary
| integration | value |
| system/metrics | process.summary |
@filesystem
Examples: System/metrics + filesystem
| integration | value |
| system/metrics | filesystem |
@deploy-logfile-integration-with-syslog
Examples: logfile + syslog
| integration | value |
| logfile | syslog |