Nginx OTel module.
This commit is contained in:
parent
0cce01b3c7
commit
9d3e21194c
8 changed files with 963 additions and 0 deletions
14
src/modules.c
Normal file
14
src/modules.c
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include <ngx_config.h>
|
||||
#include <ngx_core.h>
|
||||
|
||||
extern ngx_module_t gHttpModule;
|
||||
|
||||
ngx_module_t* ngx_modules[] = {
|
||||
&gHttpModule,
|
||||
NULL
|
||||
};
|
||||
|
||||
char* ngx_module_names[] = {
|
||||
"ngx_http_otel_module",
|
||||
NULL
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue