@saidsef/tracing-node 1.8.17 → 1.8.19

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.
@@ -0,0 +1,34 @@
1
+ apiVersion: v1
2
+ kind: Pod
3
+ metadata:
4
+ name: tracing-node
5
+ labels:
6
+ app.kubernetes.io/name: tracing-node
7
+ spec:
8
+ activeDeadlineSeconds: 120
9
+ automountServiceAccountToken: false
10
+ enableServiceLinks: false
11
+ restartPolicy: Never
12
+ preemptionPolicy: PreemptLowerPriority
13
+ containers:
14
+ - name: tracing-node
15
+ image: docker.io/node:20-alpine3.19
16
+ workingDir: "/app"
17
+ command:
18
+ - /bin/sh
19
+ args:
20
+ - -c
21
+ - "npm install && node libs/index.js"
22
+ resources:
23
+ limits:
24
+ memory: "1Gi"
25
+ cpu: "500m"
26
+ volumeMounts:
27
+ - name: git
28
+ mountPath: /app
29
+ volumes:
30
+ - name: git
31
+ gitRepo:
32
+ directory: "."
33
+ repository: "https://github.com/saidsef/tracing-node.git"
34
+ revision: "dependabot-npm_and_yarn-opentelemetry-instrumentation-express-0.34.0"
@@ -0,0 +1,5 @@
1
+ apiVersion: kustomize.config.k8s.io/v1beta1
2
+ kind: Kustomization
3
+
4
+ resources:
5
+ - job.yml
@@ -0,0 +1,5 @@
1
+ apiVersion: kustomize.config.k8s.io/v1beta1
2
+ kind: Kustomization
3
+
4
+ resources:
5
+ - base/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saidsef/tracing-node",
3
- "version": "1.8.17",
3
+ "version": "1.8.19",
4
4
  "description": "tracing NodeJS - This is a wrapper for OpenTelemetry instrumentation packages",
5
5
  "main": "libs/index.js",
6
6
  "scripts": {
@@ -39,7 +39,7 @@
39
39
  "@opentelemetry/instrumentation": "^0.45.1",
40
40
  "@opentelemetry/instrumentation-aws-sdk": "^0.37.0",
41
41
  "@opentelemetry/instrumentation-dns": "^0.32.2",
42
- "@opentelemetry/instrumentation-express": "^0.33.1",
42
+ "@opentelemetry/instrumentation-express": "^0.34.0",
43
43
  "@opentelemetry/instrumentation-http": "^0.45.1",
44
44
  "@opentelemetry/instrumentation-pino": "^0.34.1",
45
45
  "@opentelemetry/propagator-b3": "^1.17.0",
@@ -49,6 +49,6 @@
49
49
  "@opentelemetry/semantic-conventions": "^1.17.0"
50
50
  },
51
51
  "devDependencies": {
52
- "eslint": "8.53.0"
52
+ "eslint": "8.55.0"
53
53
  }
54
54
  }