Skip to content

Commit

Permalink
Update limit_score_stacking.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachTheSplunker authored Jul 22, 2024
1 parent 8516cc4 commit eb6c6d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/searches/limit_score_stacking.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ This option adds some complexity, however, provides more information and better
| streamstats count as rank_per_source by risk_object risk_object_type source
| eval risk_message=case(
rank_per_source <= 10, risk_message,
rank_per_source = 11, "...+" . ( dc_msg_per_source - 20 ) . " others from '" . source . "'..." ,
rank_per_source = 11, "...+" . ( dc_msg_per_source - 10 ) . " others from '" . source . "'..." ,
1==1, null() )
| eval max_score=if( rank_per_source <= 10, max_score, 0 )
``` END limit to a maximum of 10 contributions per source ```
Expand Down

0 comments on commit eb6c6d1

Please sign in to comment.