-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into remove_jaeger_end…
…point_in_hotrod
- Loading branch information
Showing
14 changed files
with
177 additions
and
53 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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (c) 2018 The Jaeger Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dbmodel | ||
|
||
import "github.com/jaegertracing/jaeger/model" | ||
|
||
// FromDomainDependencies converts model dependencies to database representation | ||
func FromDomainDependencies(dLinks []model.DependencyLink) []DependencyLink { | ||
if dLinks == nil { | ||
return nil | ||
} | ||
ret := make([]DependencyLink, len(dLinks)) | ||
for i, d := range dLinks { | ||
ret[i] = DependencyLink{ | ||
CallCount: d.CallCount, | ||
Parent: d.Parent, | ||
Child: d.Child, | ||
} | ||
} | ||
return ret | ||
} | ||
|
||
// ToDomainDependencies converts database representation of dependencies to model | ||
func ToDomainDependencies(dLinks []DependencyLink) []model.DependencyLink { | ||
if dLinks == nil { | ||
return nil | ||
} | ||
ret := make([]model.DependencyLink, len(dLinks)) | ||
for i, d := range dLinks { | ||
ret[i] = model.DependencyLink{ | ||
CallCount: d.CallCount, | ||
Parent: d.Parent, | ||
Child: d.Child, | ||
} | ||
} | ||
return ret | ||
} |
51 changes: 51 additions & 0 deletions
51
plugin/storage/es/dependencystore/dbmodel/converter_test.go
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,51 @@ | ||
// Copyright (c) 2018 The Jaeger Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dbmodel | ||
|
||
import ( | ||
"strconv" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"github.com/jaegertracing/jaeger/model" | ||
) | ||
|
||
func TestConvertDependencies(t *testing.T) { | ||
tests := []struct { | ||
dLinks []model.DependencyLink | ||
}{ | ||
{ | ||
dLinks: []model.DependencyLink{{CallCount: 1, Parent: "foo", Child: "bar"}}, | ||
}, | ||
{ | ||
dLinks: []model.DependencyLink{{CallCount: 3, Parent: "foo"}}, | ||
}, | ||
{ | ||
dLinks: []model.DependencyLink{}, | ||
}, | ||
{ | ||
dLinks: nil, | ||
}, | ||
} | ||
|
||
for i, test := range tests { | ||
t.Run(strconv.Itoa(i), func(t *testing.T) { | ||
got := FromDomainDependencies(test.dLinks) | ||
a := ToDomainDependencies(got) | ||
assert.Equal(t, test.dLinks, a) | ||
}) | ||
} | ||
} |
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,30 @@ | ||
// Copyright (c) 2018 The Jaeger Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package dbmodel | ||
|
||
import "time" | ||
|
||
// TimeDependencies encapsulates dependencies created at a given time | ||
type TimeDependencies struct { | ||
Timestamp time.Time `json:"timestamp"` | ||
Dependencies []DependencyLink `json:"dependencies"` | ||
} | ||
|
||
// DependencyLink shows dependencies between services | ||
type DependencyLink struct { | ||
Parent string `json:"parent"` | ||
Child string `json:"child"` | ||
CallCount uint64 `json:"callCount"` | ||
} |
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
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
Oops, something went wrong.