Alberto Sartori 26c68a0f88
Opentelemetry instrumentation http (#186)
* Add opentelemetry_instrumentation_http utility library

* Update utilities/opentelemetry_instrumentation_http/src/opentelemetry_instrumentation_http.erl

Co-authored-by: Tristan Sloughter <t@crashfast.com>

* Fix dialyzer

* Update changelog

---------

Co-authored-by: Tristan Sloughter <t@crashfast.com>
2023-07-16 14:04:13 -06:00

38 lines
816 B
Erlang

{erl_opts, [debug_info]}.
{deps, []}.
{project_plugins, [
covertool,
erlfmt,
rebar3_hex
]}.
{profiles, [
{docs, [
{deps, [edown]},
{edoc_opts, [
{preprocess, true},
{doclet, edoc_doclet_chunks},
{layout, edoc_layout_chunks},
{dir, "_build/default/lib/opentelemetry_instrumentation_http/doc"},
{subpackages, true}
]}
]},
{test, [
{erl_opts, [nowarn_export_all]},
{deps, []},
{ct_opts, [{ct_hooks, [cth_surefire]}]}
]}
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
deprecated_function_calls,
deprecated_functions
]}.
{xref_ignores, []}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{covertool, [{coverdata_files, ["ct.coverdata"]}]}.