-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* PMM-13082 Backward-compatibility with PMM 2 Client. * PMM-13082 Strip prefixes, revert changes to collector.proto * PMM-13082 remove unused proto imports * PMM-13082 renumber agent_status.proto fields * PMM-13082 fix the lint rules for pb/agent.proto pkg * PMM-13082 fix the proto field numbers for AGENT_TYPE * PMM-13082 fix the function comment * PMM-13082 revert stripping the IDs * PMM-13082 revert the text fix * PMM-13082 revert slowlog_test fix * PMM-13082 re-generate the code * PMM-13082 fix agent_type in slowlog_test payload * PMM-13082 leave a TODO comment --------- Co-authored-by: Nurlan Moldomurov <[email protected]>
- Loading branch information
Showing
20 changed files
with
1,118 additions
and
792 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
syntax = "proto3"; | ||
|
||
package agent; | ||
|
||
import "agent/v1/agent.proto"; | ||
|
||
option go_package = "api/agentpb;agentpb"; | ||
|
||
// Agent service provides private methods for pmm-agent <-> pmm-managed interactions. | ||
service Agent { | ||
// Connect establishes two-way communication channel between pmm-agent and pmm-managed. | ||
rpc Connect(stream agent.v1.AgentMessage) returns (stream agent.v1.ServerMessage); | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.