Skip to content

Commit

Permalink
Generate code for ECS 8.11 (#365)
Browse files Browse the repository at this point in the history
* Generate code for ECS 8.11

* ensure we override the templates field limit to 2500

* fix trailing semicolon on newline
  • Loading branch information
Mpdreamz authored Apr 4, 2024
1 parent 7c93454 commit 7899022
Show file tree
Hide file tree
Showing 56 changed files with 66,063 additions and 362 deletions.
8 changes: 6 additions & 2 deletions src/Elastic.CommonSchema/EcsDocument.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public partial class EcsDocument : BaseFieldSet
{

/// <summary>
/// Elastic Common Schema version 8.6.0
/// Elastic Common Schema version 8.11.0
/// </summary>
public static string Version => "8.6.0";
public static string Version => "8.11.0";

/// <summary>
/// Container for additional metadata against this event.
Expand Down Expand Up @@ -144,6 +144,10 @@ public partial class EcsDocument : BaseFieldSet
[JsonPropertyName("log"), DataMember(Name = "log")]
public Log? Log { get; set; }

///<summary>macho</summary>
[JsonPropertyName("macho"), DataMember(Name = "macho")]
public Macho? Macho { get; set; }

///<summary>network</summary>
[JsonPropertyName("network"), DataMember(Name = "network")]
public Network? Network { get; set; }
Expand Down
18 changes: 18 additions & 0 deletions src/Elastic.CommonSchema/Entities.Generated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,13 @@ public class File : FileFieldSet {
///</summary>
[JsonPropertyName("elf"), DataMember(Name = "elf")]
public Elf? Elf { get; set; }

///<summary>
/// <para><c>file.macho</c></para>
/// <example></example>
///</summary>
[JsonPropertyName("macho"), DataMember(Name = "macho")]
public Macho? Macho { get; set; }
}

///<inheritdoc cref="GeoFieldSet"/>
Expand Down Expand Up @@ -359,6 +366,10 @@ public class Interface : InterfaceFieldSet {
public partial class Log : LogFieldSet {
}

///<inheritdoc cref="MachoFieldSet"/>
public class Macho : MachoFieldSet {
}

///<inheritdoc cref="NetworkFieldSet"/>
public class Network : NetworkFieldSet {

Expand Down Expand Up @@ -474,6 +485,13 @@ public class Process : ProcessFieldSet {
[JsonPropertyName("elf"), DataMember(Name = "elf")]
public Elf? Elf { get; set; }

///<summary>
/// <para><c>process.macho</c></para>
/// <example></example>
///</summary>
[JsonPropertyName("macho"), DataMember(Name = "macho")]
public Macho? Macho { get; set; }

///<summary>
/// <para><c>process.entry_meta.source</c></para>
/// <example></example>
Expand Down
412 changes: 370 additions & 42 deletions src/Elastic.CommonSchema/FieldSets.Generated.cs

Large diffs are not rendered by default.

1,049 changes: 864 additions & 185 deletions src/Elastic.CommonSchema/IndexComponents.Generated.cs

Large diffs are not rendered by default.

Loading

0 comments on commit 7899022

Please sign in to comment.