Skip to content

Commit f4c1599

Browse files
committed
Add LogAsFilestream feature flag
1 parent 888026e commit f4c1599

6 files changed

+448
-365
lines changed

elastic-agent-client.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,13 +226,19 @@ message Features {
226226
google.protobuf.Struct source = 1;
227227

228228
FQDNFeature fqdn = 2;
229+
FeatureFlag LogRunAsFilestream = 3;
229230
}
230231

231232
// FQDN feature flag indicates to use FQDN for host.name instead of hostname.
232233
message FQDNFeature {
233234
bool enabled = 1;
234235
}
235236

237+
// FeatureFlag allows a feature flag to be enabled/disabled
238+
message FeatureFlag {
239+
bool enabled = 1;
240+
}
241+
236242
// Elastic APM TLS config
237243
message ElasticAPMTLS {
238244
bool skip_verify = 1;

pkg/proto/elastic-agent-client-deprecated.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/proto/elastic-agent-client-future.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/proto/elastic-agent-client-future_grpc.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)