config.local.json 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "source": {
  3. "type": "cfst_local"
  4. },
  5. "cfst_local": {
  6. "work_dir": "./cfst_darwin_arm64",
  7. "binary": "./cfst",
  8. "run_args": [
  9. "-f",
  10. "ip.txt",
  11. "-o",
  12. "result.csv",
  13. "-p",
  14. "10"
  15. ],
  16. "result_file": "result.csv",
  17. "run_timeout_sec": 600,
  18. "skip_run": false,
  19. "header_rows": 1,
  20. "columns": {
  21. "ip": 0,
  22. "sent": 1,
  23. "received": 2,
  24. "loss_rate": 3,
  25. "avg_latency": 4,
  26. "download_speed": 5,
  27. "region": 6
  28. }
  29. },
  30. "domain_filter": {
  31. "include_suffixes": [],
  32. "exclude_regex": []
  33. },
  34. "selection": {
  35. "top_n": 3
  36. },
  37. "output": {
  38. "runtime_dir": "./runtime",
  39. "selected_value_file": "current_ip.txt",
  40. "selected_value_json": "current_ip.json",
  41. "selected_value_json_key": "ip",
  42. "state_file": "state.json",
  43. "state_last_good_key": "last_good_ip",
  44. "export_vars_file": "substore_vars.json",
  45. "substore_value_key": "AUTO_CFIP"
  46. },
  47. "notify": {
  48. "command": ""
  49. }
  50. }