-
Notifications
You must be signed in to change notification settings - Fork 118
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
Backport #221 and #222 to master branch #243
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8f66f9a
[bug] Ensure that parent scopes do not return closed subscopes (#221)
mway db18647
TestScope: don't prune from registry when closed (#222)
mway c89317d
TestScope: don't prune from registry when closed (#222)
mway a82b0c8
lint fix
brawndou c74035a
move comment
brawndou f35e536
update go.mod and go.sum
brawndou 934e203
add license header
brawndou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright (c) 2024 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package tally | ||
|
||
import ( | ||
//go:generate mockgen -package tallymock -destination tallymock/stats_reporter.go -imports github.com/uber-go/tally github.com/uber-go/tally StatsReporter | ||
_ "github.com/golang/mock/mockgen/model" | ||
) |
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
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 |
---|---|---|
@@ -0,0 +1,144 @@ | ||
// Copyright (c) 2023 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package tally_test | ||
|
||
import ( | ||
"io" | ||
"sync" | ||
"testing" | ||
"time" | ||
|
||
"github.com/golang/mock/gomock" | ||
"github.com/stretchr/testify/require" | ||
"github.com/uber-go/tally/v4" | ||
"github.com/uber-go/tally/v4/tallymock" | ||
"go.uber.org/atomic" | ||
) | ||
|
||
func TestTestScopesNotPruned(t *testing.T) { | ||
var ( | ||
root = tally.NewTestScope("", nil) | ||
subscope = root.SubScope("foo") | ||
counter = subscope.Counter("bar") | ||
) | ||
|
||
counter.Inc(123) | ||
|
||
closer, ok := subscope.(io.Closer) | ||
require.True(t, ok) | ||
require.NoError(t, closer.Close()) | ||
|
||
subscope = root.SubScope("foo") | ||
counter = subscope.Counter("bar") | ||
counter.Inc(123) | ||
|
||
var ( | ||
snapshot = root.Snapshot() | ||
counters = snapshot.Counters() | ||
) | ||
require.Len(t, counters, 1) | ||
require.Len(t, snapshot.Gauges(), 0) | ||
require.Len(t, snapshot.Timers(), 0) | ||
require.Len(t, snapshot.Histograms(), 0) | ||
|
||
val, ok := counters["foo.bar+"] | ||
require.True(t, ok) | ||
require.Equal(t, "foo.bar", val.Name()) | ||
require.EqualValues(t, 246, val.Value()) | ||
} | ||
|
||
func TestNoDefunctSubscopes(t *testing.T) { | ||
ctrl := gomock.NewController(t) | ||
defer ctrl.Finish() | ||
|
||
var ( | ||
tags = map[string]string{ | ||
"hello": "world", | ||
} | ||
mockreporter = tallymock.NewMockStatsReporter(ctrl) | ||
ready = make(chan struct{}) | ||
closed atomic.Bool | ||
wg sync.WaitGroup | ||
) | ||
wg.Add(2) | ||
|
||
mockreporter.EXPECT(). | ||
ReportCounter("a", gomock.Any(), int64(123)). | ||
Do(func(_ string, _ map[string]string, _ int64) { | ||
wg.Done() | ||
}). | ||
Times(1) | ||
mockreporter.EXPECT(). | ||
ReportCounter("b", gomock.Any(), int64(456)). | ||
Do(func(_ string, _ map[string]string, _ int64) { | ||
wg.Done() | ||
}). | ||
Times(1) | ||
|
||
// Use flushing as a signal to determine if/when a closed scope | ||
// would be removed from the registry's cache. | ||
mockreporter.EXPECT(). | ||
Flush(). | ||
Do(func() { | ||
// Don't unblock the ready channel until we've explicitly | ||
// closed the scope. | ||
if !closed.Load() { | ||
return | ||
} | ||
|
||
select { | ||
case <-ready: | ||
default: | ||
close(ready) | ||
} | ||
}). | ||
MinTimes(1) | ||
|
||
root, _ := tally.NewRootScope(tally.ScopeOptions{ | ||
Reporter: mockreporter, | ||
OmitCardinalityMetrics: true, | ||
}, time.Millisecond) | ||
|
||
subscope := root.Tagged(tags) | ||
requireClose(t, subscope) | ||
subscope = root.Tagged(tags) | ||
|
||
// Signal and wait for the next flush to ensure that subscope can | ||
// be a closed scope. | ||
closed.Store(true) | ||
<-ready | ||
|
||
// Use the maybe-closed subscope for counter A. | ||
subscope.Counter("a").Inc(123) | ||
|
||
// Guarantee that counter B will not use a closed subscope. | ||
subscope = root.Tagged(tags) | ||
subscope.Counter("b").Inc(456) | ||
|
||
requireClose(t, root) | ||
wg.Wait() | ||
} | ||
|
||
func requireClose(t *testing.T, scope tally.Scope) { | ||
x, ok := scope.(io.Closer) | ||
require.True(t, ok) | ||
require.NoError(t, x.Close()) | ||
} |
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
changed import to v4, everything else is the same as v3