From 2bc57226841b57f94ca4135ff3e08b8449a8df0e Mon Sep 17 00:00:00 2001 From: Peter Burkholder Date: Tue, 10 Dec 2024 14:12:38 -0500 Subject: [PATCH] Update _kbarticles/2024-12-10-using-opensearch-dashboards.md Co-authored-by: Mark Boyd Signed-off-by: Peter Burkholder --- _kbarticles/2024-12-10-using-opensearch-dashboards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_kbarticles/2024-12-10-using-opensearch-dashboards.md b/_kbarticles/2024-12-10-using-opensearch-dashboards.md index c3f214292..67017e469 100644 --- a/_kbarticles/2024-12-10-using-opensearch-dashboards.md +++ b/_kbarticles/2024-12-10-using-opensearch-dashboards.md @@ -14,7 +14,7 @@ Dashboard is a user interface that lets you search and visualize your applicatio ## What are some types of logs? -Cloud Foundry assigns a type to each log message depending on its origin. Application logs are assigned the APP log type. HTTP requests being routed to an app will produce the RTR log type. The various types of logs are listed in the documentation [here](https://docs.cloudfoundry.org/devguide/deploy-apps/streaming-logs.html#format). +Cloud Foundry assigns a type to each log message depending on its origin. Application logs are assigned the APP log type. HTTP requests being routed to an app will produce the RTR log type. The various types of logs [are listed in the CloudFoundry documentation](https://docs.cloudfoundry.org/devguide/deploy-apps/streaming-logs.html#format). The log type is stored on logs in the `@source.type` field. So to query for application logs, you could use a filter of `@source.type: "APP"`.