()
| 73 | * @returns A unique ID string combining timestamp, process ID, and thread ID |
| 74 | */ |
| 75 | export function getUniqueProcessThreadId(): string { |
| 76 | return `${getUniqueTimeId()}-${process.pid}-${threadId}`; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Generates a unique instance ID based on performance time origin, process ID, thread ID, and instance count. |
no test coverage detected