Skip to content
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

chore: remove repetitive words #3106

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sources/configure-client/grafana-agent/sampling.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ discovery.relabel "profile_pods" {

This strategy does not guarantee precise sampling. Due to its reliance on an MD5 hash, there is not a perfectly uniform distribution of scrape targets into shards. Larger numbers of scrape targets will yield increasingly accurate sampling.

Keep in mind, if the label being hashed is deterministic, you will see deterministic sharding and thereby deterministic sampling of scrape targets. Similarly, if the the label being hashed is non-deterministic, you will see scrape targets being sampled in a non-deterministic fashion.
Keep in mind, if the label being hashed is deterministic, you will see deterministic sharding and thereby deterministic sampling of scrape targets. Similarly, if the label being hashed is non-deterministic, you will see scrape targets being sampled in a non-deterministic fashion.
2 changes: 1 addition & 1 deletion docs/sources/release-notes/v1-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ weight: 850

# Version 1.1 release notes

The Pyroscope team is excited to announce the the second release. This release allows to retrieve series from persistent storages like local disk and object store and also has a couple of performance improvements (e.g., JFR ingestion is handled a lot more efficiently).
The Pyroscope team is excited to announce the second release. This release allows to retrieve series from persistent storages like local disk and object store and also has a couple of performance improvements (e.g., JFR ingestion is handled a lot more efficiently).

As always, feedback is more than welcome, feel free to open issues/discussions.
You can reach out to the team using:
Expand Down
2 changes: 1 addition & 1 deletion examples/tracing/tempo/tempo/tempo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ storage:
trace:
backend: local # backend configuration to use
wal:
path: /tmp/tempo/wal # where to store the the wal locally
path: /tmp/tempo/wal # where to store the wal locally
local:
path: /tmp/tempo/blocks
2 changes: 1 addition & 1 deletion pkg/phlaredb/tsdb/bitprefix.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (ii *BitPrefixInvertedIndex) getShards(shard *shard.Annotation) ([]*indexSh
}

// When comparing a higher shard factor to a lower inverted index shard factor
// we must filter resulting fingerprints as the the lower shard factor in the
// we must filter resulting fingerprints as the lower shard factor in the
// inverted index is a superset of the requested factor.
//
// For instance, the 3_of_4 shard factor maps to the bit prefix 0b11.
Expand Down
4 changes: 2 additions & 2 deletions pkg/validation/limits.go
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ func (sm *OverwriteMarshalingStringMap) Map() map[string]string {
return sm.m
}

// MarshalJSON explicitly uses the the type receiver and not pointer receiver
// MarshalJSON explicitly uses the type receiver and not pointer receiver
// or it won't be called
func (sm OverwriteMarshalingStringMap) MarshalJSON() ([]byte, error) {
return json.Marshal(sm.m)
Expand All @@ -455,7 +455,7 @@ func (sm *OverwriteMarshalingStringMap) UnmarshalJSON(val []byte) error {
return nil
}

// MarshalYAML explicitly uses the the type receiver and not pointer receiver
// MarshalYAML explicitly uses the type receiver and not pointer receiver
// or it won't be called
func (sm OverwriteMarshalingStringMap) MarshalYAML() (interface{}, error) {
return sm.m, nil
Expand Down
2 changes: 1 addition & 1 deletion public/app/components/ExportData.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe('ExportData', () => {
);
});

it('uses the the date if its the only thing available', () => {
it('uses the date if its the only thing available', () => {
expect(
getFilename(
undefined,
Expand Down
Loading