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
[Fluent Forward Protocol](https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v1) implementation for Node.js.
7
7
Built upon [fluent-logger-node](https://github.com/fluent/fluent-logger-node).
@@ -15,7 +15,7 @@ Built upon [fluent-logger-node](https://github.com/fluent/fluent-logger-node).
15
15
## Client
16
16
`@fluent-org/logger` provides a fully functional client that implements the Forward protocol. It supports reconnection, acknowledgements, timeouts, event retries, and more, and exposes its functionality via a simple typed Promise interface.
17
17
18
-
For a full list of the client options and methods, see the [FluentClient docs](https://fluent.github.io/fluent-logger-bulk-node/classes/fluentclient.html)
18
+
For a full list of the client options and methods, see the [FluentClient docs](https://fluent.github.io/fluent-logger-forward-node/classes/fluentclient.html)
19
19
20
20
### Prerequisites
21
21
The fluent daemon should be listening in forward mode.
@@ -75,7 +75,7 @@ emit(label: string, data: Record<string, any>, timestamp: number | Date | EventT
75
75
The returned Promise is resolved once the event is written to the socket, or rejected if an error occurs.
76
76
77
77
### Acknowledgements
78
-
The [Fluent forward protocol](https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v1) provides explicit support for acknowledgements, which allow the client to be sure that the event reached its destination.
78
+
The [Fluent forward protocol](https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v1) provides explicit support for acknowledgements, which allow the client to be sure that the event reached its destination.
79
79
80
80
Enabling acknowledgements means that the promise returned by `emit` will be resolved once the client receives an explicit acknowledgement from the server.
81
81
```js
@@ -246,7 +246,7 @@ Fluentd configuration:
246
246
247
247
### EventTime support
248
248
249
-
We can also specify an [EventTime](https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v1#eventtime-ext-format) as a timestamp. See the [EventTime docs](https://fluent.github.io/fluent-logger-bulk-node/classes/eventtime.html)
249
+
We can also specify an [EventTime](https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v1#eventtime-ext-format) as a timestamp. See the [EventTime docs](https://fluent.github.io/fluent-logger-forward-node/classes/eventtime.html)
@@ -320,7 +320,7 @@ See the [FluentD docs](https://docs.fluentd.org/output/forward) for more info.
320
320
321
321
Alternatively, see the [Fluent Bit docs](https://docs.fluentbit.io/manual/pipeline/outputs/forward) for info on setting up Fluent Bit.
322
322
323
-
For a full list of the server options and methods, see the [FluentServer docs](https://fluent.github.io/fluent-logger-bulk-node/classes/fluentserver.html)
323
+
For a full list of the server options and methods, see the [FluentServer docs](https://fluent.github.io/fluent-logger-forward-node/classes/fluentserver.html)
0 commit comments