@@ -213,7 +213,7 @@ public void trackTrace(TraceTelemetry telemetry) {
213213 /**
214214 * Sends a numeric metric to Application Insights. Appears in customMetrics in Analytics, and under Custom Metrics in Metric Explorer.
215215 * @param name The name of the metric. Max length 150.
216- * @param value The value of the metric. Average if based on more than one sample count. Should be > 0.
216+ * @param value The value of the metric. Average if based on more than one sample count. Should be greater than 0.
217217 * @param sampleCount The sample count.
218218 * @param min The minimum value of the sample.
219219 * @param max The maximum value of the sample.
@@ -245,7 +245,7 @@ public void trackMetric(String name, double value, int sampleCount, double min,
245245 /**
246246 * Sends a numeric metric to Application Insights. Appears in customMetrics in Analytics, and under Custom Metrics in Metric Explorer.
247247 * @param name The name of the metric. Max length 150.
248- * @param value The value of the metric. Should be > 0.
248+ * @param value The value of the metric. Should be greater than 0.
249249 */
250250 public void trackMetric (String name , double value ) {
251251 trackMetric (name , value , 1 , value , value , null );
@@ -319,8 +319,10 @@ public void trackHttpRequest(String name, Date timestamp, long duration, String
319319
320320
321321 /**
322- * Sends a request record to Application Insights. Appears in "requests" in Search and Analytics,
322+ * Sends a request record to Application Insights. Appears in "requests" in Search and Analytics,
323323 * and contributes to metric charts such as Server Requests, Server Response Time, Failed Requests.
324+ *
325+ * @param request request
324326 */
325327 public void trackRequest (RequestTelemetry request ) {
326328 track (request );
@@ -333,10 +335,10 @@ public void trackDependency(String dependencyName, String commandName, Duration
333335 }
334336
335337 /**
336- * Sends a dependency record to Application Insights. Appears in "dependencies" in Search and Analytics.
337- * Set device type == "PC" to have the record contribute to metric charts such as
338+ * Sends a dependency record to Application Insights. Appears in "dependencies" in Search and Analytics.
339+ * Set device type == "PC" to have the record contribute to metric charts such as
338340 * Server Dependency Calls, Dependency Response Time, and Dependency Failures.
339- *
341+ * @param telemetry telemetry
340342 */
341343 public void trackDependency (RemoteDependencyTelemetry telemetry ) {
342344 if (isDisabled ()) {
0 commit comments