runner.json 741 B

12345678910111213141516171819202122232425
  1. {
  2. "grpc_port": 9011,
  3. "runner_id": "${RUNNER_ID:runner-1}",
  4. "webserver_address": "${WEBSERVER_ADDRESS:localhost:8090}",
  5. "node_sync_address": "${NODE_SYNC_ADDRESS:localhost:9012}",
  6. "credential_service_address": "${CREDENTIAL_SERVICE_ADDRESS:localhost:9013}",
  7. "database_address": "${DATABASE_ADDRESS:localhost:9010}",
  8. "max_message_size_mb": 64,
  9. "node_sync": {
  10. "enabled": true,
  11. "reconnect_interval_ms": 5000
  12. },
  13. "registration": {
  14. "heartbeat_interval_sec": 10,
  15. "max_concurrent_executions": 10
  16. },
  17. "execution": {
  18. "default_timeout_ms": 60000,
  19. "max_memory_per_script_mb": 64
  20. },
  21. "logging": {
  22. "level": "${LOG_LEVEL:info}",
  23. "file": "${LOG_FILE:/var/log/smartbotic-automation/runner.log}"
  24. }
  25. }