|
507 | 507 | / request_headers: \["accept", "accept-charset", "accept-encoding", "accept-language", "cache-control", "connection", "content-length", "range"\]/, # rubocop:disable Layout/LineLength |
508 | 508 | / send_environment_metadata: true/, |
509 | 509 | / send_params: true/, |
510 | | - / send_session_data: true/, |
511 | | - / skip_session_data: false/ |
| 510 | + / send_session_data: true \(Loaded from override\)/, |
| 511 | + / skip_session_data: false \(Loaded from override\)/, |
| 512 | + / transaction_debug_mode: false/ |
512 | 513 | ] |
513 | 514 | when :python |
514 | 515 | matchers += [ |
|
612 | 613 | { |
613 | 614 | "active" => true, |
614 | 615 | "ca_file_path" => ending_with("priv/cacert.pem"), |
| 616 | + "debug" => false, |
615 | 617 | "diagnose_endpoint" => ENV.fetch("APPSIGNAL_DIAGNOSE_ENDPOINT", nil), |
616 | 618 | "dns_servers" => [], |
617 | 619 | "enable_error_backend" => true, |
|
651 | 653 | "send_environment_metadata" => true, |
652 | 654 | "send_params" => true, |
653 | 655 | "send_session_data" => true, |
654 | | - "skip_session_data" => false |
| 656 | + "skip_session_data" => false, |
| 657 | + "transaction_debug_mode" => false |
655 | 658 | } |
656 | 659 | when :nodejs |
657 | 660 | { |
|
816 | 819 | "default" => { |
817 | 820 | "active" => false, |
818 | 821 | "ca_file_path" => ending_with("priv/cacert.pem"), |
| 822 | + "debug" => false, |
819 | 823 | "diagnose_endpoint" => "https://appsignal.com/diag", |
820 | 824 | "dns_servers" => [], |
821 | 825 | "enable_error_backend" => true, |
|
851 | 855 | "range" |
852 | 856 | ], |
853 | 857 | "send_environment_metadata" => true, |
854 | | - "send_params" => true |
| 858 | + "send_params" => true, |
| 859 | + "transaction_debug_mode" => false |
855 | 860 | }, |
856 | 861 | "env" => { |
857 | 862 | "endpoint" => ENV.fetch("APPSIGNAL_PUSH_API_ENDPOINT", nil), |
|
865 | 870 | "system" => { |
866 | 871 | "active" => true |
867 | 872 | }, |
868 | | - "override" => {} |
| 873 | + "override" => { |
| 874 | + "send_session_data" => true, |
| 875 | + "skip_session_data" => false |
| 876 | + } |
869 | 877 | } |
870 | 878 | when :nodejs |
871 | 879 | { |
|
0 commit comments