Skip to content

Commit f1ffa21

Browse files
authored
Update buffer size (#115)
* Update Buffer Size * Update Package Version
1 parent ffce9db commit f1ffa21

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nflx-spectator",
3-
"version": "3.1.0-rc.2",
3+
"version": "3.1.0-rc.3",
44
"license": "Apache-2.0",
55
"homepage": "https://github.com/Netflix/spectator-js",
66
"author": "Netflix Telemetry Engineering <netflix-atlas@googlegroups.com>",

src/writer/udp_writer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {createSocket, Socket} from "node:dgram";
44
import {isIPv6} from "node:net";
55

66
const RESOLVED = Promise.resolve();
7-
const DEFAULT_MAX_BUFFER_BYTES = 8192;
7+
const DEFAULT_MAX_BUFFER_BYTES = 32768;
88
const DEFAULT_FLUSH_INTERVAL_MS = 15000;
99

1010
/**

0 commit comments

Comments
 (0)