├── .codecov.yml ├── .github ├── codeql │ └── codeql-config.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── dependabot-auto-merge.yml │ ├── pr.yml │ └── release.yml ├── .gitignore ├── .gosec.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── Makefile.ps1 ├── README.md ├── SECURITY.md ├── argus.go ├── argus_core_test.go ├── argus_edge_test.go ├── argus_fuzz_test.go ├── argus_security_test.go ├── argus_test.go ├── argus_unit_test.go ├── assets └── banner.png ├── audit.go ├── audit_backend.go ├── audit_backend_test.go ├── audit_test.go ├── benchmark_test.go ├── benchmarks ├── README.md ├── go.mod ├── go.sum ├── performance-report-20251016.txt └── ring_buffer_performance_test.go ├── boreaslite.go ├── boreaslite_strategies_test.go ├── boreaslite_test.go ├── changelog ├── v1.0.0.txt ├── v1.0.1.txt ├── v1.0.2.txt ├── v1.0.3.txt ├── v1.0.4.txt ├── v1.0.5.txt ├── v1.0.6.txt └── v1.0.7.txt ├── clean_overhead_test.go ├── cmd └── cli │ ├── cli_commands_test.go │ ├── cli_handle_test.go │ ├── cli_integration_test.go │ ├── handlers.go │ ├── manager.go │ ├── manager_test.go │ └── utils.go ├── config.go ├── config_binder.go ├── config_binder_test.go ├── config_equals_test.go ├── config_format_test.go ├── config_test.go ├── config_validation.go ├── config_validation_security_test.go ├── config_validation_simple_test.go ├── config_validation_test.go ├── config_writer.go ├── config_writer_comprehensive_test.go ├── config_writer_test.go ├── doc.go ├── docs ├── API-REFERENCE.md ├── ARCHITECTURE.md ├── architecture-spinning-logic.md ├── audit-system.md ├── cli-integration.md ├── environment-config.md ├── integrations.md ├── parser-guide.md ├── provider-tutorial.md ├── quick-start.md └── remote-config-api.md ├── env_config.go ├── env_config_test.go ├── error_handler_test.go ├── examples ├── cli │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── config_binding │ ├── README.md │ ├── config_binding_test.go │ ├── go.mod │ ├── go.sum │ └── main.go ├── config_validation │ ├── README.md │ ├── config_validation_test.go │ ├── go.mod │ ├── go.sum │ └── main.go ├── error_handling │ ├── README.md │ ├── error_handling_test.go │ ├── go.mod │ ├── go.sum │ └── main.go ├── multi_source_config │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── main_test.go ├── optimization_strategies │ ├── README.md │ ├── benchmark_test.go │ ├── go.mod │ ├── go.sum │ ├── integration_test.go │ ├── main.go │ └── main_test.go └── otel_integration │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── main_test.go │ ├── otel.go │ └── otel_test.go ├── go.mod ├── go.sum ├── graceful_shutdown_features_test.go ├── graceful_shutdown_test.go ├── hcl_validation.go ├── ini_validation.go ├── ini_validation_test.go ├── integration.go ├── integration_test.go ├── long_path_test.go ├── low_file_test.go ├── no_consumer_test.go ├── overhead-benchmarks ├── README.md ├── go.mod ├── go.sum ├── realistic_production_overhead_test.go └── theoretical_minimal_overhead_test.go ├── overhead_analysis_test.go ├── parser_robustness_test.go ├── parser_structured.go ├── parser_text.go ├── parser_yaml_comprehensive_test.go ├── parser_yaml_improvement_test.go ├── parser_yaml_nested_test.go ├── parsers.go ├── path_limits_test.go ├── plugin_system_test.go ├── production_overhead_test.go ├── properties_validation.go ├── properties_validation_test.go ├── realistic_benchmark_test.go ├── remote_config.go ├── remote_config_fallback.go ├── remote_config_fallback_test.go ├── security_critical_test.go ├── simple_set_test.go ├── single_event_bench_test.go ├── utilities.go ├── utilities_comprehensive_test.go └── utilities_test.go /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gosec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/.gosec.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/Makefile.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/SECURITY.md -------------------------------------------------------------------------------- /argus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/argus.go -------------------------------------------------------------------------------- /argus_core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/argus_core_test.go -------------------------------------------------------------------------------- /argus_edge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/argus_edge_test.go -------------------------------------------------------------------------------- /argus_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/argus_fuzz_test.go -------------------------------------------------------------------------------- /argus_security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/argus_security_test.go -------------------------------------------------------------------------------- /argus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/argus_test.go -------------------------------------------------------------------------------- /argus_unit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/argus_unit_test.go -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/assets/banner.png -------------------------------------------------------------------------------- /audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/audit.go -------------------------------------------------------------------------------- /audit_backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/audit_backend.go -------------------------------------------------------------------------------- /audit_backend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/audit_backend_test.go -------------------------------------------------------------------------------- /audit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/audit_test.go -------------------------------------------------------------------------------- /benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/benchmark_test.go -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/benchmarks/go.mod -------------------------------------------------------------------------------- /benchmarks/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/benchmarks/go.sum -------------------------------------------------------------------------------- /benchmarks/performance-report-20251016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/benchmarks/performance-report-20251016.txt -------------------------------------------------------------------------------- /benchmarks/ring_buffer_performance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/benchmarks/ring_buffer_performance_test.go -------------------------------------------------------------------------------- /boreaslite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/boreaslite.go -------------------------------------------------------------------------------- /boreaslite_strategies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/boreaslite_strategies_test.go -------------------------------------------------------------------------------- /boreaslite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/boreaslite_test.go -------------------------------------------------------------------------------- /changelog/v1.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.0.txt -------------------------------------------------------------------------------- /changelog/v1.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.1.txt -------------------------------------------------------------------------------- /changelog/v1.0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.2.txt -------------------------------------------------------------------------------- /changelog/v1.0.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.3.txt -------------------------------------------------------------------------------- /changelog/v1.0.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.4.txt -------------------------------------------------------------------------------- /changelog/v1.0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.5.txt -------------------------------------------------------------------------------- /changelog/v1.0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.6.txt -------------------------------------------------------------------------------- /changelog/v1.0.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/changelog/v1.0.7.txt -------------------------------------------------------------------------------- /clean_overhead_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/clean_overhead_test.go -------------------------------------------------------------------------------- /cmd/cli/cli_commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/cmd/cli/cli_commands_test.go -------------------------------------------------------------------------------- /cmd/cli/cli_handle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/cmd/cli/cli_handle_test.go -------------------------------------------------------------------------------- /cmd/cli/cli_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/cmd/cli/cli_integration_test.go -------------------------------------------------------------------------------- /cmd/cli/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/cmd/cli/handlers.go -------------------------------------------------------------------------------- /cmd/cli/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/cmd/cli/manager.go -------------------------------------------------------------------------------- /cmd/cli/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/cmd/cli/manager_test.go -------------------------------------------------------------------------------- /cmd/cli/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/cmd/cli/utils.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config.go -------------------------------------------------------------------------------- /config_binder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_binder.go -------------------------------------------------------------------------------- /config_binder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_binder_test.go -------------------------------------------------------------------------------- /config_equals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_equals_test.go -------------------------------------------------------------------------------- /config_format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_format_test.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_test.go -------------------------------------------------------------------------------- /config_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_validation.go -------------------------------------------------------------------------------- /config_validation_security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_validation_security_test.go -------------------------------------------------------------------------------- /config_validation_simple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_validation_simple_test.go -------------------------------------------------------------------------------- /config_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_validation_test.go -------------------------------------------------------------------------------- /config_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_writer.go -------------------------------------------------------------------------------- /config_writer_comprehensive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_writer_comprehensive_test.go -------------------------------------------------------------------------------- /config_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/config_writer_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/doc.go -------------------------------------------------------------------------------- /docs/API-REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/API-REFERENCE.md -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/architecture-spinning-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/architecture-spinning-logic.md -------------------------------------------------------------------------------- /docs/audit-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/audit-system.md -------------------------------------------------------------------------------- /docs/cli-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/cli-integration.md -------------------------------------------------------------------------------- /docs/environment-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/environment-config.md -------------------------------------------------------------------------------- /docs/integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/integrations.md -------------------------------------------------------------------------------- /docs/parser-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/parser-guide.md -------------------------------------------------------------------------------- /docs/provider-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/provider-tutorial.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/remote-config-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/docs/remote-config-api.md -------------------------------------------------------------------------------- /env_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/env_config.go -------------------------------------------------------------------------------- /env_config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/env_config_test.go -------------------------------------------------------------------------------- /error_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/error_handler_test.go -------------------------------------------------------------------------------- /examples/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/cli/README.md -------------------------------------------------------------------------------- /examples/cli/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/cli/go.mod -------------------------------------------------------------------------------- /examples/cli/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/cli/go.sum -------------------------------------------------------------------------------- /examples/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/cli/main.go -------------------------------------------------------------------------------- /examples/cli/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/cli/main_test.go -------------------------------------------------------------------------------- /examples/config_binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_binding/README.md -------------------------------------------------------------------------------- /examples/config_binding/config_binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_binding/config_binding_test.go -------------------------------------------------------------------------------- /examples/config_binding/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_binding/go.mod -------------------------------------------------------------------------------- /examples/config_binding/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_binding/go.sum -------------------------------------------------------------------------------- /examples/config_binding/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_binding/main.go -------------------------------------------------------------------------------- /examples/config_validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_validation/README.md -------------------------------------------------------------------------------- /examples/config_validation/config_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_validation/config_validation_test.go -------------------------------------------------------------------------------- /examples/config_validation/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_validation/go.mod -------------------------------------------------------------------------------- /examples/config_validation/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_validation/go.sum -------------------------------------------------------------------------------- /examples/config_validation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/config_validation/main.go -------------------------------------------------------------------------------- /examples/error_handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/error_handling/README.md -------------------------------------------------------------------------------- /examples/error_handling/error_handling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/error_handling/error_handling_test.go -------------------------------------------------------------------------------- /examples/error_handling/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/error_handling/go.mod -------------------------------------------------------------------------------- /examples/error_handling/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/error_handling/go.sum -------------------------------------------------------------------------------- /examples/error_handling/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/error_handling/main.go -------------------------------------------------------------------------------- /examples/multi_source_config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/multi_source_config/README.md -------------------------------------------------------------------------------- /examples/multi_source_config/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/multi_source_config/go.mod -------------------------------------------------------------------------------- /examples/multi_source_config/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/multi_source_config/go.sum -------------------------------------------------------------------------------- /examples/multi_source_config/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/multi_source_config/main.go -------------------------------------------------------------------------------- /examples/multi_source_config/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/multi_source_config/main_test.go -------------------------------------------------------------------------------- /examples/optimization_strategies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/optimization_strategies/README.md -------------------------------------------------------------------------------- /examples/optimization_strategies/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/optimization_strategies/benchmark_test.go -------------------------------------------------------------------------------- /examples/optimization_strategies/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/optimization_strategies/go.mod -------------------------------------------------------------------------------- /examples/optimization_strategies/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/optimization_strategies/go.sum -------------------------------------------------------------------------------- /examples/optimization_strategies/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/optimization_strategies/integration_test.go -------------------------------------------------------------------------------- /examples/optimization_strategies/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/optimization_strategies/main.go -------------------------------------------------------------------------------- /examples/optimization_strategies/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/optimization_strategies/main_test.go -------------------------------------------------------------------------------- /examples/otel_integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/otel_integration/README.md -------------------------------------------------------------------------------- /examples/otel_integration/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/otel_integration/go.mod -------------------------------------------------------------------------------- /examples/otel_integration/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/otel_integration/go.sum -------------------------------------------------------------------------------- /examples/otel_integration/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/otel_integration/main.go -------------------------------------------------------------------------------- /examples/otel_integration/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/otel_integration/main_test.go -------------------------------------------------------------------------------- /examples/otel_integration/otel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/otel_integration/otel.go -------------------------------------------------------------------------------- /examples/otel_integration/otel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/examples/otel_integration/otel_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/go.sum -------------------------------------------------------------------------------- /graceful_shutdown_features_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/graceful_shutdown_features_test.go -------------------------------------------------------------------------------- /graceful_shutdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/graceful_shutdown_test.go -------------------------------------------------------------------------------- /hcl_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/hcl_validation.go -------------------------------------------------------------------------------- /ini_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/ini_validation.go -------------------------------------------------------------------------------- /ini_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/ini_validation_test.go -------------------------------------------------------------------------------- /integration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/integration.go -------------------------------------------------------------------------------- /integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/integration_test.go -------------------------------------------------------------------------------- /long_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/long_path_test.go -------------------------------------------------------------------------------- /low_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/low_file_test.go -------------------------------------------------------------------------------- /no_consumer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/no_consumer_test.go -------------------------------------------------------------------------------- /overhead-benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/overhead-benchmarks/README.md -------------------------------------------------------------------------------- /overhead-benchmarks/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/overhead-benchmarks/go.mod -------------------------------------------------------------------------------- /overhead-benchmarks/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/overhead-benchmarks/go.sum -------------------------------------------------------------------------------- /overhead-benchmarks/realistic_production_overhead_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/overhead-benchmarks/realistic_production_overhead_test.go -------------------------------------------------------------------------------- /overhead-benchmarks/theoretical_minimal_overhead_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/overhead-benchmarks/theoretical_minimal_overhead_test.go -------------------------------------------------------------------------------- /overhead_analysis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/overhead_analysis_test.go -------------------------------------------------------------------------------- /parser_robustness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/parser_robustness_test.go -------------------------------------------------------------------------------- /parser_structured.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/parser_structured.go -------------------------------------------------------------------------------- /parser_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/parser_text.go -------------------------------------------------------------------------------- /parser_yaml_comprehensive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/parser_yaml_comprehensive_test.go -------------------------------------------------------------------------------- /parser_yaml_improvement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/parser_yaml_improvement_test.go -------------------------------------------------------------------------------- /parser_yaml_nested_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/parser_yaml_nested_test.go -------------------------------------------------------------------------------- /parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/parsers.go -------------------------------------------------------------------------------- /path_limits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/path_limits_test.go -------------------------------------------------------------------------------- /plugin_system_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/plugin_system_test.go -------------------------------------------------------------------------------- /production_overhead_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/production_overhead_test.go -------------------------------------------------------------------------------- /properties_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/properties_validation.go -------------------------------------------------------------------------------- /properties_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/properties_validation_test.go -------------------------------------------------------------------------------- /realistic_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/realistic_benchmark_test.go -------------------------------------------------------------------------------- /remote_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/remote_config.go -------------------------------------------------------------------------------- /remote_config_fallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/remote_config_fallback.go -------------------------------------------------------------------------------- /remote_config_fallback_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/remote_config_fallback_test.go -------------------------------------------------------------------------------- /security_critical_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/security_critical_test.go -------------------------------------------------------------------------------- /simple_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/simple_set_test.go -------------------------------------------------------------------------------- /single_event_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/single_event_bench_test.go -------------------------------------------------------------------------------- /utilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/utilities.go -------------------------------------------------------------------------------- /utilities_comprehensive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/utilities_comprehensive_test.go -------------------------------------------------------------------------------- /utilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilira/argus/HEAD/utilities_test.go --------------------------------------------------------------------------------