-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[new feature] promtail: Add a Promtail stage for probabilistic sampling #7127
Conversation
./tools/diff_coverage.sh ../loki-main/test_results.txt test_results.txt ingester,distributor,querier,querier/queryrange,iter,storage,chunkenc,logql,loki Change in test coverage per package. Green indicates 0 or positive change, red indicates that test coverage for a package fell. + ingester 0%
+ distributor 0%
+ querier 0%
+ querier/queryrange 0%
+ iter 0%
+ storage 0%
+ chunkenc 0%
+ logql 0%
+ loki 0% |
}, nil | ||
} | ||
|
||
// dropStage applies Label matchers to determine if the include stages should be run |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this needs correction :)
./tools/diff_coverage.sh ../loki-main/test_results.txt test_results.txt ingester,distributor,querier,querier/queryrange,iter,storage,chunkenc,logql,loki Change in test coverage per package. Green indicates 0 or positive change, red indicates that test coverage for a package fell. + ingester 0%
+ distributor 0%
+ querier 0%
+ querier/queryrange 0%
+ iter 0%
+ storage 0%
+ chunkenc 0%
+ logql 0%
+ loki 0% |
./tools/diff_coverage.sh ../loki-main/test_results.txt test_results.txt ingester,distributor,querier,querier/queryrange,iter,storage,chunkenc,logql,loki Change in test coverage per package. Green indicates 0 or positive change, red indicates that test coverage for a package fell. + ingester 0%
+ distributor 0%
+ querier 0%
+ querier/queryrange 0%
+ iter 0%
+ storage 0%
+ chunkenc 0%
+ logql 0%
+ loki 0% |
cfg: cfg, | ||
dropCount: getDropCountMetric(registerer), | ||
samplingBoundary: samplingBoundary, | ||
pool: sync.Pool{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am assuming the reference implementation is using a sync.Pool
for storing rand generators since the generator created by NewSource
is not safe for concurrent use. And as an added benefit generating random number from this pool would make use of generators created with different seeds.
But in this stage, we have a single go routine that's generating the random numbers which means we don't necessarily need a sync.Pool
maybe we should drop this
Hi! This issue has been automatically marked as stale because it has not had any We use a stalebot among other tools to help manage the state of issues in this project. Stalebots are also emotionless and cruel and can close issues which are still very relevant. If this issue is important to you, please add a comment to keep it open. More importantly, please add a thumbs-up to the original issue entry. We regularly sort for closed issues which have a We may also:
We are doing our best to respond, organize, and prioritize all issues but it can be a challenging task, |
# Conflicts: # clients/pkg/logentry/stages/stage.go
Nice. Could you update the documentation? |
done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Docs squad} Couple of suggestions and questions for the documentation.
Co-authored-by: J Stickler <julie.stickler@grafana.com>
Co-authored-by: J Stickler <julie.stickler@grafana.com>
thanks,I modified the document to 2 examples |
I think @JStickler needs to approve 🙂 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Docs squad]
thanks |
Awesome, thanks for the contribution! |
PR was merged 4m ago, any plans for merging it to the release branch as well? |
+1. Looking forward to utilizing this feature. With the |
… Add a Promtail stage for probabilistic sampling (grafana#10425) Add PR grafana#7127 to release notes for next release Co-authored-by: Travis Patterson <travis.patterson@grafana.com>
What this PR does / why we need it:
The sampling stage can be directly sampled.
The implementation of sampling is to use the algorithm in jaeger go client
or it can be used with match for precise sampling.
Which issue(s) this PR fixes:
Fixes #6654
Special notes for your reviewer:
The promtail 'rate' stage is also used with the 'match' stage for log filtering.This design makes the code very clean.
Other log agents vector have log filtering built into the sampling operator, which I think is too complicated
https://vector.dev/docs/reference/configuration/transforms/sample/
'rate' stage review suggestions .

#5051
Checklist
CHANGELOG.md
.docs/sources/upgrading/_index.md