| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Will depend on #18046 and shouldn't land until that one does |
Sorry, something went wrong.
emit simple perf_hooks timings for dns operations.
```js
const { PerformanceObserver, performance } = require('perf_hooks');
const obs = new PerformanceObserver((items) => {
const entry = items.getEntries()[0];
console.log(entry.name, entry.duration);
performance.clearDNS();
});
obs.observe({ entryTypes: ['dns'] });
dns.resolveAny('example.org', console.log);
```
Sorry, something went wrong.
|
@jasnell looks like there were some issues with the CI? |
Sorry, something went wrong.
|
Yep, I'll be getting back to this very soon |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
emit simple perf_hooks timings for dns operations.
Checklist
Affected core subsystem(s)
dns, perf_hooks