Skip to content
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

Fix a regression on tetra tracingpolicy enable/disable #1562

Merged
merged 7 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions api/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@
- [DeleteTracingPolicyResponse](#tetragon-DeleteTracingPolicyResponse)
- [DisableSensorRequest](#tetragon-DisableSensorRequest)
- [DisableSensorResponse](#tetragon-DisableSensorResponse)
- [DisableTracingPolicyRequest](#tetragon-DisableTracingPolicyRequest)
- [DisableTracingPolicyResponse](#tetragon-DisableTracingPolicyResponse)
- [EnableSensorRequest](#tetragon-EnableSensorRequest)
- [EnableSensorResponse](#tetragon-EnableSensorResponse)
- [EnableTracingPolicyRequest](#tetragon-EnableTracingPolicyRequest)
- [EnableTracingPolicyResponse](#tetragon-EnableTracingPolicyResponse)
- [GetStackTraceTreeRequest](#tetragon-GetStackTraceTreeRequest)
- [GetStackTraceTreeResponse](#tetragon-GetStackTraceTreeResponse)
- [GetVersionRequest](#tetragon-GetVersionRequest)
Expand Down Expand Up @@ -1351,6 +1355,31 @@ Determins the behaviour of a field filter



<a name="tetragon-DisableTracingPolicyRequest"></a>

### DisableTracingPolicyRequest



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| name | [string](#string) | | |






<a name="tetragon-DisableTracingPolicyResponse"></a>

### DisableTracingPolicyResponse







<a name="tetragon-EnableSensorRequest"></a>

### EnableSensorRequest
Expand All @@ -1376,6 +1405,31 @@ Determins the behaviour of a field filter



<a name="tetragon-EnableTracingPolicyRequest"></a>

### EnableTracingPolicyRequest



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| name | [string](#string) | | |






<a name="tetragon-EnableTracingPolicyResponse"></a>

### EnableTracingPolicyResponse







<a name="tetragon-GetStackTraceTreeRequest"></a>

### GetStackTraceTreeRequest
Expand Down Expand Up @@ -1536,6 +1590,9 @@ Determins the behaviour of a field filter
| namespace | [string](#string) | | namespace is the namespace of the policy (or empty of the policy is global) |
| info | [string](#string) | | info is additional information about the policy |
| sensors | [string](#string) | repeated | sensors loaded in the scope of this policy |
| enabled | [bool](#bool) | | indicating if the policy is enabled |
| filter_id | [uint64](#uint64) | | filter ID of the policy used for k8s filtering |
| error | [string](#string) | | potential error of the policy |



Expand All @@ -1561,6 +1618,8 @@ Determins the behaviour of a field filter
| DeleteTracingPolicy | [DeleteTracingPolicyRequest](#tetragon-DeleteTracingPolicyRequest) | [DeleteTracingPolicyResponse](#tetragon-DeleteTracingPolicyResponse) | |
| RemoveSensor | [RemoveSensorRequest](#tetragon-RemoveSensorRequest) | [RemoveSensorResponse](#tetragon-RemoveSensorResponse) | |
| ListTracingPolicies | [ListTracingPoliciesRequest](#tetragon-ListTracingPoliciesRequest) | [ListTracingPoliciesResponse](#tetragon-ListTracingPoliciesResponse) | |
| EnableTracingPolicy | [EnableTracingPolicyRequest](#tetragon-EnableTracingPolicyRequest) | [EnableTracingPolicyResponse](#tetragon-EnableTracingPolicyResponse) | |
| DisableTracingPolicy | [DisableTracingPolicyRequest](#tetragon-DisableTracingPolicyRequest) | [DisableTracingPolicyResponse](#tetragon-DisableTracingPolicyResponse) | |
| ListSensors | [ListSensorsRequest](#tetragon-ListSensorsRequest) | [ListSensorsResponse](#tetragon-ListSensorsResponse) | |
| EnableSensor | [EnableSensorRequest](#tetragon-EnableSensorRequest) | [EnableSensorResponse](#tetragon-EnableSensorResponse) | |
| DisableSensor | [DisableSensorRequest](#tetragon-DisableSensorRequest) | [DisableSensorResponse](#tetragon-DisableSensorResponse) | |
Expand Down
Loading
Loading