-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-config.json
More file actions
36 lines (36 loc) · 982 Bytes
/
Copy pathagent-config.json
File metadata and controls
36 lines (36 loc) · 982 Bytes
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
{
"serverUrl": "ws://localhost:5000/api/ws/agents",
"organizationKey": "development-agent-token",
"transport": "websocket",
"compressionEnabled": false,
"validateCertificates": false,
"allowInsecureConnections": true,
"maxMessageSize": 1048576,
"heartbeatInterval": 60,
"dataUploadInterval": 300,
"scanInterval": 3600,
"registrationEndpoint": "/api/agents/register",
"dataEndpoint": "/api/agents/data",
"heartbeatEndpoint": "/api/agents/heartbeat",
"signMessages": false,
"capabilities": {
"fileSystemMonitoring": true,
"processMonitoring": true,
"networkMonitoring": true,
"registryMonitoring": false,
"securityLogsMonitoring": true,
"malwareScanning": true,
"vulnerabilityScanning": true
},
"logFilePath": "/var/log/soc-agent.log",
"maxStorageSize": 100,
"logLevel": "info",
"queueSize": 1000,
"enableCommands": true,
"allowedCommands": [
"script",
"configUpdate",
"isolate",
"upgrade"
]
}