-
Notifications
You must be signed in to change notification settings - Fork 804
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
100 additions
and
1 deletion.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
packages/opentelemetry-resources/src/detectors/HostDetector.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,53 @@ | ||
/* | ||
* 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 { Resource } from '../Resource'; | ||
import { Detector, ResourceAttributes } from '../types'; | ||
import { ResourceDetectionConfig } from '../config'; | ||
import { arch, hostname } from 'os'; | ||
|
||
/** | ||
* HostDetector detects the resources related to the host current process is | ||
* running on. Currently only non-cloud-based attributes are included. | ||
*/ | ||
class HostDetector implements Detector { | ||
async detect(config?: ResourceDetectionConfig): Promise<Resource> { | ||
const attributes: ResourceAttributes = { | ||
[SemanticResourceAttributes.HOST_NAME]: hostname(), | ||
[SemanticResourceAttributes.HOST_ARCH]: this._normalizeArch(arch()), | ||
}; | ||
return new Resource(attributes); | ||
} | ||
|
||
private _normalizeArch(nodeArchString: string): string { | ||
// Maps from https://nodejs.org/api/os.html#osarch to arch values in spec: | ||
// https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/resource/semantic_conventions/host.md | ||
switch (nodeArchString) { | ||
case 'arm': | ||
return 'arm32'; | ||
case 'ppc': | ||
return 'ppc32'; | ||
case 'x64': | ||
return 'amd64'; | ||
default: | ||
return nodeArchString; | ||
} | ||
} | ||
} | ||
|
||
export const hostDetector = new HostDetector(); |
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
45 changes: 45 additions & 0 deletions
45
packages/opentelemetry-resources/test/detectors/node/HostDetector.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,45 @@ | ||
/* | ||
* 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 * as assert from 'assert'; | ||
import { SemanticResourceAttributes } from '@opentelemetry/semantic-conventions'; | ||
import { describeNode } from '../../util'; | ||
import { hostDetector, Resource } from '../../../src'; | ||
|
||
describeNode('hostDetector() on Node.js', () => { | ||
afterEach(() => { | ||
sinon.restore(); | ||
}); | ||
|
||
it('should return resource information from process', async () => { | ||
const os = require('os'); | ||
|
||
sinon.stub(os, 'arch').returns('x64'); | ||
sinon.stub(os, 'hostname').returns('opentelemetry-test'); | ||
|
||
const resource: Resource = await hostDetector.detect(); | ||
|
||
assert.strictEqual( | ||
resource.attributes[SemanticResourceAttributes.HOST_NAME], | ||
'opentelemetry-test' | ||
); | ||
assert.strictEqual( | ||
resource.attributes[SemanticResourceAttributes.HOST_ARCH], | ||
'amd64' | ||
); | ||
}); | ||
}); |