Skip to content

Commit 644f6b4

Browse files
committed
Update from fluxninja/aperture
1 parent 717bd7b commit 644f6b4

File tree

3 files changed

+74
-39
lines changed

3 files changed

+74
-39
lines changed

package-lock.json

Lines changed: 66 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fluxninja/aperture-js",
3-
"version": "2.4.4",
3+
"version": "2.4.5",
44
"description": "Flow control SDK that interfaces with FluxNinja Aperture Agents",
55
"main": "./lib/index.js",
66
"scripts": {
@@ -29,8 +29,8 @@
2929
"type": "module",
3030
"types": "@types/index.d.ts",
3131
"dependencies": {
32-
"@grpc/grpc-js": "^1.9.5",
33-
"@grpc/proto-loader": "^0.7.10",
32+
"@grpc/grpc-js": "^1.10.10",
33+
"@grpc/proto-loader": "^0.7.13",
3434
"@opentelemetry/api": "1.6.0",
3535
"@opentelemetry/exporter-trace-otlp-grpc": "0.43.0",
3636
"@opentelemetry/resources": "1.17.0",

sdk/consts.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import { fileURLToPath } from "url";
44
const __filename = fileURLToPath(import.meta.url);
55

66
export const PROTO_PATH = path.resolve(
7-
path.dirname(__filename),
8-
"../proto/flowcontrol/check/v1/check.proto",
7+
path.dirname(__filename),
8+
"../proto/flowcontrol/check/v1/check.proto",
99
);
1010

1111
// The name of the library.
1212
export const LIBRARY_NAME = "@fluxninja/aperture-js";
1313
// The version of the library.
14-
export const LIBRARY_VERSION = "2.4.4";
14+
export const LIBRARY_VERSION = "2.4.5";
1515
// Label to hold source of flow.
1616
export const SOURCE_LABEL = "aperture.source";
1717
// Label to hold status of the flow.
@@ -23,4 +23,5 @@ export const FLOW_START_TIMESTAMP_LABEL = "aperture.flow_start_timestamp_ms";
2323
// Label to hold flow's stop timestamp in Unix nanoseconds since Epoch.
2424
export const FLOW_END_TIMESTAMP_LABEL = "aperture.flow_end_timestamp_ms";
2525
// Label to hold workload start timestamp in Unix nanoseconds since Epoch.
26-
export const WORKLOAD_START_TIMESTAMP_LABEL = "aperture.workload_start_timestamp_ms";
26+
export const WORKLOAD_START_TIMESTAMP_LABEL =
27+
"aperture.workload_start_timestamp_ms";

0 commit comments

Comments
 (0)