Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit 57cd17a

Browse files
committed
Updated foxx-tracer dependency.
1 parent 0e61587 commit 57cd17a

File tree

6 files changed

+32
-15
lines changed

6 files changed

+32
-15
lines changed

lib/handlers/spanHandlers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const recordSpans = require('../operations/span')
44
const { validate, checkValidation } = require('../routes/helpers')
5-
const { utils: { spanReqSchema } } = require('@recallgraph/foxx-tracer')
5+
const { schemas: { spanReqSchema } } = require('@recallgraph/foxx-tracer')
66

77
const providerSchemas = [spanReqSchema]
88

lib/operations/span/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const { REFERENCE_CHILD_OF } = require('opentracing')
4-
const { FoxxSpan: { generateUUID } } = require('@recallgraph/foxx-tracer')
4+
const { utils: { generateUUID } } = require('@recallgraph/foxx-tracer')
55
const { time } = require('@arangodb')
66

77
exports.getSpanObj = function (spanData) {

lib/routes/record/span.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const { record } = require('../../handlers/spanHandlers')
4-
const { utils: { spanReqSchema } } = require('@recallgraph/foxx-tracer')
4+
const { schemas: { spanReqSchema } } = require('@recallgraph/foxx-tracer')
55

66
module.exports = router => {
77
router

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"configuration": {
2626
"reporters": {
2727
"description": "The namespaced reporters to use. Use comma-separated list for multiple reporters. Valid values are `noop`, and the keys in `reporters.json`.",
28-
"default": "noop",
28+
"default": "console",
2929
"type": "string",
3030
"required": false
3131
},

package-lock.json

Lines changed: 25 additions & 8 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": "foxx-tracer-collector",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "A collector service for foxx-tracer",
55
"repository": {
66
"type": "git",
@@ -16,8 +16,8 @@
1616
"author": "Aditya Mukhopadhyay",
1717
"license": "MIT",
1818
"dependencies": {
19-
"@recallgraph/foxx-tracer": "^2.0.11",
20-
"@recallgraph/foxx-tracer-reporter-console": "^5.0.0",
19+
"@recallgraph/foxx-tracer": "^3.1.1",
20+
"@recallgraph/foxx-tracer-reporter-console": "^5.0.1",
2121
"opentracing": "^0.14.4"
2222
},
2323
"devDependencies": {

0 commit comments

Comments
 (0)