- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
",t};e.buildCustomizationMenuUi=t;function n(e){let t='
",t}function s(e){let n=e.filter.currentValue||e.filter.defaultValue,t='${e.filter.label}
`,e.filter.options.forEach(s=>{let o=s.id===n;t+=``}),t+="${e.filter.label}
`,t+=`Log Workspaces enables e-commerce businesses to gain valuable insights into their online stores by analyzing transaction data, customer behavior, and system performance. This guide shows how to use Log Workspaces to monitor your e-commerce platform, detect issues, and optimize the shopping experience.
Using Log Workspaces for e-commerce monitoring offers several advantages:
This guide demonstrates how to use Log Workspaces with an example focusing on payment failures and customer ratings.
Follow this example to understand how to correlate payment processing errors from your web-store
service with negative customer ratings and reviews from the shopist-customer-feedback
service. It also demonstrates how to quantify the revenue impact of bad ratings caused by failed payment experiences.
The example focuses on two critical aspects of e-commerce operations:
Create a workspace and add data sources for payment transactions and customer feedback. For instructions on creating a workspace and adding data sources, see Log Workspaces.
This data source cell contains customer feedback logs with negative ratings collected by the ratings service, focusing on customers who reported issues.
This data source cell shows payment error logs from the e-commerce platform, including the merchant ID and cart value to help identify high-impact failures.
This query correlates payment errors with customer feedback, categorizing transactions by value to understand the relationship between technical issues, customer satisfaction, and revenue impact.
Complete SQL query
SELECT
wpe.timestamp,
wpe.Merchant,
wpe.cart_value,
wpe.display_id,
CASE
WHEN wpe.cart_value > 50 THEN 'high value'
ELSE 'low value'
END AS tier
FROM
webstore_payment_errs wpe
JOIN
customer_feedback_bad_ratings cfbr ON wpe.display_id = cfbr.display_id
WHERE
cfbr.status = 'info'
ORDER BY
cart_value DESC
This SQL query performs several important functions:
display_id
to connect the same transactionThe query focuses on payment errors that also received bad ratings, providing a view of technical issues that directly affected customer satisfaction.
The query from the Analysis cell populates a table showing payment errors that resulted in negative customer feedback, categorized by value tier. By analyzing this data, you can prioritize fixes based on revenue impact and improve both technical reliability and customer satisfaction.
Log Workspaces provides powerful visualization capabilities to transform your e-commerce data into actionable insights:
Reference tables in Log Workspaces allow you to import additional contextual data to enrich your analysis. For e-commerce operations, reference tables can provide critical business context that isn’t available in your logs alone.
In this example, we’ll use a reference table containing merchant details to enhance our payment error analysis:
Upload a CSV file with merchant information or query it from another data source.
Use the merchant ID as the common key to connect log data with merchant details. In the example, analysis combines payment error logs with merchant reference data to provide business context for troubleshooting.
Add business context like merchant tier, contract details, or support contacts. The following Calculated Field query computes the sum of lost revenue from failed transactions, grouped by merchant tier to identify high-impact segments:
Create charts to visualize the lost revenue by merchant tier for clearer business impact assessment. The following pie chart displays the distribution of lost revenue across different merchant tiers, highlighting which segments contribute most to revenue loss and require immediate attention. This graph makes it easier for stakeholders to quickly identify which merchant categories are experiencing the highest financial impact from failed transactions.
추가 유용한 문서, 링크 및 기사: