mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 20:15:41 +01:00
11 lines
266 B
JavaScript
11 lines
266 B
JavaScript
import { FluentClient } from '@fluent-org/logger';
|
|
const logger = new FluentClient(process.env.FLUENT_TAG_PREFIX, {
|
|
socket: {
|
|
host: process.env.FLUENTD_HOST,
|
|
port: process.env.FLUENTD_PORT,
|
|
|
|
timeout: 3000, // 3 seconds
|
|
},
|
|
});
|
|
|
|
export default logger;
|