-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alias samping.thrift and clean thrift files (#6630)
## Which problem is this PR solving? - #6617 ## Description of the changes - remove unused Thrift files - remove thrift makefile - edit makefile - alias samping.thrift ## How was this change tested? - `make test lint` ## Checklist - [x] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [x] I have signed all commits - [ ] I have added unit tests for the new functionality - [x] I have run lint and test steps successfully - for `jaeger`: `make lint test` - for `jaeger-ui`: `npm run lint` and `npm run test` --------- Signed-off-by: nabil salah <[email protected]> Signed-off-by: Nabil Salah <[email protected]>
- Loading branch information
1 parent
97e800d
commit 10bacb7
Showing
15 changed files
with
128 additions
and
2,071 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 was deleted.
Oops, something went wrong.
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,3 +1,6 @@ | ||
// Copyright (c) 2025 The Jaeger Authors. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package api_v2 | ||
|
||
import ( | ||
|
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,3 +1,6 @@ | ||
// Copyright (c) 2025 The Jaeger Authors. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package api_v2 | ||
|
||
import ( | ||
|
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,3 +1,6 @@ | ||
// Copyright (c) 2025 The Jaeger Authors. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package api_v2 | ||
|
||
import ( | ||
|
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,21 +1,30 @@ | ||
// Copyright (c) 2025 The Jaeger Authors. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package agent | ||
|
||
import ( | ||
modelv1 "github.com/jaegertracing/jaeger-idl/thrift-gen/agent" | ||
modelv1 "github.com/jaegertracing/jaeger-idl/thrift-gen/agent" | ||
) | ||
|
||
type Agent = modelv1.Agent | ||
|
||
type AgentClient = modelv1.AgentClient | ||
var NewAgentClientFactory = modelv1.NewAgentClientFactory | ||
var NewAgentClientProtocol = modelv1.NewAgentClientProtocol | ||
var NewAgentClient = modelv1.NewAgentClient | ||
|
||
var ( | ||
NewAgentClientFactory = modelv1.NewAgentClientFactory | ||
NewAgentClientProtocol = modelv1.NewAgentClientProtocol | ||
NewAgentClient = modelv1.NewAgentClient | ||
) | ||
|
||
type AgentProcessor = modelv1.AgentProcessor | ||
|
||
var NewAgentProcessor = modelv1.NewAgentProcessor | ||
|
||
type AgentEmitZipkinBatchArgs = modelv1.AgentEmitZipkinBatchArgs | ||
|
||
var NewAgentEmitZipkinBatchArgs = modelv1.NewAgentEmitZipkinBatchArgs | ||
|
||
type AgentEmitBatchArgs = modelv1.AgentEmitBatchArgs | ||
var NewAgentEmitBatchArgs = modelv1.NewAgentEmitBatchArgs | ||
|
||
var NewAgentEmitBatchArgs = modelv1.NewAgentEmitBatchArgs |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.