@golemio/core 1.20.13 → 1.20.14-dev.1964887944

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,6 +15,6 @@ const httpCustomAttributes = (span, request, response) => {
15
15
  const routeBlacklist = ["/live", "/ready", "health-check", "/status"];
16
16
  exports.httpConfig = {
17
17
  applyCustomAttributesOnSpan: (0, helpers_1.withRecordingSpan)(httpCustomAttributes),
18
- ignoreIncomingPaths: [(url) => routeBlacklist.some((el) => url.endsWith(el))],
18
+ ignoreIncomingRequestHook: (req) => routeBlacklist.some((el) => req.url?.endsWith(el)),
19
19
  };
20
20
  //# sourceMappingURL=http.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"http.js","sourceRoot":"","sources":["../../../../../src/monitoring/opentelemetry/instrumentation/configs/http.ts"],"names":[],"mappings":";;;AAAA,+BAAsE;AAGtE,wCAA+C;AAC/C,gEAA+D;AAE/D,MAAM,oBAAoB,GAAgC,CACtD,IAAU,EACV,OAAwC,EACxC,QAA0C,EACtC,EAAE;IACN,IAAI,OAAO,YAAY,oBAAa,EAAE;QAClC,IAAI,CAAC,YAAY,CAAC,2CAAqB,CAAC,oBAAoB,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;KACvG;IACD,IAAI,QAAQ,YAAY,sBAAe,EAAE;QACrC,IAAI,CAAC,YAAY,CAAC,2CAAqB,CAAC,qBAAqB,EAAE,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;KACpG;AACL,CAAC,CAAC;AAEF,MAAM,cAAc,GAAG,CAAC,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAE,SAAS,CAAC,CAAC;AAEzD,QAAA,UAAU,GAA8B;IACjD,2BAA2B,EAAE,IAAA,2BAAiB,EAAC,oBAAoB,CAAC;IACpE,mBAAmB,EAAE,CAAC,CAAC,GAAW,EAAE,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC;CACxF,CAAC"}
1
+ {"version":3,"file":"http.js","sourceRoot":"","sources":["../../../../../src/monitoring/opentelemetry/instrumentation/configs/http.ts"],"names":[],"mappings":";;;AAAA,+BAAsE;AAGtE,wCAA+C;AAC/C,gEAA+D;AAE/D,MAAM,oBAAoB,GAAgC,CACtD,IAAU,EACV,OAAwC,EACxC,QAA0C,EACtC,EAAE;IACN,IAAI,OAAO,YAAY,oBAAa,EAAE;QAClC,IAAI,CAAC,YAAY,CAAC,2CAAqB,CAAC,oBAAoB,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;KACvG;IACD,IAAI,QAAQ,YAAY,sBAAe,EAAE;QACrC,IAAI,CAAC,YAAY,CAAC,2CAAqB,CAAC,qBAAqB,EAAE,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;KACpG;AACL,CAAC,CAAC;AAEF,MAAM,cAAc,GAAG,CAAC,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAE,SAAS,CAAC,CAAC;AAEzD,QAAA,UAAU,GAA8B;IACjD,2BAA2B,EAAE,IAAA,2BAAiB,EAAC,oBAAoB,CAAC;IACpE,yBAAyB,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,EAAE,QAAQ,CAAC,EAAE,CAAC,CAAC;CACzF,CAAC"}
@@ -3,12 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.createChildSpan = exports.initTraceProvider = exports.JaegerProcessorType = void 0;
4
4
  const instrumentation_1 = require("@opentelemetry/instrumentation");
5
5
  const sdk_trace_node_1 = require("@opentelemetry/sdk-trace-node");
6
- const resources_1 = require("@opentelemetry/resources");
7
6
  const semantic_conventions_1 = require("@opentelemetry/semantic-conventions");
8
7
  const sdk_trace_base_1 = require("@opentelemetry/sdk-trace-base");
9
8
  const exporter_jaeger_1 = require("@opentelemetry/exporter-jaeger");
10
9
  const api_1 = require("@opentelemetry/api");
11
10
  const instrumentation_2 = require("./instrumentation");
11
+ const resources_1 = require("@opentelemetry/resources");
12
12
  var JaegerProcessorType;
13
13
  (function (JaegerProcessorType) {
14
14
  JaegerProcessorType["CONSOLE"] = "CONSOLE";
@@ -30,6 +30,7 @@ const getTelemetryConfig = () => {
30
30
  };
31
31
  const initTraceProvider = () => {
32
32
  const config = getTelemetryConfig();
33
+ const spanProcessors = [];
33
34
  api_1.diag.setLogger(new api_1.DiagConsoleLogger(), config.diagLogLevel);
34
35
  if (!config.jaegerEnabled) {
35
36
  api_1.diag.info(`Telemetry disabled (service: ${config.jaegerServiceName})`);
@@ -38,14 +39,8 @@ const initTraceProvider = () => {
38
39
  else {
39
40
  api_1.diag.info(`Telemetry enabled (service: ${config.jaegerServiceName})`);
40
41
  }
41
- const provider = new sdk_trace_node_1.NodeTracerProvider({
42
- resource: new resources_1.Resource({
43
- [semantic_conventions_1.SemanticResourceAttributes.SERVICE_NAME]: process.env.APP_NAME,
44
- ...(process.env.NODE_ENV && { [semantic_conventions_1.SemanticResourceAttributes.DEPLOYMENT_ENVIRONMENT]: process.env.NODE_ENV }),
45
- }),
46
- });
47
42
  if (config.jaegerProcessor === JaegerProcessorType.CONSOLE || config.jaegerProcessor === JaegerProcessorType.BOTH) {
48
- provider.addSpanProcessor(new sdk_trace_base_1.SimpleSpanProcessor(new sdk_trace_base_1.ConsoleSpanExporter()));
43
+ spanProcessors.push(new sdk_trace_base_1.SimpleSpanProcessor(new sdk_trace_base_1.ConsoleSpanExporter()));
49
44
  }
50
45
  if (config.jaegerProcessor === JaegerProcessorType.EXPORTER || config.jaegerProcessor === JaegerProcessorType.BOTH) {
51
46
  const options = config.jaegerEndpoint
@@ -54,8 +49,16 @@ const initTraceProvider = () => {
54
49
  ...(config.jaegerHost && { host: config.jaegerHost }),
55
50
  ...(config.jaegerPort && { port: config.jaegerPort }),
56
51
  };
57
- provider.addSpanProcessor(new sdk_trace_base_1.BatchSpanProcessor(new exporter_jaeger_1.JaegerExporter(options)));
52
+ const spanExporter = new exporter_jaeger_1.JaegerExporter(options);
53
+ spanProcessors.push(new sdk_trace_base_1.BatchSpanProcessor(spanExporter));
58
54
  }
55
+ const provider = new sdk_trace_node_1.NodeTracerProvider({
56
+ resource: (0, resources_1.resourceFromAttributes)({
57
+ [semantic_conventions_1.SemanticResourceAttributes.SERVICE_NAME]: process.env.APP_NAME,
58
+ ...(process.env.NODE_ENV && { [semantic_conventions_1.SemanticResourceAttributes.DEPLOYMENT_ENVIRONMENT]: process.env.NODE_ENV }),
59
+ }),
60
+ spanProcessors,
61
+ });
59
62
  provider.register();
60
63
  (0, instrumentation_1.registerInstrumentations)({
61
64
  tracerProvider: provider,
@@ -1 +1 @@
1
- {"version":3,"file":"trace-provider.js","sourceRoot":"","sources":["../../../src/monitoring/opentelemetry/trace-provider.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"trace-provider.js","sourceRoot":"","sources":["../../../src/monitoring/opentelemetry/trace-provider.ts"],"names":[],"mappings":"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"}
@@ -8,7 +8,7 @@ import { NextFunction, Request, Response } from "express";
8
8
  * @throws Error if request contains validation errors
9
9
  * @returns Void, calls next() function
10
10
  */
11
- export declare const checkErrors: ((import("express-validator/src/base").Middleware & import("express-validator").ContextRunner) | ((req: Request, res: Response, next: NextFunction) => void))[];
11
+ export declare const checkErrors: ((import("express-validator/lib/base").Middleware & import("express-validator").ContextRunner) | ((req: Request, res: Response, next: NextFunction) => void))[];
12
12
  /**
13
13
  * Sets up pagination query parameters
14
14
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golemio/core",
3
- "version": "1.20.13",
3
+ "version": "1.20.14-dev.1964887944",
4
4
  "description": "Golemio Core Module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -31,7 +31,7 @@
31
31
  "@commitlint/cli": "^19.3.0",
32
32
  "@commitlint/config-conventional": "^16.2.1",
33
33
  "@golemio/eslint-config": "1.1.2",
34
- "@types/amqplib": "^0.5.17",
34
+ "@types/amqplib": "^0.10.7",
35
35
  "@types/chai": "4.2.3",
36
36
  "@types/chai-as-promised": "7.1.2",
37
37
  "@types/content-type": "^1.1.3",
@@ -40,7 +40,7 @@
40
40
  "@types/node": "^22.15.29",
41
41
  "@types/sinon": "^17.0.2",
42
42
  "@types/ssh2-sftp-client": "^5.3.1",
43
- "@types/supertest": "^2.0.11",
43
+ "@types/supertest": "^6.0.3",
44
44
  "@types/uuid": "^8.3.4",
45
45
  "@types/xml2js": "^0.4.11",
46
46
  "@types/yauzl": "^2.10.0",
@@ -58,7 +58,7 @@
58
58
  "rimraf": "^3.0.2",
59
59
  "sinon": "^17.0.2",
60
60
  "source-map-support": "0.5.21",
61
- "supertest": "^6.1.6",
61
+ "supertest": "^6.3.3",
62
62
  "ts-node": "^10.9.1",
63
63
  "ts-patch": "3.0.0-beta3",
64
64
  "tsconfig-paths": "^4.2.0",
@@ -73,23 +73,23 @@
73
73
  "@azure/storage-blob": "^12.26.0",
74
74
  "@golemio/errors": "2.0.6",
75
75
  "@golemio/validator": "0.3.5",
76
- "@google-cloud/storage": "^7.11.0",
77
- "@opentelemetry/api": "^1.0.4",
78
- "@opentelemetry/exporter-jaeger": "^1.14.0",
79
- "@opentelemetry/instrumentation-amqplib": "^0.28.0",
80
- "@opentelemetry/instrumentation-aws-sdk": "^0.6.0",
81
- "@opentelemetry/instrumentation-express": "^0.28.0",
82
- "@opentelemetry/instrumentation-http": "^0.27.0",
83
- "@opentelemetry/instrumentation-ioredis": "^0.28.0",
84
- "@opentelemetry/resources": "^1.14.0",
85
- "@opentelemetry/sdk-trace-base": "^1.14.0",
86
- "@opentelemetry/sdk-trace-node": "^1.14.0",
76
+ "@google-cloud/storage": "^7.16.0",
77
+ "@opentelemetry/api": "^1.9.0",
78
+ "@opentelemetry/exporter-jaeger": "^2.0.1",
79
+ "@opentelemetry/instrumentation-amqplib": "^0.50.0",
80
+ "@opentelemetry/instrumentation-aws-sdk": "^0.56.0",
81
+ "@opentelemetry/instrumentation-express": "^0.52.0",
82
+ "@opentelemetry/instrumentation-http": "^0.203.0",
83
+ "@opentelemetry/instrumentation-ioredis": "^0.51.0",
84
+ "@opentelemetry/resources": "^2.0.1",
85
+ "@opentelemetry/sdk-trace-base": "^2.0.1",
86
+ "@opentelemetry/sdk-trace-node": "^2.0.1",
87
87
  "@types/express": "^4.17.21",
88
88
  "@types/geojson": "^7946.0.10",
89
89
  "@types/luxon": "^2.3.1",
90
90
  "@types/qs": "^6.9.18",
91
91
  "ajv": "^8.10.0",
92
- "amqplib": "^0.7.1",
92
+ "amqplib": "^0.10.8",
93
93
  "apicache-plus": "^2.3.1",
94
94
  "basic-ftp": "^5.0.2",
95
95
  "class-transformer": "^0.5.1",
@@ -100,7 +100,6 @@
100
100
  "express": "^4.21.2",
101
101
  "express-validator": "^7.0.1",
102
102
  "fast-csv": "^4.3.6",
103
- "fast-glob": "^3.2.5",
104
103
  "geojson": "^0.5.0",
105
104
  "html-entities": "^2.4.0",
106
105
  "iconv-lite": "^0.6.2",
@@ -108,7 +107,7 @@
108
107
  "lightship": "^6.7.2",
109
108
  "luxon": "^2.5.2",
110
109
  "moment-timezone": "^0.5.26",
111
- "opentelemetry-instrumentation-sequelize": "^0.27.1",
110
+ "opentelemetry-instrumentation-sequelize": "^0.41.0",
112
111
  "path-to-regexp": "^8.1.0",
113
112
  "pg": "^8.6.0",
114
113
  "pino": "^8.17.2",
@@ -130,4 +129,4 @@
130
129
  "dottie": "2.0.4",
131
130
  "braces": "3.0.3"
132
131
  }
133
- }
132
+ }