-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add list of all manual attributes (#182)
* Add list of all manual attributes * sanity check * Add CartService spans Co-authored-by: Carter Socha <43380952+cartersocha@users.noreply.github.com>
- Loading branch information
1 parent
18a4846
commit a41a251
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# List of manual span attributes | ||
|
||
This document contains the list of manual Span Attributes used throughout the demo-webstore: | ||
|
||
## AdService | ||
|
||
* `app.ads.category` | ||
* `app.ads.contextKeys` | ||
* `app.ads.contextKeys.count` | ||
* `app.ads.count` | ||
|
||
## CartService | ||
|
||
* `app.product.id` | ||
* `app.product.quantity` | ||
* `app.user.id` | ||
|
||
## CheckoutService | ||
|
||
* `app.cart.items.count` | ||
* `app.order.id` | ||
* `app.order.shipping.cost` | ||
* `app.order.total.cost` | ||
* `app.order.tracking.id` | ||
* `app.order.items.count` | ||
* `app.user.currency` | ||
* `app.user.id` | ||
|
||
## CurrencyService | ||
|
||
* None yet | ||
|
||
## EmailService | ||
|
||
* `app.email.sent` | ||
* `app.order.id` | ||
* `app.shipping.cost.currency` | ||
* `app.shipping.cost.total` | ||
* `app.shipping.tracking.id` | ||
|
||
## FeatureFlagService | ||
|
||
* None yet | ||
|
||
## Frontend | ||
|
||
* `app.cart.size` | ||
* `app.cart.items.count` | ||
* `app.cart.shipping.cost` | ||
* `app.cart.total.price` | ||
* `app.currency` | ||
* `app.currency.new` | ||
* `app.order.total` | ||
* `app.product.id` | ||
* `app.product.quantity` | ||
* `app.products.count` | ||
* `app.request.id` | ||
* `app.session.id` | ||
* `app.user.id` | ||
|
||
## LoadGenerator | ||
|
||
* None yet | ||
|
||
## PaymentService | ||
|
||
* `app.payment.cost` | ||
* `app.payment.currency` | ||
|
||
## ProductCatalogService | ||
|
||
* `app.product.id` | ||
* `app.product.name` | ||
* `app.products.count` | ||
|
||
## RecommendationService | ||
|
||
* `app.filtered_products.count` | ||
* `app.products.count` | ||
* `app.products_recommended.count` | ||
|
||
## ShippingService | ||
|
||
* None yet |