tide-trace 0.5.0

Minimum overhead USDT middleware to dynamically trace tide with BPF or DTrace
Documentation
1
2
3
4
5
6
7
8
#ifndef TIDETRACE_H_   /* Include guard */
#define TIDETRACE_H_

void startroute(char* method, char* path, int id, char* headers);  
void endroute(char* method, char* path, int id, int status, char* headers);
void fire(char* tag, char* data);

#endif // TIDETRACE_H_