-
Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(NODE-5169): Implement emergency logger #3610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 42 commits
a8d42ad
6b053d9
e0b1db2
d2ff692
a52b1ae
16fee3f
b88003e
06a1bf0
3501a35
bf591b9
36e2e32
80fbecd
da4f89c
3c76aeb
a39965f
8bf2176
97c8eba
bcd88a8
d4b6300
ac7223c
f46ab9b
c7d8f8d
993058f
124702e
0d91ccd
0fe2d2b
6ff5413
0a5b9cd
bdde7cf
f11f9d2
e70de2a
3c742d6
4db07e6
896a010
af2d8ed
3e262c0
18ed1e8
666221b
b76ba6d
4db4913
be04325
2299478
57a643c
c456ce9
f258901
442557b
dd66ea3
369216d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,16 +23,27 @@ export const SERVER_DESCRIPTION_CHANGED = 'serverDescriptionChanged' as const; | |
export const TOPOLOGY_OPENING = 'topologyOpening' as const; | ||
export const TOPOLOGY_CLOSED = 'topologyClosed' as const; | ||
export const TOPOLOGY_DESCRIPTION_CHANGED = 'topologyDescriptionChanged' as const; | ||
/** @public */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we do we need to export our constants? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was done since the the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well one option is to make the |
||
export const CONNECTION_POOL_CREATED = 'connectionPoolCreated' as const; | ||
/** @public */ | ||
export const CONNECTION_POOL_CLOSED = 'connectionPoolClosed' as const; | ||
/** @public */ | ||
export const CONNECTION_POOL_CLEARED = 'connectionPoolCleared' as const; | ||
/** @public */ | ||
export const CONNECTION_POOL_READY = 'connectionPoolReady' as const; | ||
/** @public */ | ||
export const CONNECTION_CREATED = 'connectionCreated' as const; | ||
/** @public */ | ||
export const CONNECTION_READY = 'connectionReady' as const; | ||
/** @public */ | ||
export const CONNECTION_CLOSED = 'connectionClosed' as const; | ||
/** @public */ | ||
export const CONNECTION_CHECK_OUT_STARTED = 'connectionCheckOutStarted' as const; | ||
/** @public */ | ||
export const CONNECTION_CHECK_OUT_FAILED = 'connectionCheckOutFailed' as const; | ||
/** @public */ | ||
export const CONNECTION_CHECKED_OUT = 'connectionCheckedOut' as const; | ||
/** @public */ | ||
export const CONNECTION_CHECKED_IN = 'connectionCheckedIn' as const; | ||
export const CLUSTER_TIME_RECEIVED = 'clusterTimeReceived' as const; | ||
export const COMMAND_STARTED = 'commandStarted' as const; | ||
|
Uh oh!
There was an error while loading. Please reload this page.