-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It is useful for implementations of Tee to also know the tenant who sent the logs. This PR adds tenant to the tee interface.
- Loading branch information
1 parent
e9446a9
commit d2f4378
Showing
3 changed files
with
8 additions
and
4 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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package distributor | ||
|
||
// Tee imlpementations can duplicate the log streams to another endpoint. | ||
// Tee implementations can duplicate the log streams to another endpoint. | ||
type Tee interface { | ||
Duplicate([]KeyedStream) | ||
Duplicate(tenant string, streams []KeyedStream) | ||
} |