- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Datadog Sheets is a spreadsheet tool that you can populate with Datadog data to perform complex analyses and build reports without requiring technical expertise.
This guide walks through creating a table of error logs, adding calculated columns to extract specific error details from error messages, and using pivot tables to summarize the data and identify patterns. It also offers an example use case of this workflow.
status:error
that contain the word “returns” in the log message:status:error service:shopist-returns-prod returns
To gain more insight into your return errors, you might want to extract specific parts of the error messages. You can achieve this by adding calculated columns in Sheets.
REGEXEXTRACT
function to pull out the actual issue with the return. For example, to extract the next word after “Failed” or “Failed to”:=REGEXEXTRACT(#'Message', "Failed (?:to )?(\w+)")
Pivot tables help you summarize and organize large datasets to find patterns and trends.
You have a retail web application that generates a series of error logs related to returns
. You want to analyze what types of errors are causing these issues. Follow these steps to analyze your error logs, identify patterns, and gain insights into the underlying issues causing errors in your retail application. Apply this example to your logs to gain a deeper understanding of your logs and make data-driven decisions.
Failed getting returns for the customer!
Failed to calculate returns for the customer!
Failed to handle returns for the customer!
returns
in the log message. For example:status:error service:shopist-returns-prod returns
Add a calculated column in Sheets to pull out the specific issue with the return using the REGEXEXTRACT
function:
=REGEXEXTRACT(#'Message', "Failed (?:to )?(\w+)")
getting
, calculating
, and handling
).