@@ -19,23 +19,28 @@ import * as assert from 'assert';
1919const { ReadableSpan} = require ( '@opentelemetry/sdk-trace-base' ) ;
2020import { SEMATTRS_DB_NAME } from '@opentelemetry/semantic-conventions' ;
2121
22+ export const createSessionEvents = [
23+ 'Requesting a multiplexed session' ,
24+ 'Created a multiplexed session' ,
25+ ] ;
26+
2227export const batchCreateSessionsEvents = [
2328 'Requesting 25 sessions' ,
2429 'Creating 25 sessions' ,
2530 'Requested for 25 sessions returned 25' ,
2631] ;
2732
2833export const waitingSessionsEvents = [
29- 'Acquiring session' ,
30- 'Waiting for a session to become available' ,
31- 'Acquired session' ,
34+ 'Acquiring multiplexed session' ,
35+ 'Waiting for a multiplexed session to become available' ,
36+ 'Acquired multiplexed session' ,
3237 'Using Session' ,
3338] ;
3439
3540export const cacheSessionEvents = [
36- 'Acquiring session' ,
37- 'Cache hit: has usable session' ,
38- 'Acquired session' ,
41+ 'Acquiring multiplexed session' ,
42+ 'Cache hit: has usable multiplexed session' ,
43+ 'Acquired multiplexed session' ,
3944] ;
4045
4146/**
0 commit comments