Skip to content

Commit 39c416f

Browse files
authored
fix (#19)
Signed-off-by: James Elias Sigurdarson <jamiees2@gmail.com>
1 parent cb44be4 commit 39c416f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @fluent-org/logger
2-
[![Build Status](https://github.com/fluent/fluent-logger-bulk-node/actions/workflows/main.yml/badge.svg)](https://github.com/fluent/fluent-logger-bulk-node/actions)
2+
[![Build Status](https://github.com/fluent/fluent-logger-forward-node/actions/workflows/main.yml/badge.svg)](https://github.com/fluent/fluent-logger-forward-node/actions)
33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
4-
[![Docs](https://img.shields.io/badge/Docs-latest-informational)](https://fluent.github.io/fluent-logger-bulk-node/)
4+
[![Docs](https://img.shields.io/badge/Docs-latest-informational)](https://fluent.github.io/fluent-logger-forward-node/)
55

66
[Fluent Forward Protocol](https://github.com/fluent/fluentd/wiki/Forward-Protocol-Specification-v1) implementation for Node.js.
77
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).
1515
## Client
1616
`@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.
1717

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)
1919

2020
### Prerequisites
2121
The fluent daemon should be listening in forward mode.
@@ -75,7 +75,7 @@ emit(label: string, data: Record<string, any>, timestamp: number | Date | EventT
7575
The returned Promise is resolved once the event is written to the socket, or rejected if an error occurs.
7676

7777
### 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.
7979

8080
Enabling acknowledgements means that the promise returned by `emit` will be resolved once the client receives an explicit acknowledgement from the server.
8181
```js
@@ -246,7 +246,7 @@ Fluentd configuration:
246246

247247
### EventTime support
248248

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)
250250

251251
```js
252252
const FluentClient = require("@fluent-org/logger").FluentClient;
@@ -320,7 +320,7 @@ See the [FluentD docs](https://docs.fluentd.org/output/forward) for more info.
320320

321321
Alternatively, see the [Fluent Bit docs](https://docs.fluentbit.io/manual/pipeline/outputs/forward) for info on setting up Fluent Bit.
322322

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)
324324

325325

326326
## License

0 commit comments

Comments
 (0)