내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

DataFeed - Removing Excluded Hits

Avatar

Level 1

According to the "Calculate Metrics" page, it states: "Use exclude_hit > 0 to remove excluded hits from queries on raw data"

 

According to the "Data column Reference" page, regarding Exclude Hit:

Flag indicating that the hit is excluded from reporting. The visit_num column is not incremented for excluded hits.
1: Not used. Part of a scrapped feature.
2: Not used. Part of a scrapped feature.
3: No longer used. User agent exclusion
4: Exclusion based on IP address
5: Vital hit info missing, such as page_urlpagenamepage_event, or event_list
6: JavaScript did not correctly process hit

 

Based on the values for "Exclude_Hit", it feels like the right way to exclude hits would be: "Use exclude_hit <= 0 to remove excluded hits....". Can you please confirm if thats how one should be excluding hits?

 

TIA

 

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee

If exclude_hit is equal to 0 this means the hit was not excluded. So you want to include hits where exclude_hit is 0. You are correct the document is misleading. If it were to say "hits are excluded when exclude_hit > 0" this would be correct, but if you were writing a query you wouldn't want to use that condition.

If you were writing a query in sql along the lines of 

select * from db where exclude_hit > 0 

This would be a list of excluded hits

 

If you wanted a query that included non excluded hits

select * from db where exclude_hit = 0 


원본 게시물의 솔루션 보기

5 답변 개

Avatar

정확한 답변 작성자:
Employee

If exclude_hit is equal to 0 this means the hit was not excluded. So you want to include hits where exclude_hit is 0. You are correct the document is misleading. If it were to say "hits are excluded when exclude_hit > 0" this would be correct, but if you were writing a query you wouldn't want to use that condition.

If you were writing a query in sql along the lines of 

select * from db where exclude_hit > 0 

This would be a list of excluded hits

 

If you wanted a query that included non excluded hits

select * from db where exclude_hit = 0 


Avatar

Level 1

How does one bring this to the notice of the documentation admins, so that it can be corrected?

Avatar

Employee

I've noted this doc and will be presenting it to the documentation team for correction. In the future if you find something incorrect with the documentation opening a ticket with customercare@adobe.com should get it in front of the right people to get edited. 

 

Thanks for the help!

Avatar

Level 1

Has this been rectified? I see the latest post/documentation dated this year that contradicts the discussion here

https://experienceleague.adobe.com/docs/analytics/export/analytics-data-feed/data-feed-contents/data....

 

Avatar

Level 1

It has been updated now! Thanks for the follow up 😄