├── .ci.runsettings ├── .editorconfig ├── .gitattributes ├── .github ├── .github.csproj ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── update-specs.yml └── workflows │ ├── bootstrap │ └── action.yml │ ├── docs-build.yml │ ├── docs-cleanup.yml │ ├── github-commands-comment.yml │ ├── pre-commit.yml │ ├── release-main.yml │ ├── release.yml │ ├── test-docs.yml │ ├── test-reporter.yml │ ├── test.yml │ └── update-specs.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Directory.Build.props ├── README.md ├── contributing.md ├── docs ├── docs.csproj ├── docset.yml └── reference │ ├── _elasticsearch_security.md │ ├── _enrichers_2.md │ ├── _extending_ecsdocument.md │ ├── _formatters.md │ ├── _usage.md │ ├── apm-nlog-enricher.md │ ├── apm-serilog-enricher.md │ ├── benchmark-dotnet-data-shipper.md │ ├── data-shippers.md │ ├── ecs-dotnet.md │ ├── ecs-ingest-channels.md │ ├── extensions-logging-data-shipper.md │ ├── images │ └── ecs-dotnet-overview.png │ ├── index.md │ ├── intro_to_xyz.md │ ├── log4net-formatter.md │ ├── nlog-formatter.md │ ├── serilog-data-shipper.md │ ├── serilog-formatter.md │ ├── setup.md │ └── toc.yml ├── dotnet-tools.json ├── ecs-dotnet.sln ├── ecs-dotnet.sln.DotSettings ├── examples ├── Elastic.Extensions.Logging.Console.Example │ ├── Elastic.Extensions.Logging.Console.Example.csproj │ ├── ExampleService.cs │ └── Program.cs ├── Elastic.Extensions.Logging.Example │ ├── Elastic.Extensions.Logging.Example.csproj │ ├── HighVolumeWorkSimulation.cs │ ├── Log.cs │ ├── LowVolumeWorkSimulation.cs │ ├── Program.cs │ └── appsettings.json ├── Elastic.Serilog.Sinks.Example │ ├── Elastic.Serilog.Sinks.Example.csproj │ ├── HighVolumeWorkSimulation.cs │ └── Program.cs ├── aspnetcore-with-extensions-logging │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── aspnetcore-with-extensions-logging.csproj ├── aspnetcore-with-serilog │ ├── AspnetCoreExample.csproj │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── README.md │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── console-with-extensions-logging │ ├── Log.cs │ ├── Program.cs │ ├── ReadMe.md │ ├── Worker.cs │ ├── appsettings.json │ ├── console-with-extensions-logging.csproj │ ├── docker-compose.yml │ └── example-elasticsearch-kibana.png ├── ecs-aot-smoketest │ ├── ExtensionsLogger.cs │ ├── NLogExporter.cs │ ├── Program.cs │ ├── SerilogExporter.cs │ └── ecs-aot-smoketest.csproj └── playground │ ├── Program.cs │ └── playground.csproj ├── global.json ├── issue_template.md ├── license.txt ├── nuget-icon.png ├── nuget.config ├── src ├── Directory.Build.props ├── Elastic.Apm.NLog │ ├── ApmServiceNameLayoutRenderer.cs │ ├── ApmServiceNodeNameLayoutRenderer.cs │ ├── ApmServiceVersionLayoutRenderer.cs │ ├── ApmSpanIdLayoutRenderer.cs │ ├── ApmTraceIdLayoutRenderer.cs │ ├── ApmTransactionIdLayoutRenderer.cs │ ├── Elastic.Apm.NLog.csproj │ └── README.md ├── Elastic.Apm.SerilogEnricher │ ├── Elastic.Apm.SerilogEnricher.csproj │ ├── ElasticApmEnricher.cs │ ├── ElasticApmEnricherExtension.cs │ └── README.md ├── Elastic.CommonSchema.BenchmarkDotNetExporter │ ├── Domain │ │ ├── BenchmarkAgent.cs │ │ ├── BenchmarkConfidence.cs │ │ ├── BenchmarkData.cs │ │ ├── BenchmarkDocument.cs │ │ ├── BenchmarkEvent.cs │ │ ├── BenchmarkGcInfo.cs │ │ ├── BenchmarkGcStats.cs │ │ ├── BenchmarkGit.cs │ │ ├── BenchmarkHost.cs │ │ ├── BenchmarkJobConfig.cs │ │ ├── BenchmarkLanguage.cs │ │ ├── BenchmarkLaunchInformation.cs │ │ ├── BenchmarkMeasurementStage.cs │ │ ├── BenchmarkSimplifiedWorkloadCounts.cs │ │ └── Percentiles.cs │ ├── Elastic.CommonSchema.BenchmarkDotNetExporter.csproj │ ├── ElasticsearchBenchmarkExporter.cs │ ├── ElasticsearchBenchmarkExporterOptions.cs │ ├── FullNameProvider.cs │ └── README.md ├── Elastic.CommonSchema.Log4net │ ├── EcsLayout.cs │ ├── Elastic.CommonSchema.Log4net.csproj │ ├── LoggingEventConverter.cs │ └── README.md ├── Elastic.CommonSchema.NLog │ ├── ActivityExtensions.cs │ ├── EcsLayout.cs │ ├── Elastic.CommonSchema.NLog.csproj │ ├── NLogEcsJsonContext.cs │ ├── NlogEcsDocumentCreationOptions.cs │ └── README.md ├── Elastic.CommonSchema.Serilog │ ├── Adapters │ │ └── IHttpAdapter.cs │ ├── EcsTextFormatter.cs │ ├── EcsTextFormatterConfiguration.cs │ ├── Elastic.CommonSchema.Serilog.csproj │ ├── LogEventConverter.cs │ ├── README.md │ ├── ScalarPropertyExtensions.cs │ ├── SpecialKeys.cs │ └── SpecialProperties.cs ├── Elastic.CommonSchema │ ├── AssignableInterfaces.Generated.cs │ ├── EcsDocument.DefaultService.cs │ ├── EcsDocument.Generated.cs │ ├── EcsDocument.Serialization.cs │ ├── EcsDocument.cs │ ├── Elastic.CommonSchema.csproj │ ├── Entities.Generated.cs │ ├── Entities.ShouldSerialize.Generated.cs │ ├── Entities.cs │ ├── FieldSets.Generated.cs │ ├── IndexComponents.Generated.cs │ ├── IndexTemplates.Generated.cs │ ├── InlineObjects.Generated.cs │ ├── Location.cs │ ├── LogTemplateEntities.Generated.cs │ ├── LogTemplateProperties.Generated.cs │ ├── MetadataDictionary.cs │ ├── PropDispatch.Generated.cs │ ├── PropDispatch.cs │ ├── README.md │ └── Serialization │ │ ├── EcsDocumentJsonConverter.Generated.cs │ │ ├── EcsDocumentJsonConverter.cs │ │ ├── EcsDocumentJsonConverterFactory.cs │ │ ├── EcsJsonContext.Generated.cs │ │ ├── EcsJsonConverterBase.cs │ │ ├── EcsSerializerFactory.cs │ │ ├── JsonConfiguration.cs │ │ ├── MetadataDictionaryConverter.cs │ │ ├── PropertiesReaderJsonConverterBase.Generated.cs │ │ ├── PropertiesReaderJsonConverterBase.cs │ │ ├── ReusableUtf8JsonWriter.cs │ │ └── SnakeCaseJsonNamingPolicy.cs ├── Elastic.Extensions.Logging.Common │ ├── Elastic.Extensions.Logging.Common.csproj │ ├── ILogEventCreationOptions.cs │ ├── LogEvent.cs │ ├── LogEventBuilderExtensions.cs │ ├── LogEventJsonContext.cs │ ├── LogEventToEcsHelper.cs │ └── README.md ├── Elastic.Extensions.Logging.Console │ ├── EcsConsoleFormatter.cs │ ├── EcsConsoleFormatterOptions.cs │ ├── Elastic.Extensions.Logging.Console.csproj │ ├── LoggingBuilderExtensions.cs │ └── README.md ├── Elastic.Extensions.Logging │ ├── Elastic.Extensions.Logging.csproj │ ├── ElasticsearchLogger.cs │ ├── ElasticsearchLoggerOptionsSetup.cs │ ├── ElasticsearchLoggerProvider.cs │ ├── IChannelProvider.cs │ ├── IChannelSetup.cs │ ├── InternalChannelSetup.cs │ ├── LoggingBuilderExtensions.cs │ ├── Options │ │ ├── DataStreamNameOptions.cs │ │ ├── ElasticsearchLoggerOptions.cs │ │ ├── IndexNameOptions.cs │ │ ├── NodePoolType.cs │ │ └── ShipToOptions.cs │ └── README.md ├── Elastic.Ingest.Elasticsearch.CommonSchema │ ├── EcsDataStreamChannel.cs │ ├── EcsIndexChannel.cs │ ├── Elastic.Ingest.Elasticsearch.CommonSchema.csproj │ └── README.md ├── Elastic.NLog.Targets │ ├── Elastic.NLog.Targets.csproj │ ├── ElasticPoolType.cs │ ├── ElasticsearchTarget.cs │ └── README.md ├── Elastic.Serilog.Enrichers.Web │ ├── Adapters │ │ ├── HttpContextAccessorAdapter.cs │ │ └── HttpContextAdapter.cs │ ├── Elastic.Serilog.Enrichers.Web.csproj │ ├── EnricherExtensions.cs │ ├── HttpContextEnricher.cs │ ├── Lib │ │ ├── UAParser.cs │ │ └── UAParser.regexes.yaml │ └── README.md ├── Elastic.Serilog.Sinks │ ├── ConfigSinkExtensions.cs │ ├── Elastic.Serilog.Sinks.csproj │ ├── ElasticsearchSink.cs │ ├── ElasticsearchSinkExtensions.cs │ ├── README.md │ └── TransportHelper.cs ├── NullableExtensions.cs └── Specification │ ├── 1.0 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── Template6 │ │ ├── root.html │ │ └── template.json │ └── Template7 │ │ ├── root.html │ │ └── template.json │ ├── 1.1 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── Template6 │ │ ├── root.html │ │ └── template.json │ └── Template7 │ │ ├── root.html │ │ └── template.json │ ├── 1.2 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── Template6 │ │ ├── root.html │ │ └── template.json │ └── Template7 │ │ ├── root.html │ │ └── template.json │ ├── 1.3 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── Template6 │ │ ├── root.html │ │ └── template.json │ └── Template7 │ │ ├── root.html │ │ └── template.json │ ├── 1.4 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── Template6 │ │ ├── root.html │ │ └── template.json │ └── Template7 │ │ ├── root.html │ │ └── template.json │ ├── 1.5 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── Template6 │ │ ├── root.html │ │ └── template.json │ └── Template7 │ │ ├── root.html │ │ └── template.json │ ├── 1.6 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── Template6 │ │ ├── root.html │ │ └── template.json │ └── Template7 │ │ ├── root.html │ │ └── template.json │ ├── README.md │ ├── Specification.csproj │ ├── v8.11.0 │ ├── Core │ │ ├── ecs_flat.yml │ │ └── ecs_nested.yml │ ├── composable │ │ ├── component │ │ │ ├── agent.json │ │ │ ├── base.json │ │ │ ├── client.json │ │ │ ├── cloud.json │ │ │ ├── container.json │ │ │ ├── data_stream.json │ │ │ ├── destination.json │ │ │ ├── device.json │ │ │ ├── dll.json │ │ │ ├── dns.json │ │ │ ├── ecs.json │ │ │ ├── email.json │ │ │ ├── error.json │ │ │ ├── event.json │ │ │ ├── faas.json │ │ │ ├── file.json │ │ │ ├── group.json │ │ │ ├── host.json │ │ │ ├── http.json │ │ │ ├── log.json │ │ │ ├── network.json │ │ │ ├── observer.json │ │ │ ├── orchestrator.json │ │ │ ├── organization.json │ │ │ ├── package.json │ │ │ ├── process.json │ │ │ ├── registry.json │ │ │ ├── related.json │ │ │ ├── rule.json │ │ │ ├── server.json │ │ │ ├── service.json │ │ │ ├── source.json │ │ │ ├── threat.json │ │ │ ├── tls.json │ │ │ ├── tracing.json │ │ │ ├── url.json │ │ │ ├── user.json │ │ │ ├── user_agent.json │ │ │ └── vulnerability.json │ │ └── template.json │ └── legacy │ │ └── template.json │ ├── v8.2.0 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── composable │ │ ├── root.html │ │ └── template.json │ └── legacy │ │ ├── root.html │ │ └── template.json │ ├── v8.3.1 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── composable │ │ ├── component │ │ │ ├── agent.json │ │ │ ├── base.json │ │ │ ├── client.json │ │ │ ├── cloud.json │ │ │ ├── container.json │ │ │ ├── data_stream.json │ │ │ ├── destination.json │ │ │ ├── dll.json │ │ │ ├── dns.json │ │ │ ├── ecs.json │ │ │ ├── email.json │ │ │ ├── error.json │ │ │ ├── event.json │ │ │ ├── faas.json │ │ │ ├── file.json │ │ │ ├── group.json │ │ │ ├── host.json │ │ │ ├── http.json │ │ │ ├── log.json │ │ │ ├── network.json │ │ │ ├── observer.json │ │ │ ├── orchestrator.json │ │ │ ├── organization.json │ │ │ ├── package.json │ │ │ ├── process.json │ │ │ ├── registry.json │ │ │ ├── related.json │ │ │ ├── root.html │ │ │ ├── rule.json │ │ │ ├── server.json │ │ │ ├── service.json │ │ │ ├── source.json │ │ │ ├── threat.json │ │ │ ├── tls.json │ │ │ ├── tracing.json │ │ │ ├── url.json │ │ │ ├── user.json │ │ │ ├── user_agent.json │ │ │ └── vulnerability.json │ │ ├── root.html │ │ └── template.json │ └── legacy │ │ ├── root.html │ │ └── template.json │ ├── v8.4.0 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── composable │ │ ├── component │ │ │ ├── agent.json │ │ │ ├── base.json │ │ │ ├── client.json │ │ │ ├── cloud.json │ │ │ ├── container.json │ │ │ ├── data_stream.json │ │ │ ├── destination.json │ │ │ ├── dll.json │ │ │ ├── dns.json │ │ │ ├── ecs.json │ │ │ ├── email.json │ │ │ ├── error.json │ │ │ ├── event.json │ │ │ ├── faas.json │ │ │ ├── file.json │ │ │ ├── group.json │ │ │ ├── host.json │ │ │ ├── http.json │ │ │ ├── log.json │ │ │ ├── network.json │ │ │ ├── observer.json │ │ │ ├── orchestrator.json │ │ │ ├── organization.json │ │ │ ├── package.json │ │ │ ├── process.json │ │ │ ├── registry.json │ │ │ ├── related.json │ │ │ ├── root.html │ │ │ ├── rule.json │ │ │ ├── server.json │ │ │ ├── service.json │ │ │ ├── source.json │ │ │ ├── threat.json │ │ │ ├── tls.json │ │ │ ├── tracing.json │ │ │ ├── url.json │ │ │ ├── user.json │ │ │ ├── user_agent.json │ │ │ └── vulnerability.json │ │ ├── root.html │ │ └── template.json │ └── legacy │ │ ├── root.html │ │ └── template.json │ ├── v8.6.0 │ ├── Core │ │ ├── ecs_flat.yml │ │ ├── ecs_nested.yml │ │ └── root.html │ ├── composable │ │ ├── component │ │ │ ├── agent.json │ │ │ ├── base.json │ │ │ ├── client.json │ │ │ ├── cloud.json │ │ │ ├── container.json │ │ │ ├── data_stream.json │ │ │ ├── destination.json │ │ │ ├── device.json │ │ │ ├── dll.json │ │ │ ├── dns.json │ │ │ ├── ecs.json │ │ │ ├── email.json │ │ │ ├── error.json │ │ │ ├── event.json │ │ │ ├── faas.json │ │ │ ├── file.json │ │ │ ├── group.json │ │ │ ├── host.json │ │ │ ├── http.json │ │ │ ├── log.json │ │ │ ├── network.json │ │ │ ├── observer.json │ │ │ ├── orchestrator.json │ │ │ ├── organization.json │ │ │ ├── package.json │ │ │ ├── process.json │ │ │ ├── registry.json │ │ │ ├── related.json │ │ │ ├── root.html │ │ │ ├── rule.json │ │ │ ├── server.json │ │ │ ├── service.json │ │ │ ├── source.json │ │ │ ├── threat.json │ │ │ ├── tls.json │ │ │ ├── tracing.json │ │ │ ├── url.json │ │ │ ├── user.json │ │ │ ├── user_agent.json │ │ │ └── vulnerability.json │ │ ├── root.html │ │ └── template.json │ └── legacy │ │ ├── root.html │ │ └── template.json │ └── v9.0.0 │ ├── Core │ ├── ecs_flat.yml │ └── ecs_nested.yml │ ├── composable │ ├── component │ │ ├── agent.json │ │ ├── base.json │ │ ├── client.json │ │ ├── cloud.json │ │ ├── container.json │ │ ├── data_stream.json │ │ ├── destination.json │ │ ├── device.json │ │ ├── dll.json │ │ ├── dns.json │ │ ├── ecs.json │ │ ├── email.json │ │ ├── error.json │ │ ├── event.json │ │ ├── faas.json │ │ ├── file.json │ │ ├── group.json │ │ ├── host.json │ │ ├── http.json │ │ ├── log.json │ │ ├── network.json │ │ ├── observer.json │ │ ├── orchestrator.json │ │ ├── organization.json │ │ ├── package.json │ │ ├── process.json │ │ ├── registry.json │ │ ├── related.json │ │ ├── rule.json │ │ ├── server.json │ │ ├── service.json │ │ ├── source.json │ │ ├── threat.json │ │ ├── tls.json │ │ ├── tracing.json │ │ ├── url.json │ │ ├── user.json │ │ ├── user_agent.json │ │ ├── volume.json │ │ └── vulnerability.json │ └── template.json │ └── legacy │ └── template.json ├── tests-integration ├── .runsettings ├── Directory.Build.props ├── Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests │ ├── BdNetExporterTests.cs │ ├── BenchmarkCluster.cs │ ├── Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests.csproj │ └── Md5VsSha256.cs ├── Elastic.Extensions.Logging.IntegrationTests │ ├── Elastic.Extensions.Logging.IntegrationTests.csproj │ ├── LoggingCluster.cs │ ├── LoggingToDataStreamTests.cs │ ├── LoggingToIndexTests.cs │ └── TestBase.cs ├── Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests │ ├── CustomEventWriter.cs │ ├── DataStreamIngestionTests.cs │ ├── Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests.csproj │ ├── IndexIngestionTests.cs │ ├── IngestionCluster.cs │ ├── IntegrationTestBase.cs │ └── TestDocument.cs ├── Elastic.NLog.Targets.IntegrationTests │ ├── Elastic.NLog.Targets.IntegrationTests.csproj │ ├── LoggingCluster.cs │ ├── LoggingToDataStreamTests.cs │ ├── LoggingToIndexIngestionTests.cs │ └── TestBase.cs ├── Elastic.Serilog.Sinks.IntegrationTests │ ├── BootstrapMinimumSecurityPrivilegesTests.cs │ ├── Elastic.Serilog.Sinks.IntegrationTests.csproj │ ├── SerilogCluster.cs │ ├── SerilogOutputTests.cs │ ├── SerilogSelfLogTests.cs │ └── SerilogTestBase.cs └── Elasticsearch.IntegrationDefaults │ ├── Elasticsearch.IntegrationDefaults.csproj │ └── IngestionCluster.cs ├── tests ├── .runsettings ├── Directory.Build.props ├── Elastic.Apm.Disabled.Serilog.Tests │ ├── DisabledAgentTests.cs │ └── Elastic.Apm.Disabled.Serilog.Tests.csproj ├── Elastic.Apm.NLog.Tests │ ├── Elastic.Apm.NLog.Tests.csproj │ └── NLogTests.cs ├── Elastic.Apm.SerilogEnricher.Tests │ ├── Elastic.Apm.SerilogEnricher.Tests.csproj │ ├── ServiceInformationTests.cs │ └── TraceInformationTests.cs ├── Elastic.Apm.Test.Common │ ├── Elastic.Apm.Test.Common.csproj │ ├── MockConfiguration.cs │ ├── NoopPayloadSender.cs │ └── TestApmAgent.cs ├── Elastic.CommonSchema.Log4net.Tests │ ├── EcsFieldsAsPropertiesTests.cs │ ├── Elastic.CommonSchema.Log4net.Tests.csproj │ ├── LogTestsBase.cs │ ├── MessageTests.cs │ └── TestAppender.cs ├── Elastic.CommonSchema.NLog.Tests │ ├── ApmTests.cs │ ├── EcsFieldsInTemplateTests.cs │ ├── Elastic.CommonSchema.NLog.Tests.csproj │ ├── LogTestsBase.cs │ ├── MessageTests.cs │ ├── OutputTests.cs │ └── WebTests.cs ├── Elastic.CommonSchema.Serilog.Tests │ ├── EcsFieldsInTemplateTests.cs │ ├── Elastic.CommonSchema.Serilog.Tests.csproj │ ├── EnrichmentsTests.cs │ ├── ExtensionsLogging │ │ ├── SerilogWithExtensionLoggerGenerated.cs │ │ └── SerilogWithExtensionsLoggerAdapter.cs │ ├── FileOutputTests.cs │ ├── LogEventPropFilterTests.cs │ ├── LogTestsBase.cs │ ├── MessageTests.cs │ ├── OutputTests.cs │ └── Repro │ │ ├── GithubIssue167.cs │ │ ├── GithubIssue225.cs │ │ ├── GithubIssue30.cs │ │ ├── GithubIssue31.cs │ │ └── GithubIssue402.cs ├── Elastic.CommonSchema.Tests │ ├── Deserializes.cs │ ├── EcsServiceTests.cs │ ├── EcsVersionTests.cs │ ├── Elastic.CommonSchema.Tests.csproj │ ├── LogLevelTests.cs │ ├── PriorityTests.cs │ ├── Repro │ │ ├── GithubIssue178.cs │ │ ├── GithubIssue29.cs │ │ ├── GithubIssue316.cs │ │ └── GithubIssue438.cs │ ├── Serializes.cs │ └── Specs │ │ ├── Spec.cs │ │ ├── spec.json │ │ └── spec_version.txt └── Elastic.Serilog.Sinks.Tests │ ├── AppSettingsConfigTests.cs │ ├── ConfigurationBuilderExtensions.cs │ ├── Elastic.Serilog.Sinks.Tests.csproj │ ├── JsonConfigTestBase.cs │ ├── JsonStringConfigSource.cs │ └── SerilogFailureOutputTests.cs └── tools ├── Elastic.CommonSchema.Benchmarks ├── Elastic.CommonSchema.Benchmarks.csproj ├── Program.cs ├── SerializingBase.cs └── SerializingStringBuilderBase.cs └── Elastic.CommonSchema.Generator ├── CodeConfiguration.cs ├── Elastic.CommonSchema.Generator.csproj ├── FileGenerator.cs ├── Program.cs ├── Projection ├── IndexComponent.cs ├── IndexTemplate.cs ├── ProjectionTypeExtensions.cs ├── PropertyReference.cs ├── TypeProjector.cs └── Types.cs ├── Schema ├── DTO │ ├── Field.cs │ ├── FieldAllowedValue.cs │ ├── FieldLevel.cs │ ├── FieldMultiField.cs │ ├── FieldSet.cs │ ├── FieldType.cs │ ├── YamlSchemaReusable.cs │ └── YamlSchemaReusedHere.cs ├── EcsSchema.cs └── EcsSchemaParser.cs ├── SpecificationDownloader.cs └── Views ├── AssignableInterfaces.Generated.cshtml ├── CodeTemplatePage.cs ├── EcsDocument.Generated.cshtml ├── EcsDocumentJsonConverter.Generated.cshtml ├── EcsJsonContext.Generated.cshtml ├── Entities.Generated.cshtml ├── Entities.ShouldSerialize.Generated.cshtml ├── FieldSets.Generated.cshtml ├── IndexComponents.Generated.cshtml ├── IndexTemplates.Generated.cshtml ├── InlineObjects.Generated.cshtml ├── LogTemplateEntities.Generated.cshtml ├── LogTemplateProperties.Generated.cshtml ├── PropDispatch.Generated.cshtml └── PropertiesReaderJsonConverterBase.Generated.cshtml /.ci.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.ci.runsettings -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.github.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/.github.csproj -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | /.github/workflows @elastic/observablt-ci -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/update-specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/update-specs.yml -------------------------------------------------------------------------------- /.github/workflows/bootstrap/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/bootstrap/action.yml -------------------------------------------------------------------------------- /.github/workflows/docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/docs-build.yml -------------------------------------------------------------------------------- /.github/workflows/docs-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/docs-cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/github-commands-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/github-commands-comment.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/release-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/release-main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/test-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test-reporter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/test-reporter.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.github/workflows/update-specs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/docs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/docs.csproj -------------------------------------------------------------------------------- /docs/docset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/docset.yml -------------------------------------------------------------------------------- /docs/reference/_elasticsearch_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/_elasticsearch_security.md -------------------------------------------------------------------------------- /docs/reference/_enrichers_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/_enrichers_2.md -------------------------------------------------------------------------------- /docs/reference/_extending_ecsdocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/_extending_ecsdocument.md -------------------------------------------------------------------------------- /docs/reference/_formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/_formatters.md -------------------------------------------------------------------------------- /docs/reference/_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/_usage.md -------------------------------------------------------------------------------- /docs/reference/apm-nlog-enricher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/apm-nlog-enricher.md -------------------------------------------------------------------------------- /docs/reference/apm-serilog-enricher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/apm-serilog-enricher.md -------------------------------------------------------------------------------- /docs/reference/benchmark-dotnet-data-shipper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/benchmark-dotnet-data-shipper.md -------------------------------------------------------------------------------- /docs/reference/data-shippers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/data-shippers.md -------------------------------------------------------------------------------- /docs/reference/ecs-dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/ecs-dotnet.md -------------------------------------------------------------------------------- /docs/reference/ecs-ingest-channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/ecs-ingest-channels.md -------------------------------------------------------------------------------- /docs/reference/extensions-logging-data-shipper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/extensions-logging-data-shipper.md -------------------------------------------------------------------------------- /docs/reference/images/ecs-dotnet-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/images/ecs-dotnet-overview.png -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/reference/intro_to_xyz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/intro_to_xyz.md -------------------------------------------------------------------------------- /docs/reference/log4net-formatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/log4net-formatter.md -------------------------------------------------------------------------------- /docs/reference/nlog-formatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/nlog-formatter.md -------------------------------------------------------------------------------- /docs/reference/serilog-data-shipper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/serilog-data-shipper.md -------------------------------------------------------------------------------- /docs/reference/serilog-formatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/serilog-formatter.md -------------------------------------------------------------------------------- /docs/reference/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/setup.md -------------------------------------------------------------------------------- /docs/reference/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/docs/reference/toc.yml -------------------------------------------------------------------------------- /dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/dotnet-tools.json -------------------------------------------------------------------------------- /ecs-dotnet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/ecs-dotnet.sln -------------------------------------------------------------------------------- /ecs-dotnet.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/ecs-dotnet.sln.DotSettings -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Console.Example/Elastic.Extensions.Logging.Console.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Console.Example/Elastic.Extensions.Logging.Console.Example.csproj -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Console.Example/ExampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Console.Example/ExampleService.cs -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Console.Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Console.Example/Program.cs -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Example/Elastic.Extensions.Logging.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Example/Elastic.Extensions.Logging.Example.csproj -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Example/HighVolumeWorkSimulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Example/HighVolumeWorkSimulation.cs -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Example/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Example/Log.cs -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Example/LowVolumeWorkSimulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Example/LowVolumeWorkSimulation.cs -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Example/Program.cs -------------------------------------------------------------------------------- /examples/Elastic.Extensions.Logging.Example/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Extensions.Logging.Example/appsettings.json -------------------------------------------------------------------------------- /examples/Elastic.Serilog.Sinks.Example/Elastic.Serilog.Sinks.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Serilog.Sinks.Example/Elastic.Serilog.Sinks.Example.csproj -------------------------------------------------------------------------------- /examples/Elastic.Serilog.Sinks.Example/HighVolumeWorkSimulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Serilog.Sinks.Example/HighVolumeWorkSimulation.cs -------------------------------------------------------------------------------- /examples/Elastic.Serilog.Sinks.Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/Elastic.Serilog.Sinks.Example/Program.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-extensions-logging/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-extensions-logging/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-extensions-logging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-extensions-logging/Program.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-extensions-logging/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-extensions-logging/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-extensions-logging/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-extensions-logging/appsettings.Development.json -------------------------------------------------------------------------------- /examples/aspnetcore-with-extensions-logging/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-extensions-logging/appsettings.json -------------------------------------------------------------------------------- /examples/aspnetcore-with-extensions-logging/aspnetcore-with-extensions-logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-extensions-logging/aspnetcore-with-extensions-logging.csproj -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/AspnetCoreExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/AspnetCoreExample.csproj -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/Program.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/README.md -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/Startup.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/appsettings.Development.json -------------------------------------------------------------------------------- /examples/aspnetcore-with-serilog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/aspnetcore-with-serilog/appsettings.json -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/Log.cs -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/Program.cs -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/ReadMe.md -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/Worker.cs -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/appsettings.json -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/console-with-extensions-logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/console-with-extensions-logging.csproj -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/docker-compose.yml -------------------------------------------------------------------------------- /examples/console-with-extensions-logging/example-elasticsearch-kibana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/console-with-extensions-logging/example-elasticsearch-kibana.png -------------------------------------------------------------------------------- /examples/ecs-aot-smoketest/ExtensionsLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/ecs-aot-smoketest/ExtensionsLogger.cs -------------------------------------------------------------------------------- /examples/ecs-aot-smoketest/NLogExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/ecs-aot-smoketest/NLogExporter.cs -------------------------------------------------------------------------------- /examples/ecs-aot-smoketest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/ecs-aot-smoketest/Program.cs -------------------------------------------------------------------------------- /examples/ecs-aot-smoketest/SerilogExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/ecs-aot-smoketest/SerilogExporter.cs -------------------------------------------------------------------------------- /examples/ecs-aot-smoketest/ecs-aot-smoketest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/ecs-aot-smoketest/ecs-aot-smoketest.csproj -------------------------------------------------------------------------------- /examples/playground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/playground/Program.cs -------------------------------------------------------------------------------- /examples/playground/playground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/examples/playground/playground.csproj -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/global.json -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/issue_template.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/license.txt -------------------------------------------------------------------------------- /nuget-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/nuget-icon.png -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/nuget.config -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/ApmServiceNameLayoutRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/ApmServiceNameLayoutRenderer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/ApmServiceNodeNameLayoutRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/ApmServiceNodeNameLayoutRenderer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/ApmServiceVersionLayoutRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/ApmServiceVersionLayoutRenderer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/ApmSpanIdLayoutRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/ApmSpanIdLayoutRenderer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/ApmTraceIdLayoutRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/ApmTraceIdLayoutRenderer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/ApmTransactionIdLayoutRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/ApmTransactionIdLayoutRenderer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/Elastic.Apm.NLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/Elastic.Apm.NLog.csproj -------------------------------------------------------------------------------- /src/Elastic.Apm.NLog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.NLog/README.md -------------------------------------------------------------------------------- /src/Elastic.Apm.SerilogEnricher/Elastic.Apm.SerilogEnricher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.SerilogEnricher/Elastic.Apm.SerilogEnricher.csproj -------------------------------------------------------------------------------- /src/Elastic.Apm.SerilogEnricher/ElasticApmEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.SerilogEnricher/ElasticApmEnricher.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.SerilogEnricher/ElasticApmEnricherExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.SerilogEnricher/ElasticApmEnricherExtension.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.SerilogEnricher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Apm.SerilogEnricher/README.md -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkAgent.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkConfidence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkConfidence.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkData.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkDocument.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkEvent.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkGcInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkGcInfo.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkGcStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkGcStats.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkGit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkGit.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkHost.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkJobConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkJobConfig.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkLanguage.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkLaunchInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkLaunchInformation.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkMeasurementStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkMeasurementStage.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkSimplifiedWorkloadCounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/BenchmarkSimplifiedWorkloadCounts.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/Percentiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Domain/Percentiles.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/Elastic.CommonSchema.BenchmarkDotNetExporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/Elastic.CommonSchema.BenchmarkDotNetExporter.csproj -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/ElasticsearchBenchmarkExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/ElasticsearchBenchmarkExporter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/ElasticsearchBenchmarkExporterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/ElasticsearchBenchmarkExporterOptions.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/FullNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/FullNameProvider.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.BenchmarkDotNetExporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.BenchmarkDotNetExporter/README.md -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Log4net/EcsLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Log4net/EcsLayout.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Log4net/Elastic.CommonSchema.Log4net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Log4net/Elastic.CommonSchema.Log4net.csproj -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Log4net/LoggingEventConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Log4net/LoggingEventConverter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Log4net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Log4net/README.md -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.NLog/ActivityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.NLog/ActivityExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.NLog/EcsLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.NLog/EcsLayout.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.NLog/Elastic.CommonSchema.NLog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.NLog/Elastic.CommonSchema.NLog.csproj -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.NLog/NLogEcsJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.NLog/NLogEcsJsonContext.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.NLog/NlogEcsDocumentCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.NLog/NlogEcsDocumentCreationOptions.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.NLog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.NLog/README.md -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/Adapters/IHttpAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/Adapters/IHttpAdapter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/EcsTextFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/EcsTextFormatter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/EcsTextFormatterConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/EcsTextFormatterConfiguration.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/Elastic.CommonSchema.Serilog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/Elastic.CommonSchema.Serilog.csproj -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/LogEventConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/LogEventConverter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/README.md -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/ScalarPropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/ScalarPropertyExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/SpecialKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/SpecialKeys.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema.Serilog/SpecialProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema.Serilog/SpecialProperties.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/AssignableInterfaces.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/AssignableInterfaces.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/EcsDocument.DefaultService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/EcsDocument.DefaultService.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/EcsDocument.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/EcsDocument.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/EcsDocument.Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/EcsDocument.Serialization.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/EcsDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/EcsDocument.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Elastic.CommonSchema.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Elastic.CommonSchema.csproj -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Entities.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Entities.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Entities.ShouldSerialize.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Entities.ShouldSerialize.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Entities.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/FieldSets.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/FieldSets.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/IndexComponents.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/IndexComponents.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/IndexTemplates.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/IndexTemplates.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/InlineObjects.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/InlineObjects.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Location.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/LogTemplateEntities.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/LogTemplateEntities.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/LogTemplateProperties.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/LogTemplateProperties.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/MetadataDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/MetadataDictionary.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/PropDispatch.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/PropDispatch.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/PropDispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/PropDispatch.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/README.md -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/EcsDocumentJsonConverter.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/EcsDocumentJsonConverter.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/EcsDocumentJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/EcsDocumentJsonConverter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/EcsDocumentJsonConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/EcsDocumentJsonConverterFactory.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/EcsJsonContext.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/EcsJsonContext.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/EcsJsonConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/EcsJsonConverterBase.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/EcsSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/EcsSerializerFactory.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/JsonConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/JsonConfiguration.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/MetadataDictionaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/MetadataDictionaryConverter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/PropertiesReaderJsonConverterBase.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/PropertiesReaderJsonConverterBase.Generated.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/PropertiesReaderJsonConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/PropertiesReaderJsonConverterBase.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/ReusableUtf8JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/ReusableUtf8JsonWriter.cs -------------------------------------------------------------------------------- /src/Elastic.CommonSchema/Serialization/SnakeCaseJsonNamingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.CommonSchema/Serialization/SnakeCaseJsonNamingPolicy.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Common/Elastic.Extensions.Logging.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Common/Elastic.Extensions.Logging.Common.csproj -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Common/ILogEventCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Common/ILogEventCreationOptions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Common/LogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Common/LogEvent.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Common/LogEventBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Common/LogEventBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Common/LogEventJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Common/LogEventJsonContext.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Common/LogEventToEcsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Common/LogEventToEcsHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Common/README.md -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Console/EcsConsoleFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Console/EcsConsoleFormatter.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Console/EcsConsoleFormatterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Console/EcsConsoleFormatterOptions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Console/Elastic.Extensions.Logging.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Console/Elastic.Extensions.Logging.Console.csproj -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Console/LoggingBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Console/LoggingBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging.Console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging.Console/README.md -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/Elastic.Extensions.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/Elastic.Extensions.Logging.csproj -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/ElasticsearchLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/ElasticsearchLogger.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/ElasticsearchLoggerOptionsSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/ElasticsearchLoggerOptionsSetup.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/ElasticsearchLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/ElasticsearchLoggerProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/IChannelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/IChannelProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/IChannelSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/IChannelSetup.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/InternalChannelSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/InternalChannelSetup.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/LoggingBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/LoggingBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/Options/DataStreamNameOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/Options/DataStreamNameOptions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/Options/ElasticsearchLoggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/Options/ElasticsearchLoggerOptions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/Options/IndexNameOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/Options/IndexNameOptions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/Options/NodePoolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/Options/NodePoolType.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/Options/ShipToOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/Options/ShipToOptions.cs -------------------------------------------------------------------------------- /src/Elastic.Extensions.Logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Extensions.Logging/README.md -------------------------------------------------------------------------------- /src/Elastic.Ingest.Elasticsearch.CommonSchema/EcsDataStreamChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Ingest.Elasticsearch.CommonSchema/EcsDataStreamChannel.cs -------------------------------------------------------------------------------- /src/Elastic.Ingest.Elasticsearch.CommonSchema/EcsIndexChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Ingest.Elasticsearch.CommonSchema/EcsIndexChannel.cs -------------------------------------------------------------------------------- /src/Elastic.Ingest.Elasticsearch.CommonSchema/Elastic.Ingest.Elasticsearch.CommonSchema.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Ingest.Elasticsearch.CommonSchema/Elastic.Ingest.Elasticsearch.CommonSchema.csproj -------------------------------------------------------------------------------- /src/Elastic.Ingest.Elasticsearch.CommonSchema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Ingest.Elasticsearch.CommonSchema/README.md -------------------------------------------------------------------------------- /src/Elastic.NLog.Targets/Elastic.NLog.Targets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.NLog.Targets/Elastic.NLog.Targets.csproj -------------------------------------------------------------------------------- /src/Elastic.NLog.Targets/ElasticPoolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.NLog.Targets/ElasticPoolType.cs -------------------------------------------------------------------------------- /src/Elastic.NLog.Targets/ElasticsearchTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.NLog.Targets/ElasticsearchTarget.cs -------------------------------------------------------------------------------- /src/Elastic.NLog.Targets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.NLog.Targets/README.md -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/Adapters/HttpContextAccessorAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/Adapters/HttpContextAccessorAdapter.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/Adapters/HttpContextAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/Adapters/HttpContextAdapter.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/Elastic.Serilog.Enrichers.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/Elastic.Serilog.Enrichers.Web.csproj -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/EnricherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/EnricherExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/HttpContextEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/HttpContextEnricher.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/Lib/UAParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/Lib/UAParser.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/Lib/UAParser.regexes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/Lib/UAParser.regexes.yaml -------------------------------------------------------------------------------- /src/Elastic.Serilog.Enrichers.Web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Enrichers.Web/README.md -------------------------------------------------------------------------------- /src/Elastic.Serilog.Sinks/ConfigSinkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Sinks/ConfigSinkExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Sinks/Elastic.Serilog.Sinks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Sinks/Elastic.Serilog.Sinks.csproj -------------------------------------------------------------------------------- /src/Elastic.Serilog.Sinks/ElasticsearchSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Sinks/ElasticsearchSink.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Sinks/ElasticsearchSinkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Sinks/ElasticsearchSinkExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Serilog.Sinks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Sinks/README.md -------------------------------------------------------------------------------- /src/Elastic.Serilog.Sinks/TransportHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Elastic.Serilog.Sinks/TransportHelper.cs -------------------------------------------------------------------------------- /src/NullableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/NullableExtensions.cs -------------------------------------------------------------------------------- /src/Specification/1.0/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.0/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/1.0/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.0/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/1.0/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.0/Core/root.html -------------------------------------------------------------------------------- /src/Specification/1.0/Template6/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.0/Template6/root.html -------------------------------------------------------------------------------- /src/Specification/1.0/Template6/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.0/Template6/template.json -------------------------------------------------------------------------------- /src/Specification/1.0/Template7/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.0/Template7/root.html -------------------------------------------------------------------------------- /src/Specification/1.0/Template7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.0/Template7/template.json -------------------------------------------------------------------------------- /src/Specification/1.1/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.1/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/1.1/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.1/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/1.1/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.1/Core/root.html -------------------------------------------------------------------------------- /src/Specification/1.1/Template6/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.1/Template6/root.html -------------------------------------------------------------------------------- /src/Specification/1.1/Template6/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.1/Template6/template.json -------------------------------------------------------------------------------- /src/Specification/1.1/Template7/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.1/Template7/root.html -------------------------------------------------------------------------------- /src/Specification/1.1/Template7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.1/Template7/template.json -------------------------------------------------------------------------------- /src/Specification/1.2/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.2/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/1.2/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.2/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/1.2/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.2/Core/root.html -------------------------------------------------------------------------------- /src/Specification/1.2/Template6/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.2/Template6/root.html -------------------------------------------------------------------------------- /src/Specification/1.2/Template6/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.2/Template6/template.json -------------------------------------------------------------------------------- /src/Specification/1.2/Template7/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.2/Template7/root.html -------------------------------------------------------------------------------- /src/Specification/1.2/Template7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.2/Template7/template.json -------------------------------------------------------------------------------- /src/Specification/1.3/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.3/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/1.3/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.3/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/1.3/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.3/Core/root.html -------------------------------------------------------------------------------- /src/Specification/1.3/Template6/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.3/Template6/root.html -------------------------------------------------------------------------------- /src/Specification/1.3/Template6/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.3/Template6/template.json -------------------------------------------------------------------------------- /src/Specification/1.3/Template7/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.3/Template7/root.html -------------------------------------------------------------------------------- /src/Specification/1.3/Template7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.3/Template7/template.json -------------------------------------------------------------------------------- /src/Specification/1.4/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.4/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/1.4/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.4/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/1.4/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.4/Core/root.html -------------------------------------------------------------------------------- /src/Specification/1.4/Template6/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.4/Template6/root.html -------------------------------------------------------------------------------- /src/Specification/1.4/Template6/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.4/Template6/template.json -------------------------------------------------------------------------------- /src/Specification/1.4/Template7/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.4/Template7/root.html -------------------------------------------------------------------------------- /src/Specification/1.4/Template7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.4/Template7/template.json -------------------------------------------------------------------------------- /src/Specification/1.5/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.5/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/1.5/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.5/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/1.5/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.5/Core/root.html -------------------------------------------------------------------------------- /src/Specification/1.5/Template6/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.5/Template6/root.html -------------------------------------------------------------------------------- /src/Specification/1.5/Template6/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.5/Template6/template.json -------------------------------------------------------------------------------- /src/Specification/1.5/Template7/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.5/Template7/root.html -------------------------------------------------------------------------------- /src/Specification/1.5/Template7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.5/Template7/template.json -------------------------------------------------------------------------------- /src/Specification/1.6/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.6/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/1.6/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.6/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/1.6/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.6/Core/root.html -------------------------------------------------------------------------------- /src/Specification/1.6/Template6/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.6/Template6/root.html -------------------------------------------------------------------------------- /src/Specification/1.6/Template6/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.6/Template6/template.json -------------------------------------------------------------------------------- /src/Specification/1.6/Template7/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.6/Template7/root.html -------------------------------------------------------------------------------- /src/Specification/1.6/Template7/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/1.6/Template7/template.json -------------------------------------------------------------------------------- /src/Specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/README.md -------------------------------------------------------------------------------- /src/Specification/Specification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/Specification.csproj -------------------------------------------------------------------------------- /src/Specification/v8.11.0/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/v8.11.0/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/agent.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/base.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/client.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/cloud.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/container.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/data_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/data_stream.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/destination.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/device.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/dll.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/dns.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/ecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/ecs.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/email.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/error.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/event.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/faas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/faas.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/file.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/group.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/host.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/http.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/log.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/network.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/observer.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/orchestrator.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/organization.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/package.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/process.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/registry.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/related.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/rule.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/server.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/service.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/source.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/threat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/threat.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/tls.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/tracing.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/url.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/user.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/user_agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/user_agent.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/component/vulnerability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/component/vulnerability.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/composable/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/composable/template.json -------------------------------------------------------------------------------- /src/Specification/v8.11.0/legacy/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.11.0/legacy/template.json -------------------------------------------------------------------------------- /src/Specification/v8.2.0/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.2.0/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/v8.2.0/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.2.0/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/v8.2.0/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.2.0/Core/root.html -------------------------------------------------------------------------------- /src/Specification/v8.2.0/composable/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.2.0/composable/root.html -------------------------------------------------------------------------------- /src/Specification/v8.2.0/composable/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.2.0/composable/template.json -------------------------------------------------------------------------------- /src/Specification/v8.2.0/legacy/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.2.0/legacy/root.html -------------------------------------------------------------------------------- /src/Specification/v8.2.0/legacy/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.2.0/legacy/template.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/v8.3.1/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/v8.3.1/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/Core/root.html -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/agent.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/base.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/client.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/cloud.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/container.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/data_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/data_stream.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/destination.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/dll.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/dns.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/ecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/ecs.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/email.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/error.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/event.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/faas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/faas.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/file.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/group.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/host.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/http.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/log.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/network.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/observer.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/orchestrator.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/organization.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/package.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/process.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/registry.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/related.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/root.html -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/rule.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/server.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/service.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/source.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/threat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/threat.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/tls.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/tracing.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/url.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/user.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/user_agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/user_agent.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/component/vulnerability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/component/vulnerability.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/root.html -------------------------------------------------------------------------------- /src/Specification/v8.3.1/composable/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/composable/template.json -------------------------------------------------------------------------------- /src/Specification/v8.3.1/legacy/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/legacy/root.html -------------------------------------------------------------------------------- /src/Specification/v8.3.1/legacy/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.3.1/legacy/template.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/v8.4.0/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/v8.4.0/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/Core/root.html -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/agent.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/base.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/client.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/cloud.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/container.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/data_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/data_stream.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/destination.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/dll.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/dns.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/ecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/ecs.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/email.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/error.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/event.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/faas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/faas.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/file.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/group.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/host.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/http.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/log.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/network.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/observer.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/orchestrator.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/organization.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/package.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/process.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/registry.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/related.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/root.html -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/rule.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/server.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/service.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/source.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/threat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/threat.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/tls.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/tracing.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/url.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/user.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/user_agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/user_agent.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/component/vulnerability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/component/vulnerability.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/root.html -------------------------------------------------------------------------------- /src/Specification/v8.4.0/composable/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/composable/template.json -------------------------------------------------------------------------------- /src/Specification/v8.4.0/legacy/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/legacy/root.html -------------------------------------------------------------------------------- /src/Specification/v8.4.0/legacy/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.4.0/legacy/template.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/v8.6.0/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/v8.6.0/Core/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/Core/root.html -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/agent.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/base.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/client.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/cloud.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/container.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/data_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/data_stream.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/destination.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/device.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/dll.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/dns.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/ecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/ecs.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/email.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/error.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/event.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/faas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/faas.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/file.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/group.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/host.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/http.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/log.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/network.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/observer.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/orchestrator.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/organization.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/package.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/process.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/registry.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/related.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/root.html -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/rule.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/server.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/service.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/source.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/threat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/threat.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/tls.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/tracing.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/url.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/user.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/user_agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/user_agent.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/component/vulnerability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/component/vulnerability.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/root.html -------------------------------------------------------------------------------- /src/Specification/v8.6.0/composable/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/composable/template.json -------------------------------------------------------------------------------- /src/Specification/v8.6.0/legacy/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/legacy/root.html -------------------------------------------------------------------------------- /src/Specification/v8.6.0/legacy/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v8.6.0/legacy/template.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/Core/ecs_flat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/Core/ecs_flat.yml -------------------------------------------------------------------------------- /src/Specification/v9.0.0/Core/ecs_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/Core/ecs_nested.yml -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/agent.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/base.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/client.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/cloud.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/container.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/data_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/data_stream.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/destination.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/device.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/dll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/dll.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/dns.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/ecs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/ecs.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/email.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/error.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/event.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/faas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/faas.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/file.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/group.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/host.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/http.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/log.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/network.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/observer.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/orchestrator.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/organization.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/package.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/process.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/registry.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/related.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/related.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/rule.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/server.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/service.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/source.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/threat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/threat.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/tls.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/tracing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/tracing.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/url.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/user.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/user_agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/user_agent.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/volume.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/component/vulnerability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/component/vulnerability.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/composable/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/composable/template.json -------------------------------------------------------------------------------- /src/Specification/v9.0.0/legacy/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/src/Specification/v9.0.0/legacy/template.json -------------------------------------------------------------------------------- /tests-integration/.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/.runsettings -------------------------------------------------------------------------------- /tests-integration/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Directory.Build.props -------------------------------------------------------------------------------- /tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/BdNetExporterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/BdNetExporterTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/BenchmarkCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/BenchmarkCluster.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/Md5VsSha256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.CommonSchema.BenchmarkDotNetExporter.IntegrationTests/Md5VsSha256.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Extensions.Logging.IntegrationTests/Elastic.Extensions.Logging.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Extensions.Logging.IntegrationTests/Elastic.Extensions.Logging.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests-integration/Elastic.Extensions.Logging.IntegrationTests/LoggingCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Extensions.Logging.IntegrationTests/LoggingCluster.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Extensions.Logging.IntegrationTests/LoggingToDataStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Extensions.Logging.IntegrationTests/LoggingToDataStreamTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Extensions.Logging.IntegrationTests/LoggingToIndexTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Extensions.Logging.IntegrationTests/LoggingToIndexTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Extensions.Logging.IntegrationTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Extensions.Logging.IntegrationTests/TestBase.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/CustomEventWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/CustomEventWriter.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/DataStreamIngestionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/DataStreamIngestionTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/IndexIngestionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/IndexIngestionTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/IngestionCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/IngestionCluster.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/IntegrationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/IntegrationTestBase.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/TestDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Ingest.Elasticsearch.CommonSchema.IntegrationTests/TestDocument.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.NLog.Targets.IntegrationTests/Elastic.NLog.Targets.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.NLog.Targets.IntegrationTests/Elastic.NLog.Targets.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests-integration/Elastic.NLog.Targets.IntegrationTests/LoggingCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.NLog.Targets.IntegrationTests/LoggingCluster.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.NLog.Targets.IntegrationTests/LoggingToDataStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.NLog.Targets.IntegrationTests/LoggingToDataStreamTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.NLog.Targets.IntegrationTests/LoggingToIndexIngestionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.NLog.Targets.IntegrationTests/LoggingToIndexIngestionTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.NLog.Targets.IntegrationTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.NLog.Targets.IntegrationTests/TestBase.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Serilog.Sinks.IntegrationTests/BootstrapMinimumSecurityPrivilegesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Serilog.Sinks.IntegrationTests/BootstrapMinimumSecurityPrivilegesTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Serilog.Sinks.IntegrationTests/Elastic.Serilog.Sinks.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Serilog.Sinks.IntegrationTests/Elastic.Serilog.Sinks.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogCluster.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogOutputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogOutputTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogSelfLogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogSelfLogTests.cs -------------------------------------------------------------------------------- /tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elastic.Serilog.Sinks.IntegrationTests/SerilogTestBase.cs -------------------------------------------------------------------------------- /tests-integration/Elasticsearch.IntegrationDefaults/Elasticsearch.IntegrationDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elasticsearch.IntegrationDefaults/Elasticsearch.IntegrationDefaults.csproj -------------------------------------------------------------------------------- /tests-integration/Elasticsearch.IntegrationDefaults/IngestionCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests-integration/Elasticsearch.IntegrationDefaults/IngestionCluster.cs -------------------------------------------------------------------------------- /tests/.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/.runsettings -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/Elastic.Apm.Disabled.Serilog.Tests/DisabledAgentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.Disabled.Serilog.Tests/DisabledAgentTests.cs -------------------------------------------------------------------------------- /tests/Elastic.Apm.Disabled.Serilog.Tests/Elastic.Apm.Disabled.Serilog.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.Disabled.Serilog.Tests/Elastic.Apm.Disabled.Serilog.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.Apm.NLog.Tests/Elastic.Apm.NLog.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.NLog.Tests/Elastic.Apm.NLog.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.Apm.NLog.Tests/NLogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.NLog.Tests/NLogTests.cs -------------------------------------------------------------------------------- /tests/Elastic.Apm.SerilogEnricher.Tests/Elastic.Apm.SerilogEnricher.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.SerilogEnricher.Tests/Elastic.Apm.SerilogEnricher.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.Apm.SerilogEnricher.Tests/ServiceInformationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.SerilogEnricher.Tests/ServiceInformationTests.cs -------------------------------------------------------------------------------- /tests/Elastic.Apm.SerilogEnricher.Tests/TraceInformationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.SerilogEnricher.Tests/TraceInformationTests.cs -------------------------------------------------------------------------------- /tests/Elastic.Apm.Test.Common/Elastic.Apm.Test.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.Test.Common/Elastic.Apm.Test.Common.csproj -------------------------------------------------------------------------------- /tests/Elastic.Apm.Test.Common/MockConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.Test.Common/MockConfiguration.cs -------------------------------------------------------------------------------- /tests/Elastic.Apm.Test.Common/NoopPayloadSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.Test.Common/NoopPayloadSender.cs -------------------------------------------------------------------------------- /tests/Elastic.Apm.Test.Common/TestApmAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Apm.Test.Common/TestApmAgent.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Log4net.Tests/EcsFieldsAsPropertiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Log4net.Tests/EcsFieldsAsPropertiesTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Log4net.Tests/Elastic.CommonSchema.Log4net.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Log4net.Tests/Elastic.CommonSchema.Log4net.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Log4net.Tests/LogTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Log4net.Tests/LogTestsBase.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Log4net.Tests/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Log4net.Tests/MessageTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Log4net.Tests/TestAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Log4net.Tests/TestAppender.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.NLog.Tests/ApmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.NLog.Tests/ApmTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.NLog.Tests/EcsFieldsInTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.NLog.Tests/EcsFieldsInTemplateTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.NLog.Tests/Elastic.CommonSchema.NLog.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.NLog.Tests/Elastic.CommonSchema.NLog.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.NLog.Tests/LogTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.NLog.Tests/LogTestsBase.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.NLog.Tests/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.NLog.Tests/MessageTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.NLog.Tests/OutputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.NLog.Tests/OutputTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.NLog.Tests/WebTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.NLog.Tests/WebTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/EcsFieldsInTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/EcsFieldsInTemplateTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/Elastic.CommonSchema.Serilog.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/Elastic.CommonSchema.Serilog.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/EnrichmentsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/EnrichmentsTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/ExtensionsLogging/SerilogWithExtensionLoggerGenerated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/ExtensionsLogging/SerilogWithExtensionLoggerGenerated.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/ExtensionsLogging/SerilogWithExtensionsLoggerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/ExtensionsLogging/SerilogWithExtensionsLoggerAdapter.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/FileOutputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/FileOutputTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/LogEventPropFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/LogEventPropFilterTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/LogTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/LogTestsBase.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/MessageTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/OutputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/OutputTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue167.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue167.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue225.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue225.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue30.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue30.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue31.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue31.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue402.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Serilog.Tests/Repro/GithubIssue402.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Deserializes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Deserializes.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/EcsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/EcsServiceTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/EcsVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/EcsVersionTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Elastic.CommonSchema.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Elastic.CommonSchema.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/LogLevelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/LogLevelTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/PriorityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/PriorityTests.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Repro/GithubIssue178.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Repro/GithubIssue178.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Repro/GithubIssue29.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Repro/GithubIssue29.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Repro/GithubIssue316.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Repro/GithubIssue316.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Repro/GithubIssue438.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Repro/GithubIssue438.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Serializes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Serializes.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Specs/Spec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Specs/Spec.cs -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Specs/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Specs/spec.json -------------------------------------------------------------------------------- /tests/Elastic.CommonSchema.Tests/Specs/spec_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.CommonSchema.Tests/Specs/spec_version.txt -------------------------------------------------------------------------------- /tests/Elastic.Serilog.Sinks.Tests/AppSettingsConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Serilog.Sinks.Tests/AppSettingsConfigTests.cs -------------------------------------------------------------------------------- /tests/Elastic.Serilog.Sinks.Tests/ConfigurationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Serilog.Sinks.Tests/ConfigurationBuilderExtensions.cs -------------------------------------------------------------------------------- /tests/Elastic.Serilog.Sinks.Tests/Elastic.Serilog.Sinks.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Serilog.Sinks.Tests/Elastic.Serilog.Sinks.Tests.csproj -------------------------------------------------------------------------------- /tests/Elastic.Serilog.Sinks.Tests/JsonConfigTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Serilog.Sinks.Tests/JsonConfigTestBase.cs -------------------------------------------------------------------------------- /tests/Elastic.Serilog.Sinks.Tests/JsonStringConfigSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Serilog.Sinks.Tests/JsonStringConfigSource.cs -------------------------------------------------------------------------------- /tests/Elastic.Serilog.Sinks.Tests/SerilogFailureOutputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tests/Elastic.Serilog.Sinks.Tests/SerilogFailureOutputTests.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Benchmarks/Elastic.CommonSchema.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Benchmarks/Elastic.CommonSchema.Benchmarks.csproj -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Benchmarks/Program.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Benchmarks/SerializingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Benchmarks/SerializingBase.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Benchmarks/SerializingStringBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Benchmarks/SerializingStringBuilderBase.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/CodeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/CodeConfiguration.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Elastic.CommonSchema.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Elastic.CommonSchema.Generator.csproj -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/FileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/FileGenerator.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Program.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Projection/IndexComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Projection/IndexComponent.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Projection/IndexTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Projection/IndexTemplate.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Projection/ProjectionTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Projection/ProjectionTypeExtensions.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Projection/PropertyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Projection/PropertyReference.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Projection/TypeProjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Projection/TypeProjector.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Projection/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Projection/Types.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/Field.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldAllowedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldAllowedValue.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldLevel.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldMultiField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldMultiField.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldSet.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/FieldType.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/YamlSchemaReusable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/YamlSchemaReusable.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/DTO/YamlSchemaReusedHere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/DTO/YamlSchemaReusedHere.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/EcsSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/EcsSchema.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Schema/EcsSchemaParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Schema/EcsSchemaParser.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/SpecificationDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/SpecificationDownloader.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/AssignableInterfaces.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/AssignableInterfaces.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/CodeTemplatePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/CodeTemplatePage.cs -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/EcsDocument.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/EcsDocument.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/EcsDocumentJsonConverter.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/EcsDocumentJsonConverter.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/EcsJsonContext.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/EcsJsonContext.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/Entities.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/Entities.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/Entities.ShouldSerialize.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/Entities.ShouldSerialize.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/FieldSets.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/FieldSets.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/IndexComponents.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/IndexComponents.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/IndexTemplates.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/IndexTemplates.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/InlineObjects.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/InlineObjects.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/LogTemplateEntities.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/LogTemplateEntities.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/LogTemplateProperties.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/LogTemplateProperties.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/PropDispatch.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/PropDispatch.Generated.cshtml -------------------------------------------------------------------------------- /tools/Elastic.CommonSchema.Generator/Views/PropertiesReaderJsonConverterBase.Generated.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/ecs-dotnet/HEAD/tools/Elastic.CommonSchema.Generator/Views/PropertiesReaderJsonConverterBase.Generated.cshtml --------------------------------------------------------------------------------