0

i have the following being output in my logs

Finished processing [154976] items for user id [1234]

is there any way in datadog i could output that on a widget with

userid -> number

basically process the logs, similar to how we do with errors from logs and creating alerts.

user1555190
  • 2,803
  • 8
  • 47
  • 80

1 Answers1

2

Create a log processor with a grok parser rule such as

getItemsAndUserid Finished processing [%{integer:count}] items for user id [%{integer:userid}]
bwest
  • 9,182
  • 3
  • 28
  • 58