Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Oct 10, 2024
1 parent 4ec577f commit 55c03b0
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion schemas/configuration/v4/server_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,33 @@
"ips_data_directory": {"type": "string"},
"stacktrace_directory": {"type": "string"},
"json_schema_file": {"type": "string"},
"environment_json_schema_file": {"type": "string"},
"graceful_shutdown_timeout_in_seconds": {
"type": "integer",
"minimum": 0,
"default": 0
"default": 30
},
"msiExecCmd_bin_directory": {"type": "string"},
"plugin_directory": {"type": "string"},
"home_directory": {"type": "string"},
"environment_file": {"type": "string"},

"directories": {
"type": "object",
"properties": {
"agent_info": {"type": "string"},
"home": {"type": "string"},
"msiExecCmd_bin": {"type": "string"},
"plugins": {"type": "string"},
"stacktraces": {"type": "string"}
},
"required": [
"agent_info",
"home",
"msiExecCmd_bin",
"plugins",
"stacktraces"
]
},

"advanced_settings": {
Expand Down

0 comments on commit 55c03b0

Please sign in to comment.