-
Notifications
You must be signed in to change notification settings - Fork 805
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(opentelemetry-resources): add runtime version information (#2727)
- Loading branch information
Showing
9 changed files
with
215 additions
and
12 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
packages/opentelemetry-resources/src/detectors/BrowserDetector.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import { diag } from '@opentelemetry/api'; | ||
import { SemanticResourceAttributes } from '@opentelemetry/semantic-conventions'; | ||
import { Detector, Resource, ResourceDetectionConfig } from '..'; | ||
import { ResourceAttributes } from '../types'; | ||
|
||
/** | ||
* BrowserDetector will be used to detect the resources related to browser. | ||
*/ | ||
class BrowserDetector implements Detector { | ||
async detect(config?: ResourceDetectionConfig): Promise<Resource> { | ||
const isBrowser = typeof window !== 'undefined' && typeof window.document !== 'undefined'; | ||
if (!isBrowser) { | ||
return Resource.empty(); | ||
} | ||
const browserResource: ResourceAttributes = { | ||
[SemanticResourceAttributes.PROCESS_RUNTIME_NAME]: 'browser', | ||
[SemanticResourceAttributes.PROCESS_RUNTIME_DESCRIPTION]: 'Web Browser', | ||
[SemanticResourceAttributes.PROCESS_RUNTIME_VERSION]: window.navigator.userAgent | ||
}; | ||
return this._getResourceAttributes(browserResource, config); | ||
} | ||
/** | ||
* Validates process resource attribute map from process variables | ||
* | ||
* @param browserResource The un-sanitized resource attributes from process as key/value pairs. | ||
* @param config: Config | ||
* @returns The sanitized resource attributes. | ||
*/ | ||
private _getResourceAttributes( | ||
browserResource: ResourceAttributes, | ||
_config?: ResourceDetectionConfig | ||
) { | ||
if ( | ||
browserResource[SemanticResourceAttributes.PROCESS_RUNTIME_VERSION] === '' | ||
) { | ||
diag.debug( | ||
'BrowserDetector failed: Unable to find required browser resources. ' | ||
); | ||
return Resource.empty(); | ||
} else { | ||
return new Resource({ | ||
...browserResource, | ||
}); | ||
} | ||
} | ||
} | ||
|
||
|
||
export const browserDetector = new BrowserDetector(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ | |
|
||
export * from './EnvDetector'; | ||
export * from './ProcessDetector'; | ||
export * from './BrowserDetector'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
packages/opentelemetry-resources/test/detectors/browser/BrowserDetector.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
import * as sinon from 'sinon'; | ||
import { Resource } from '../../../src'; | ||
import { browserDetector } from '../../../src/detectors/BrowserDetector'; | ||
import { describeBrowser } from '../../util'; | ||
import { | ||
assertResource, | ||
assertEmptyResource, | ||
} from '../../util/resource-assertions'; | ||
|
||
|
||
describeBrowser('browserDetector()', () => { | ||
|
||
afterEach(() => { | ||
sinon.restore(); | ||
}); | ||
|
||
it('should return browser information', async () => { | ||
sinon.stub(window, 'navigator').value({ | ||
userAgent: 'dddd', | ||
}); | ||
|
||
const resource: Resource = await browserDetector.detect(); | ||
assertResource(resource, { | ||
version: 'dddd', | ||
runtimeDescription: 'Web Browser', | ||
runtimeName: 'browser', | ||
}); | ||
}); | ||
it('should return empty resources if version is missing', async () => { | ||
sinon.stub(window, 'navigator').value({ | ||
userAgent: '', | ||
}); | ||
const resource: Resource = await browserDetector.detect(); | ||
assertEmptyResource(resource); | ||
}); | ||
}); | ||
|
30 changes: 30 additions & 0 deletions
30
packages/opentelemetry-resources/test/detectors/node/BrowserDetector.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
import { Resource } from '../../../src'; | ||
import { browserDetector } from '../../../src/detectors/BrowserDetector'; | ||
import { describeNode } from '../../util'; | ||
import { | ||
assertEmptyResource, | ||
} from '../../util/resource-assertions'; | ||
|
||
|
||
describeNode('browserDetector()', () => { | ||
it('should return empty resources if window.document is missing', async () => { | ||
const resource: Resource = await browserDetector.detect(); | ||
assertEmptyResource(resource); | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters