You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cmd/osquery-perf/README.md
+17-3
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,21 @@ go run agent.go --enroll_secret hgh4hk3434l2jjf --os_templates ubuntu_22.04,wind
56
56
57
57
would start 3 Ubuntu hosts and 3 Windows hosts. See the `os_templates` flag description in `go run agent.go --help` for the list of supported template names.
58
58
59
-
### Running Locally (Development Environment)
59
+
## Controlling Agent Behavior From the Fleet UI
60
+
61
+
### Specify Query Results
62
+
63
+
Using the naming convention `MyQuery_10` (name separated by `_number`) will instruct agents to
64
+
return 10 rows for that query
65
+
66
+
### Control policy pass/fail per policy
67
+
68
+
In the Policy SQL:
69
+
70
+
-`select 1` will instruct agents to send back only passing responses
71
+
-`select 0` will instruct agents to send back only failing responses
72
+
73
+
## Running Locally (Development Environment)
60
74
61
75
First, ensure your Fleet local development environment is up and running. Refer to [Building Fleet](../../docs/Contributing/Building-Fleet.md) for details. Once this is done:
62
76
@@ -68,13 +82,13 @@ Alternatively, you can retrieve the enroll secret from the command-line using `f
68
82
69
83
The agent will start. You can connect to MySQL to view changes made to the development database by the agent (e.g., at the terminal, with `docker-compose exec mysql mysql -uroot -ptoor -Dfleet`). Remember that frequency of the reported data depends on the configuration of the Fleet instance, so you may want to start it with shorter delays for some cases and enable debug logging (e.g., `./build/fleet serve --dev --logging_debug --osquery_detail_update_interval 1m`).
70
84
71
-
###Resource Limits
85
+
## Resource Limits
72
86
73
87
On many systems, trying to simulate a large number of hosts will result in hitting system resource limits (such as number of open file descriptors).
74
88
75
89
If you see errors such as `dial tcp: lookup localhost: no such host` or `read: connection reset by peer`, try increasing these limits.
76
90
77
-
####macOS
91
+
### macOS
78
92
79
93
Run the following command in the shell before running the Fleet server _and_ before running `agent.go` (run it once in each shell):
0 commit comments