Elastic.CommonSchema
8.11.1
Prefix Reserved
See the version list below for details.
dotnet add package Elastic.CommonSchema --version 8.11.1
NuGet\Install-Package Elastic.CommonSchema -Version 8.11.1
<PackageReference Include="Elastic.CommonSchema" Version="8.11.1" />
paket add Elastic.CommonSchema --version 8.11.1
#r "nuget: Elastic.CommonSchema, 8.11.1"
// Install Elastic.CommonSchema as a Cake Addin #addin nuget:?package=Elastic.CommonSchema&version=8.11.1 // Install Elastic.CommonSchema as a Cake Tool #tool nuget:?package=Elastic.CommonSchema&version=8.11.1
Elastic Common Schema .NET
The Elastic.CommonSchema
project contains a full C# representation of Elastic Common Schema (ECS) - see documentation.
The intention is that this library forms a reliable and correct basis for integrations into Elasticsearch, that use both Microsoft .NET and ECS.
These types can be used in either as-is, or in conjunction with, the Official .NET clients for Elasticsearch. The types are annotated with the corresponding DataMember
attributes, enabling out-of-the-box serialisation support with the Elasticsearch.net clients.
See also:
- Elastic.Ingest.Elasticsearch.CommonSchema to easily persist ECS document to Elasticsearch or Elastic Cloud.
Packages
The .NET assemblies are published to NuGet under the package name Elastic.CommonSchema
The main branch pushes new NuGet packages on successful CI builds to https://ci.appveyor.com/nuget/ecs-dotnet
Versioning
The version of the Elastic.CommonSchema package matches the published ECS version, with the same corresponding branch names:
- Nested Schema (The C# types are generated from this YAML file): https://github.com/elastic/ecs/blob/v1.4.0/generated/ecs/ecs_nested.yml
- .NET types: https://github.com/elastic/ecs-dotnet/tree/v1.4.0
The version numbers of the NuGet package must match the exact version of ECS used within Elasticsearch. Attempting to use mismatched versions, for example a NuGet package with version 1.2.0 against an Elasticsearch index configured to use an ECS template with version 1.1.0, will result in indexing and data problems.
Getting started
Installing
You can install Elastic.CommonSchema from the package manager console:
PM> Install-Package Elastic.CommonSchema
Alternatively, simply search for Elastic.CommonSchema in the package manager UI.
Usage
Creating an ECS event
Creating a new ECS event is as simple as newing up an instance:
var ecsDocument = new EcsDocument
{
Timestamp = DateTimeOffset.Parse("2019-10-23T19:44:38.485Z"),
Dns = new Dns
{
Id = "23666",
OpCode = "QUERY",
Type = "answer",
QuestionName = "www.example.com",
QuestionType = "A",
QuestionClass = "IN",
QuestionRegisteredDomain = "example.com",
HeaderFlags = new[] { "RD", "RA" },
ResponseCode = "NOERROR",
ResolvedIp = new[] { "10.0.190.47", "10.0.190.117" },
Answers = new[]
{
new DnsAnswers
{
Data = "10.0.190.47",
Name = "www.example.com",
Type = "A",
Class = "IN",
Ttl = 59
},
new DnsAnswers
{
Data = "10.0.190.117",
Name = "www.example.com",
Type = "A",
Class = "IN",
Ttl = 59
}
}
},
Network = new Network
{
Type = "ipv4",
Transport = "udp",
Protocol = "dns",
Direction = "outbound",
CommunityId = "1:19beef+RWVW9+BEEF/Q45VFU+2Y=",
Bytes = 126
},
Source = new Source { Ip = "192.168.86.26", Port = 5785, Bytes = 31 },
Destination = new Destination { Ip = "8.8.4.4", Port = 53, Bytes = 95 },
Client = new Client { Ip = "192.168.86.26", Port = 5785, Bytes = 31 },
Server = new Server { Ip = "8.8.4.4", Port = 53, Bytes = 95 },
Event = new Event
{
Duration = 122433000,
Start = DateTimeOffset.Parse("2019-10-23T19:44:38.485Z"),
End = DateTimeOffset.Parse("2019-10-23T19:44:38.607Z"),
Kind = "event",
Category = new[] { "network_traffic" }
},
Ecs = new Ecs { Version = "1.2.0" },
Metadata = new Dictionary<string, object> { { "client", "ecs-dotnet" } }
};
Dynamically assign ECS fields
Additionally ecs fields can be dynamically assigned through
ecsDocument.AssignProperty("orchestrator.cluster.id", "id");
This will assign ecsDocument.Orchestrator.ClusterId
to "id"
and automatically create a new Orchestrator
instance if needed.
Any string
or boolean
value that is not a known ecs
field will be assigned to labels.*
everything else to metatadata.*
A note on the Metadata
property
The C# EcsDocument
type includes a property called Metadata
with the signature:
/// <summary>
/// Container for additional metadata against this event.
/// </summary>
[JsonPropertyName("metadata"), DataMember(Name = "metadata")]
public IDictionary<string, object> Metadata { get; set; }
This property is not part of the ECS specification, but is included as a means to index supplementary information.
Extending EcsDocument
In instances where using the IDictionary<string, object> Metadata
property is not sufficient, or there is a clearer definition of the structure of the ECS-compatible document you would like to index, it is possible to subclass the EcsDocument
object and provide your own property definitions.
Through TryRead
/ReceiveProperty
/WriteAdditionalProperties
you can hook into the EcsDocumentJsonConverter
and read/write additional properties.
/// <summary>
/// An extended ECS document with an additional property
/// </summary>
[JsonConverter(typeof(EcsDocumentJsonConverterFactory))]
public class MyEcsDocument : EcsDocument
{
[JsonPropertyName("my_root_property"), DataMember(Name = "my_root_property")]
public MyCustomType MyRootProperty { get; set; }
protected override bool TryRead(string propertyName, out Type type)
{
type = propertyName switch
{
"my_root_property" => typeof(MyCustomType),
_ => null
};
return type != null;
}
protected override bool ReceiveProperty(string propertyName, object value) =>
propertyName switch
{
"my_root_property" => null != (MyRootProperty = value as MyCustomType),
_ => false
};
protected override void WriteAdditionalProperties(Action<string, object> write) => write("my_root_property", MyCustomType);
}
The Elastic.CommonSchema.BenchmarkDotNetExporter project takes this approach, in the Domain source directory, where the BenchmarkDocument subclasses EcsDocument.
Copyright and License
This software is Copyright (c) 2014-2020 by Elasticsearch BV.
This is free software, licensed under: The Apache License Version 2.0.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- Ben.Demystifier (>= 0.4.1)
- System.Diagnostics.DiagnosticSource (>= 5.0.0)
- System.Text.Json (>= 6.0.1)
-
.NETStandard 2.0
- Ben.Demystifier (>= 0.4.1)
- System.Diagnostics.DiagnosticSource (>= 5.0.0)
- System.Text.Json (>= 6.0.1)
-
.NETStandard 2.1
- Ben.Demystifier (>= 0.4.1)
- System.Diagnostics.DiagnosticSource (>= 5.0.0)
- System.Text.Json (>= 6.0.1)
-
net6.0
- Ben.Demystifier (>= 0.4.1)
NuGet packages (12)
Showing the top 5 NuGet packages that depend on Elastic.CommonSchema:
Package | Downloads |
---|---|
Elastic.CommonSchema.Serilog
Serilog TextFormatter that formats log events in accordance with Elastic Common Schema (ECS). |
|
Elastic.Ingest.Elasticsearch.CommonSchema
Package Description |
|
Elastic.CommonSchema.NLog
NLog Layout that formats log events in accordance with Elastic Common Schema (ECS). |
|
Elastic.Extensions.Logging
Elasticsearch logger provider for Microsoft.Extensions.Logging. Writes direct to Elasticsearch using the Elastic Common Schema (ECS), with semantic logging of structured data from message and scope values, for use with the Elasticsearch-Logstash-Kibana (ELK) stack. The results can be viewed and queried in the Kibana console. |
|
Elasticsearch.Extensions.Logging
Elasticsearch logger provider for Microsoft.Extensions.Logging. Writes direct to Elasticsearch using the Elastic Common Schema (ECS), with semantic logging of structured data from message and scope values, for use with the Elasticsearch-Logstash-Kibana (ELK) stack. The results can be viewed and queried in the Kibana console. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.12.2 | 62,911 | 10/22/2024 |
8.12.1 | 126,461 | 10/3/2024 |
8.12.0 | 30,158 | 9/26/2024 |
8.11.1 | 727,776 | 6/10/2024 |
8.11.0 | 555,503 | 4/10/2024 |
8.6.1 | 2,033,600 | 8/3/2023 |
8.6.0 | 459,010 | 5/9/2023 |
8.4.0-alpha4 | 36,011 | 3/28/2023 |
8.4.0-alpha3 | 13,878 | 3/15/2023 |
8.4.0-alpha2 | 2,082 | 3/1/2023 |
8.4.0-alpha1 | 2,378 | 2/20/2023 |
1.6.0-alpha1 | 276,067 | 6/2/2021 |
1.5.3 | 8,126,222 | 6/1/2021 |
1.5.1 | 1,592,414 | 6/3/2020 |
1.5.0 | 381,476 | 3/30/2020 |
1.4.4 | 3,553 | 3/25/2020 |
1.4.3 | 7,144 | 3/16/2020 |
1.4.2 | 26,287 | 3/6/2020 |
1.4.1 | 12,067 | 2/26/2020 |
1.4.0 | 14,864 | 1/29/2020 |
1.4.0-beta1 | 826 | 1/7/2020 |
1.2.0-alpha1 | 986 | 11/15/2019 |