Skip to content

Commit

Permalink
Merge branch 'main' into security/timeline-openapi-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kibanamachine committed Jun 19, 2024
2 parents 49e5efd + 05723d4 commit 1e5e82d
Show file tree
Hide file tree
Showing 76 changed files with 3,032 additions and 1,332 deletions.
1 change: 1 addition & 0 deletions packages/kbn-apm-synthtrace-client/src/lib/infra/host.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ interface HostDocument extends Fields {
'host.name': string;
'metricset.name'?: string;
'event.module'?: string;
'service.name'?: string;
}

class Host extends Entity<HostDocument> {
Expand Down
4 changes: 4 additions & 0 deletions packages/kbn-apm-synthtrace-client/src/lib/logs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,14 @@ export type LogDocument = Fields &
'host.name'?: string;
'container.id'?: string;
'trace.id'?: string;
'transaction.id'?: string;
'agent.id'?: string;
'agent.name'?: string;
'orchestrator.cluster.name'?: string;
'orchestrator.cluster.id'?: string;
'orchestrator.resource.id'?: string;
'kubernetes.pod.uid'?: string;
'aws.s3.bucket.name'?: string;
'orchestrator.namespace'?: string;
'container.name'?: string;
'cloud.provider'?: string;
Expand All @@ -40,6 +43,7 @@ export type LogDocument = Fields &
'error.stack_trace'?: string;
'error.exception.stacktrace'?: string;
'error.log.stacktrace'?: string;
'log.custom': Record<string, unknown>;
}>;

class Log extends Serializable<LogDocument> {
Expand Down
Loading

0 comments on commit 1e5e82d

Please sign in to comment.