You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-8Lines changed: 21 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,13 @@ $endpoint = new Endpoint(
26
26
'80' // Current application port (default 80)
27
27
);
28
28
```
29
-
Next, define storage for traces - now implemented is only one, but you can implement own using our interface, FileLogger (Scroll below for more information about loggers in php):
29
+
Next, define storage for traces - currently two types are supported - SimpleHttpLogger and FileLogger,
30
+
SimpleHttpLogger automatically sends trace data to Zipkin's service,
31
+
FileLogger (you can read more about this logger below) sends trace data to file, then you need to write curl for uploading this data to Zipkin's
32
+
(of course you can implement own using our interface):
0 commit comments