Skip to content

Commit f3ba358

Browse files
authored
Merge pull request #90259 from changeworld/patch-10
Fix typo
2 parents 73d60a9 + 89e6daf commit f3ba358

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/app-service/app-service-web-nodejs-best-practices-and-troubleshoot-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The default value is false. When set to true, iisnode displays the HTTP status c
108108

109109
This setting controls debugging feature. Iisnode is integrated with node-inspector. By enabling this setting, you enable debugging of your node application. Upon enabling this setting, iisnode creates node-inspector files in ‘debuggerVirtualDir’ directory on the first debug request to your node application. You can load the node-inspector by sending a request to `http://yoursite/server.js/debug`. You can control the debug URL segment with ‘debuggerPathSegment’ setting. By default, debuggerPathSegment=’debug’. You can set `debuggerPathSegment` to a GUID, for example, so that it is more difficult to be discovered by others.
110110

111-
Read [Debug node.js applications on Windows](https://tomasz.janczuk.org/2011/11/debug-nodejs-applications-on-windows.html) for more details on debugging.
111+
Read [Debug Node.js applications on Windows](https://tomasz.janczuk.org/2011/11/debug-nodejs-applications-on-windows.html) for more details on debugging.
112112

113113
## Scenarios and recommendations/troubleshooting
114114

@@ -210,7 +210,7 @@ You can see that 95% of the time was consumed by the WriteConsoleLog function. T
210210

211211
If your application is consuming too much memory, you see a notice from Azure App Service on your portal about high memory consumption. You can set up monitors to watch for certain [metrics](web-sites-monitor.md). When checking the memory usage on the [Azure portal Dashboard](../azure-monitor/essentials/metrics-charts.md), be sure to check the MAX values for memory so you don’t miss the peak values.
212212

213-
#### Leak detection and Heap Diff for node.js
213+
#### Leak detection and Heap Diff for Node.js
214214

215215
You could use [node-memwatch](https://github.com/lloyd/node-memwatch) to help you identify memory leaks.
216216
You can install `memwatch` just like v8-profiler and edit your code to capture and diff heaps to identify the memory leaks in your application.
@@ -265,7 +265,7 @@ NODE.exe has a setting called `NODE_PENDING_PIPE_INSTANCES`. On Azure App Servic
265265

266266
## More resources
267267

268-
Follow these links to learn more about node.js applications on Azure App Service.
268+
Follow these links to learn more about Node.js applications on Azure App Service.
269269

270270
* [Get started with Node.js web apps in Azure App Service](quickstart-nodejs.md)
271271
* [How to debug a Node.js web app in Azure App Service](/archive/blogs/azureossds/debugging-node-js-apps-on-azure-app-services)

0 commit comments

Comments
 (0)