Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
Domain Data Mgmt Services
Seismic
Seismic DMS Suite
seismic-dms-service
Commits
6b18d6d1
Commit
6b18d6d1
authored
Sep 06, 2021
by
Sacha Brants
Browse files
Merge branch 'slb/vm/ignoretraceurl' into 'master'
chore: ignore svcstatus path for Google Cloud traces See merge request
!188
parents
1434ea35
f42d935d
Pipeline
#63808
passed with stages
in 6 minutes and 6 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
NOTICE
View file @
6b18d6d1
...
...
@@ -48,7 +48,7 @@ The following software have components provided under the terms of this license:
- aws-sign2 (from https://www.npmjs.com/package/aws-sign2)
- boto3 (from https://github.com/boto/boto3)
- botocore (from https://github.com/boto/botocore)
- browser-request (from http://
github.com/iriscouch
/browser-request)
- browser-request (from http
s
://
www.npmjs.com/package
/browser-request)
- caseless (from https://www.npmjs.com/package/caseless)
- cloudant-follow (from https://www.npmjs.com/package/cloudant-follow)
- cluster-key-slot (from https://www.npmjs.com/package/cluster-key-slot)
...
...
@@ -135,7 +135,7 @@ The following software have components provided under the terms of this license:
- qs (from https://www.npmjs.com/package/qs)
- qs (from https://www.npmjs.com/package/qs)
- rc (from https://www.npmjs.com/package/rc)
- shimmer (from https://
github.com/othiym23
/shimmer
#readme
)
- shimmer (from https://
www.npmjs.com/package
/shimmer)
- source-map (from https://www.npmjs.com/package/source-map)
- sprintf-js (from https://github.com/alexei/sprintf.js#readme)
- tough-cookie (from https://www.npmjs.com/package/tough-cookie)
...
...
@@ -193,7 +193,7 @@ The following software have components provided under the terms of this license:
- tough-cookie (from https://www.npmjs.com/package/tough-cookie)
- tslib (from https://www.npmjs.com/package/tslib)
- uri-js (from https://www.npmjs.com/package/uri-js)
- url-template (from https://
github.com/bramstein
/url-template)
- url-template (from https://
www.npmjs.com/package
/url-template)
- uuid (from https://www.npmjs.com/package/uuid)
- uuid (from https://www.npmjs.com/package/uuid)
- uuid (from https://www.npmjs.com/package/uuid)
...
...
@@ -431,7 +431,7 @@ The following software have components provided under the terms of this license:
- body-parser (from https://www.npmjs.com/package/body-parser)
- botocore (from https://github.com/boto/botocore)
- brace-expansion (from https://www.npmjs.com/package/brace-expansion)
- browser-request (from http://
github.com/iriscouch
/browser-request)
- browser-request (from http
s
://
www.npmjs.com/package
/browser-request)
- buffer (from https://www.npmjs.com/package/buffer)
- buffer (from https://www.npmjs.com/package/buffer)
- buffer-from (from https://www.npmjs.com/package/buffer-from)
...
...
src/cloud/providers/google/trace.ts
View file @
6b18d6d1
...
...
@@ -14,10 +14,10 @@
// limitations under the License.
// ============================================================================
import
*
as
tracer
from
'
@google-cloud/trace-agent
'
;
import
{
AbstractTrace
,
TraceFactory
}
from
'
../../trace
'
;
import
{
ConfigGoogle
}
from
'
./config
'
;
import
*
as
tracer
from
'
@google-cloud/trace-agent
'
;
@
TraceFactory
.
register
(
'
google
'
)
export
class
GoogleTrace
extends
AbstractTrace
{
...
...
@@ -26,6 +26,7 @@ export class GoogleTrace extends AbstractTrace {
tracer
.
start
({
keyFilename
:
ConfigGoogle
.
SERVICE_IDENTITY_KEY_FILENAME
,
projectId
:
ConfigGoogle
.
SERVICE_CLOUD_PROJECT
,
ignoreUrls
:
[
ConfigGoogle
.
API_BASE_PATH
+
'
/svcstatus
'
]
});
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment