Skip to content

Commit

Permalink
feat(kuma-cp) TrafficTrace entity (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubdyszkiewicz authored Feb 18, 2020
1 parent e96a920 commit 7084a8a
Show file tree
Hide file tree
Showing 22 changed files with 2,219 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

Changes:

* feature: TracingTrace entity
[#582](https://github.com/Kong/kuma/pull/582)
* feature: Tracing section in Mesh entity
[#581](https://github.com/Kong/kuma/pull/581)
* chore: use new Dataplane format across the project
Expand Down
135 changes: 135 additions & 0 deletions api/mesh/v1alpha1/traffic_trace.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions api/mesh/v1alpha1/traffic_trace.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
syntax = "proto3";

package kuma.mesh.v1alpha1;

option go_package = "v1alpha1";

import "mesh/v1alpha1/selector.proto";

// TrafficTrace defines trace configuration for selected dataplanes.
message TrafficTrace {

// List of selectors to match dataplanes.
repeated Selector selectors = 1;

// Configuration defines settings of the tracing.
message Conf {
// Backend defined in the Mesh entity.
string backend = 1;
}

// Configuration of the tracing.
Conf conf = 3;
}
Loading

0 comments on commit 7084a8a

Please sign in to comment.