Skip to content

Commit fef1b36

Browse files
authored
fix(instrumentaiton-runtime-node)!: rename exported instrumentation to match package name (open-telemetry#1989)
* fix(instrumentaiton-runtime-node): rename exported instrumentation * fix: lint
1 parent 2e9fce4 commit fef1b36

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

plugins/node/instrumentation-runtime-node/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ npm install --save @opentelemetry/instrumentation-runtime-node
1616
```js
1717
import { NodeSDK } from '@opentelemetry/sdk-node';
1818
import { PrometheusExporter } from '@opentelemetry/exporter-prometheus';
19-
import { PerfHooksInstrumentation } from '@opentelemetry/instrumentation-runtime-node';
19+
import { RuntimeNodeInstrumentation } from '@opentelemetry/instrumentation-runtime-node';
2020

2121
const prometheusExporter = new PrometheusExporter({
2222
port: 9464,
@@ -25,7 +25,7 @@ const prometheusExporter = new PrometheusExporter({
2525

2626
const sdk = new NodeSDK({
2727
metricReader: prometheusExporter,
28-
instrumentations: [new PerfHooksInstrumentation({
28+
instrumentations: [new RuntimeNodeInstrumentation({
2929
eventLoopUtilizationMeasurementInterval: 5000,
3030
})],
3131
});
@@ -44,15 +44,15 @@ Go to [`localhost:9464/metrics`](http://localhost:9464/metrics), and you should
4444
nodejs_performance_event_loop_utilization 0.010140079547955264
4545
```
4646

47-
> Metrics will only be exported after it has collected two ELU readings (at least approximately `PerfHooksInstrumentationConfig.eventLoopUtilizationMeasurementInterval` milliseconds after initialization). Otherwise, you may see:
47+
> Metrics will only be exported after it has collected two ELU readings (at least approximately `RuntimeNodeInstrumentationConfig.eventLoopUtilizationMeasurementInterval` milliseconds after initialization). Otherwise, you may see:
4848
>
4949
> ```txt
5050
> # no registered metrics
5151
> ```
5252
5353
### Options
5454
55-
`PerfHooksInstrumentation`'s constructor accepts the following options:
55+
`RuntimeNodeInstrumentation`'s constructor accepts the following options:
5656
5757
| name | type | unit | default | description |
5858
|---|---|---|---|---|

plugins/node/instrumentation-runtime-node/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
export * from './instrumentation';
17-
export * from './types';
16+
export { RuntimeNodeInstrumentation } from './instrumentation';
17+
export { RuntimeNodeInstrumentationConfig } from './types';

plugins/node/instrumentation-runtime-node/src/instrumentation.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ const { eventLoopUtilization } = performance;
2020
import { InstrumentationBase } from '@opentelemetry/instrumentation';
2121

2222
import { VERSION } from './version';
23-
import { PerfHooksInstrumentationConfig } from './types';
23+
import { RuntimeNodeInstrumentationConfig } from './types';
2424

2525
const ELUS_LENGTH = 2;
26-
const DEFAULT_CONFIG: PerfHooksInstrumentationConfig = {
26+
const DEFAULT_CONFIG: RuntimeNodeInstrumentationConfig = {
2727
eventLoopUtilizationMeasurementInterval: 5000,
2828
};
2929

30-
export class PerfHooksInstrumentation extends InstrumentationBase {
30+
export class RuntimeNodeInstrumentation extends InstrumentationBase {
3131
private _ELUs: EventLoopUtilization[] = [];
3232
private _interval: NodeJS.Timeout | undefined;
3333

34-
constructor(config: PerfHooksInstrumentationConfig = DEFAULT_CONFIG) {
34+
constructor(config: RuntimeNodeInstrumentationConfig = DEFAULT_CONFIG) {
3535
super('@opentelemetry/instrumentation-runtime-node', VERSION, config);
3636
}
3737

@@ -76,7 +76,7 @@ export class PerfHooksInstrumentation extends InstrumentationBase {
7676
clearInterval(this._interval);
7777
this._interval = setInterval(
7878
() => this._addELU(),
79-
(this._config as PerfHooksInstrumentationConfig)
79+
(this._config as RuntimeNodeInstrumentationConfig)
8080
.eventLoopUtilizationMeasurementInterval
8181
);
8282
}

plugins/node/instrumentation-runtime-node/src/types.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
*/
1616
import type { InstrumentationConfig } from '@opentelemetry/instrumentation';
1717

18-
export interface PerfHooksInstrumentationConfig extends InstrumentationConfig {
18+
export interface RuntimeNodeInstrumentationConfig
19+
extends InstrumentationConfig {
1920
/**
2021
* The approximate number of milliseconds for which to calculate event loop utilization averages.
2122
* A larger value will result in more accurate averages at the expense of less granular data.

plugins/node/instrumentation-runtime-node/test/event_loop_utilization.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
PeriodicExportingMetricReader,
2222
} from '@opentelemetry/sdk-metrics';
2323

24-
import { PerfHooksInstrumentation } from '../src';
24+
import { RuntimeNodeInstrumentation } from '../src';
2525
import * as assert from 'assert';
2626

2727
const MEASUREMENT_INTERVAL = 10;
@@ -34,7 +34,7 @@ const metricReader = new PeriodicExportingMetricReader({
3434
const meterProvider = new MeterProvider();
3535
meterProvider.addMetricReader(metricReader);
3636

37-
const instrumentation = new PerfHooksInstrumentation({
37+
const instrumentation = new RuntimeNodeInstrumentation({
3838
eventLoopUtilizationMeasurementInterval: MEASUREMENT_INTERVAL,
3939
});
4040

@@ -69,7 +69,7 @@ describe('nodejs.event_loop.utilization', () => {
6969

7070
it('can use default eventLoopUtilizationMeasurementInterval', async () => {
7171
// Repeat of 'should not export immediately after enable' but with defaults
72-
const localInstrumentation = new PerfHooksInstrumentation();
72+
const localInstrumentation = new RuntimeNodeInstrumentation();
7373
localInstrumentation.setMeterProvider(meterProvider);
7474
localInstrumentation.disable();
7575
metricExporter.reset();

0 commit comments

Comments
 (0)