HTTPNotifier notify about HTTP request/response
| 14 | |
| 15 | // HTTPNotifier notify about HTTP request/response |
| 16 | type HTTPNotifier interface { |
| 17 | Notify(method string, URL string, originalURL string, statusCode int, event string, duration time.Duration) |
| 18 | } |
| 19 | |
| 20 | func urlToLabel(path string) string { |
| 21 | if len(path) > 0 { |
no outgoing calls
no test coverage detected
searching dependent graphs…