├── .ci ├── deploy.sh └── updatecli │ └── values.d │ ├── apm-data-spec.yml │ ├── apm-gherkin.yml │ ├── apm-json-specs.yml │ ├── scm.yml │ └── update-compose.yml ├── .dockerignore ├── .editorconfig ├── .github ├── .editorconfig ├── .github.csproj ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Feature_request.md │ └── config.yml ├── dependabot.yml ├── labeler-config.yml └── workflows │ ├── README.md │ ├── addToProject.yml │ ├── bootstrap │ └── action.yml │ ├── docs-build.yml │ ├── docs-cleanup.yml │ ├── github-commands-comment.yml │ ├── install-dependencies │ └── action.yml │ ├── labeler.yml │ ├── release-main.yml │ ├── release.yml │ ├── test-linux-docs.yml │ ├── test-linux.yml │ ├── test-reporter.yml │ ├── test-windows-docs.yml │ ├── test-windows.yml │ └── updatecli.yml ├── .gitignore ├── .rustfmt.toml ├── .tool-versions ├── CHANGELOG.asciidoc ├── CONTRIBUTING.md ├── Cargo.toml ├── Directory.Build.props ├── Directory.Packages.props ├── Dockerfile ├── ElasticApmAgent.sln ├── ElasticApmAgent.sln.DotSettings ├── LICENSE ├── Makefile.toml ├── README.md ├── RELEASING.md ├── SECURITY.md ├── benchmarks ├── Directory.Build.props ├── Elastic.Apm.Benchmarks │ ├── AspNetCorePerf │ │ ├── AspNetCoreLoadTestWithAgent.cs │ │ ├── AspNetCoreLoadTestWithoutAgent.cs │ │ └── AspNetCoreSampleRunner.cs │ ├── CgroupMetricsProviderBenchmarks.cs │ ├── DroppedSpansStats.cs │ ├── Elastic.Apm.Benchmarks.csproj │ ├── FreeAndTotalMemoryProviderBenchmarks.cs │ ├── Helpers │ │ └── GitInfo.cs │ ├── MetricsBenchmarks.cs │ ├── OpenTelemetryBridgeBenchmarks.cs │ ├── PerfTestLogger.cs │ ├── Program.cs │ ├── PropertyFetcherBenchmark.cs │ ├── SignatureParserBenchmark.cs │ ├── TestResources │ │ └── db │ │ │ └── sql_signature_examples.json │ ├── TraceParentBenchmarks.cs │ ├── TracerBenchmarks.cs │ └── WildcardMatcherBenchmark.cs └── Elastic.Apm.Profiling │ ├── Elastic.Apm.Profiling.csproj │ └── Program.cs ├── codecov.yml ├── coverlet.runsettings ├── docs ├── docs.csproj ├── docset.yml ├── reference │ ├── config-all-options-summary.md │ ├── config-core.md │ ├── config-http.md │ ├── config-messaging.md │ ├── config-reporter.md │ ├── config-stacktrace.md │ ├── config-supportability.md │ ├── configuration-for-windows-services.md │ ├── configuration-on-asp-net-core.md │ ├── configuration-on-asp-net.md │ ├── configuration.md │ ├── images │ │ ├── azure-functions-configuration.png │ │ ├── dynamic-config.svg │ │ └── unblock-profiler-dll.png │ ├── index.md │ ├── log-correlation-manual.md │ ├── logs.md │ ├── metrics.md │ ├── nlog.md │ ├── nuget-packages.md │ ├── opentelemetry-bridge.md │ ├── performance-tuning.md │ ├── public-api.md │ ├── serilog.md │ ├── set-up-apm-net-agent.md │ ├── setup-asp-dot-net.md │ ├── setup-asp-net-core.md │ ├── setup-auto-instrumentation.md │ ├── setup-azure-cosmosdb.md │ ├── setup-azure-functions.md │ ├── setup-azure-servicebus.md │ ├── setup-azure-storage.md │ ├── setup-dotnet-net-core.md │ ├── setup-ef-core.md │ ├── setup-ef6.md │ ├── setup-elasticsearch.md │ ├── setup-general.md │ ├── setup-grpc.md │ ├── setup-kafka.md │ ├── setup-mongo-db.md │ ├── setup-sqlclient.md │ ├── setup-stackexchange-redis.md │ ├── supported-technologies.md │ ├── toc.yml │ └── upgrading.md └── release-notes │ ├── breaking-changes.md │ ├── index.md │ ├── known-issues.md │ └── toc.yml ├── dotnet-tools.json ├── global.json ├── sample ├── ApiSamples │ ├── ApiSamples.csproj │ ├── Program.cs │ └── README.md ├── Directory.Build.props ├── Elastic.Apm.Azure.ServiceBus.Sample │ ├── Elastic.Apm.Azure.ServiceBus.Sample.csproj │ └── Program.cs ├── ElasticsearchSample │ ├── ElasticsearchSample.csproj │ └── Program.cs ├── HttpListenerSample │ ├── HttpListenerSample.csproj │ ├── Program.cs │ └── README.md ├── Sample.Microsoft.Data.SqlClient │ ├── Program.cs │ └── Sample.Microsoft.Data.SqlClient.csproj ├── StackExchangeRedisSample │ ├── Program.cs │ └── StackExchangeRedisSample.csproj ├── WebApiExample │ ├── Controllers │ │ ├── ErrorController.cs │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── WeatherForecast.cs │ ├── WebApiExample.csproj │ ├── appsettings.Development.json │ └── appsettings.json └── WorkerServiceSample │ ├── Program.cs │ ├── Worker.cs │ ├── WorkerServiceSample.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── src ├── Directory.Build.props ├── Directory.Build.targets ├── Elastic.Apm.Specification │ ├── Elastic.Apm.Specification.csproj │ ├── ImplementationProperty.cs │ ├── JsonSchemaExtensions.cs │ ├── TypeValidationError.cs │ ├── TypeValidationResult.cs │ ├── Validation.cs │ ├── Validator.cs │ └── specs │ │ ├── error.json │ │ ├── log.json │ │ ├── metadata.json │ │ ├── metricset.json │ │ ├── span.json │ │ └── transaction.json ├── Elastic.Apm │ ├── Agent.cs │ ├── AgentComponents.cs │ ├── Api │ │ ├── ApiConstants.cs │ │ ├── CapturedException.cs │ │ ├── CapturedStackFrame.cs │ │ ├── Cloud.cs │ │ ├── CloudContext.cs │ │ ├── Constraints │ │ │ ├── MaxLengthAttribute.cs │ │ │ └── RequiredAttribute.cs │ │ ├── Container.cs │ │ ├── Context.cs │ │ ├── Database.cs │ │ ├── Destination.cs │ │ ├── DistributedTracingData.cs │ │ ├── Http.cs │ │ ├── IError.cs │ │ ├── IExecutionSegment.cs │ │ ├── IMetricSet.cs │ │ ├── ISpan.cs │ │ ├── ITracer.cs │ │ ├── ITransaction.cs │ │ ├── Kubernetes │ │ │ ├── KubernetesMetadata.cs │ │ │ ├── Node.cs │ │ │ └── Pod.cs │ │ ├── Label.cs │ │ ├── Links.cs │ │ ├── Message.cs │ │ ├── MetricSample.cs │ │ ├── Node.cs │ │ ├── Outcome.cs │ │ ├── ProcessInformation.cs │ │ ├── Request.cs │ │ ├── Response.cs │ │ ├── Service.cs │ │ ├── SpanContext.cs │ │ ├── SpanCount.cs │ │ ├── SpanService.cs │ │ ├── SpecificationAttribute.cs │ │ ├── System.cs │ │ ├── Tracer.cs │ │ └── User.cs │ ├── ApmAgentExtensions.cs │ ├── BackendComm │ │ ├── BackendCommComponentBase.cs │ │ ├── BackendCommUtils.cs │ │ └── CentralConfig │ │ │ ├── CentralConfiguration.cs │ │ │ ├── CentralConfigurationFetcher.cs │ │ │ ├── CentralConfigurationKeyValue.cs │ │ │ ├── CentralConfigurationResponseParser.cs │ │ │ ├── DynamicConfigurationOption.cs │ │ │ ├── ICentralConfigurationFetcher.cs │ │ │ ├── ICentralConfigurationResponseParser.cs │ │ │ └── RuntimeConfigurationSnapshot.cs │ ├── Cloud │ │ ├── AwsCloudMetadataProvider.cs │ │ ├── AzureAppServiceMetadataProvider.cs │ │ ├── AzureCloudMetadataProvider.cs │ │ ├── AzureFunctionsMetadataProvider.cs │ │ ├── CloudMetadataProviderCollection.cs │ │ ├── EnvironmentBasedAzureMetadataHelper.cs │ │ ├── GcpCloudMetadataProvider.cs │ │ └── ICloudMetadataProvider.cs │ ├── Config │ │ ├── AbstractConfigurationReader.cs │ │ ├── ConfigConsts.cs │ │ ├── ConfigurationKeyValue.cs │ │ ├── ConfigurationLogger.cs │ │ ├── ConfigurationOption.cs │ │ ├── ConfigurationStore.cs │ │ ├── EnvironmentConfiguration.cs │ │ ├── FallbackToEnvironmentConfigurationBase.cs │ │ ├── IConfiguration.cs │ │ ├── IConfigurationReader.cs │ │ ├── IConfigurationSnapshotProvider.cs │ │ ├── IConfigurationStore.cs │ │ └── Net4FullFramework │ │ │ ├── AppSettingsConfiguration.cs │ │ │ ├── AppSettingsConfigurationKeyValueProvider.cs │ │ │ └── FullFrameworkDefaultImplementations.cs │ ├── Consts.cs │ ├── CurrentExecutionSegmentsContainer.cs │ ├── DiagnosticListeners │ │ ├── DiagnosticListenerBase.cs │ │ ├── HttpDiagnosticListener.cs │ │ ├── HttpDiagnosticListenerCoreImpl.cs │ │ ├── HttpDiagnosticListenerFullFrameworkImpl.cs │ │ ├── HttpDiagnosticListenerImplBase.cs │ │ ├── HttpTraceConfiguration.cs │ │ ├── IHttpSpanTracer.cs │ │ └── KnownListeners.cs │ ├── DiagnosticSource │ │ ├── DiagnosticInitializer.cs │ │ ├── HttpDiagnosticsSubscriber.cs │ │ ├── IDiagnosticListener.cs │ │ └── IDiagnosticsSubscriber.cs │ ├── DistributedTracing │ │ ├── TraceContext.cs │ │ └── TraceState.cs │ ├── Elastic.Apm.csproj │ ├── Extensions │ │ ├── ListExtensions.cs │ │ ├── StringExtensions.cs │ │ └── TransactionExtensions.cs │ ├── Features │ │ ├── AgentFeatures.cs │ │ └── AgentFeaturesProvider.cs │ ├── Filters │ │ ├── CookieHeaderRedactionFilter.cs │ │ ├── ErrorContextSanitizerFilter.cs │ │ ├── HeaderDictionarySanitizerFilter.cs │ │ ├── Sanitization.cs │ │ ├── SpanStackTraceCapturingFilter.cs │ │ └── TransactionIgnoreUrlsFilter.cs │ ├── Helpers │ │ ├── AgentSpinLock.cs │ │ ├── AgentTimeInstant.cs │ │ ├── AgentTimer.cs │ │ ├── Assertion.cs │ │ ├── AssertionFailedException.cs │ │ ├── AssertionLevel.cs │ │ ├── CollectionExtensions.cs │ │ ├── ContractExtensions.cs │ │ ├── CookieHeaderRedacter.cs │ │ ├── DbConnectionStringParser.cs │ │ ├── DbgUtils.cs │ │ ├── DisposableHelper.cs │ │ ├── EnvironmentVariables.cs │ │ ├── ExceptionFilter.cs │ │ ├── ExceptionUtils.cs │ │ ├── GrpcHelper.cs │ │ ├── HostNameDetector.cs │ │ ├── IAgentTimer.cs │ │ ├── IHttpFormAdapter.cs │ │ ├── IHttpRequestAdapter.cs │ │ ├── LazyContextualInit.cs │ │ ├── LogLevelUtils.cs │ │ ├── ObjectExtensions.cs │ │ ├── PlatformDetection.cs │ │ ├── RandomGenerator.cs │ │ ├── RequestBodyStreamHelper.cs │ │ ├── Sanitization.cs │ │ ├── StacktraceHelper.cs │ │ ├── StringExtensions.cs │ │ ├── SystemInfoHelper.cs │ │ ├── TextUtils.cs │ │ ├── TimeExtensions.cs │ │ ├── TimeUtils.cs │ │ ├── ToStringBuilder.cs │ │ ├── UrlUtils.cs │ │ └── WildcardMatcher.cs │ ├── ICurrentExecutionSegmentsContainer.cs │ ├── Instrumentations │ │ └── SqlClient │ │ │ ├── SqlClientDiagnosticListener.cs │ │ │ ├── SqlClientDiagnosticSubscriber.cs │ │ │ └── SqlEventListener.cs │ ├── Libraries │ │ ├── .editorconfig │ │ ├── Ben.Demystifier │ │ │ ├── EnhancedStackFrame.cs │ │ │ ├── EnhancedStackTrace.Frames.cs │ │ │ ├── EnhancedStackTrace.cs │ │ │ ├── Enumerable │ │ │ │ ├── EnumerableIList.cs │ │ │ │ ├── EnumeratorIList.cs │ │ │ │ └── IEnumerableIList.cs │ │ │ ├── ExceptionExtensions.cs │ │ │ ├── Internal │ │ │ │ ├── ILReader.cs │ │ │ │ ├── PortablePdbReader.cs │ │ │ │ └── ReflectionHelper.cs │ │ │ ├── ResolvedMethod.cs │ │ │ ├── ResolvedParameter.cs │ │ │ ├── StringBuilderExtentions.cs │ │ │ ├── TypeNameHelper.cs │ │ │ └── ValueTupleResolvedParameter.cs │ │ └── Newtonsoft.Json │ │ │ ├── Bson │ │ │ ├── BsonBinaryType.cs │ │ │ ├── BsonBinaryWriter.cs │ │ │ ├── BsonObjectId.cs │ │ │ ├── BsonReader.cs │ │ │ ├── BsonToken.cs │ │ │ ├── BsonType.cs │ │ │ └── BsonWriter.cs │ │ │ ├── ConstructorHandling.cs │ │ │ ├── Converters │ │ │ ├── BinaryConverter.cs │ │ │ ├── BsonObjectIdConverter.cs │ │ │ ├── CustomCreationConverter.cs │ │ │ ├── DataSetConverter.cs │ │ │ ├── DataTableConverter.cs │ │ │ ├── DateTimeConverterBase.cs │ │ │ ├── DiscriminatedUnionConverter.cs │ │ │ ├── EntityKeyMemberConverter.cs │ │ │ ├── ExpandoObjectConverter.cs │ │ │ ├── IsoDateTimeConverter.cs │ │ │ ├── JavaScriptDateTimeConverter.cs │ │ │ ├── KeyValuePairConverter.cs │ │ │ ├── StringEnumConverter.cs │ │ │ ├── UnixDateTimeConverter.cs │ │ │ ├── VersionConverter.cs │ │ │ └── XmlNodeConverter.cs │ │ │ ├── DateFormatHandling.cs │ │ │ ├── DateParseHandling.cs │ │ │ ├── DateTimeZoneHandling.cs │ │ │ ├── DefaultJsonNameTable.cs │ │ │ ├── DefaultValueHandling.cs │ │ │ ├── FloatFormatHandling.cs │ │ │ ├── FloatParseHandling.cs │ │ │ ├── FormatterAssemblyStyle.cs │ │ │ ├── Formatting.cs │ │ │ ├── IArrayPool.cs │ │ │ ├── IJsonLineInfo.cs │ │ │ ├── JsonArrayAttribute.cs │ │ │ ├── JsonConstructorAttribute.cs │ │ │ ├── JsonContainerAttribute.cs │ │ │ ├── JsonConvert.cs │ │ │ ├── JsonConverter.cs │ │ │ ├── JsonConverterAttribute.cs │ │ │ ├── JsonConverterCollection.cs │ │ │ ├── JsonDictionaryAttribute.cs │ │ │ ├── JsonException.cs │ │ │ ├── JsonExtensionDataAttribute.cs │ │ │ ├── JsonIgnoreAttribute.cs │ │ │ ├── JsonNameTable.cs │ │ │ ├── JsonObjectAttribute.cs │ │ │ ├── JsonPosition.cs │ │ │ ├── JsonPropertyAttribute.cs │ │ │ ├── JsonReader.Async.cs │ │ │ ├── JsonReader.cs │ │ │ ├── JsonReaderException.cs │ │ │ ├── JsonRequiredAttribute.cs │ │ │ ├── JsonSerializationException.cs │ │ │ ├── JsonSerializer.cs │ │ │ ├── JsonSerializerSettings.cs │ │ │ ├── JsonTextReader.Async.cs │ │ │ ├── JsonTextReader.cs │ │ │ ├── JsonTextWriter.Async.cs │ │ │ ├── JsonTextWriter.cs │ │ │ ├── JsonToken.cs │ │ │ ├── JsonValidatingReader.cs │ │ │ ├── JsonWriter.Async.cs │ │ │ ├── JsonWriter.cs │ │ │ ├── JsonWriterException.cs │ │ │ ├── Linq │ │ │ ├── CommentHandling.cs │ │ │ ├── DuplicatePropertyNameHandling.cs │ │ │ ├── Extensions.cs │ │ │ ├── IJEnumerable.cs │ │ │ ├── JArray.Async.cs │ │ │ ├── JArray.cs │ │ │ ├── JConstructor.Async.cs │ │ │ ├── JConstructor.cs │ │ │ ├── JContainer.Async.cs │ │ │ ├── JContainer.cs │ │ │ ├── JEnumerable.cs │ │ │ ├── JObject.Async.cs │ │ │ ├── JObject.cs │ │ │ ├── JProperty.Async.cs │ │ │ ├── JProperty.cs │ │ │ ├── JPropertyDescriptor.cs │ │ │ ├── JPropertyKeyedCollection.cs │ │ │ ├── JRaw.Async.cs │ │ │ ├── JRaw.cs │ │ │ ├── JToken.Async.cs │ │ │ ├── JToken.cs │ │ │ ├── JTokenEqualityComparer.cs │ │ │ ├── JTokenReader.cs │ │ │ ├── JTokenType.cs │ │ │ ├── JTokenWriter.Async.cs │ │ │ ├── JTokenWriter.cs │ │ │ ├── JValue.Async.cs │ │ │ ├── JValue.cs │ │ │ ├── JsonLoadSettings.cs │ │ │ ├── JsonMergeSettings.cs │ │ │ ├── JsonPath │ │ │ │ ├── ArrayIndexFilter.cs │ │ │ │ ├── ArrayMultipleIndexFilter.cs │ │ │ │ ├── ArraySliceFilter.cs │ │ │ │ ├── FieldFilter.cs │ │ │ │ ├── FieldMultipleFilter.cs │ │ │ │ ├── JPath.cs │ │ │ │ ├── PathFilter.cs │ │ │ │ ├── QueryExpression.cs │ │ │ │ ├── QueryFilter.cs │ │ │ │ ├── QueryScanFilter.cs │ │ │ │ ├── RootFilter.cs │ │ │ │ ├── ScanFilter.cs │ │ │ │ └── ScanMultipleFilter.cs │ │ │ ├── JsonSelectSettings.cs │ │ │ ├── LineInfoHandling.cs │ │ │ ├── MergeArrayHandling.cs │ │ │ └── MergeNullValueHandling.cs │ │ │ ├── MemberSerialization.cs │ │ │ ├── MetadataPropertyHandling.cs │ │ │ ├── MissingMemberHandling.cs │ │ │ ├── NullValueHandling.cs │ │ │ ├── ObjectCreationHandling.cs │ │ │ ├── PreserveReferencesHandling.cs │ │ │ ├── ReferenceLoopHandling.cs │ │ │ ├── Required.cs │ │ │ ├── Schema │ │ │ ├── Extensions.cs │ │ │ ├── JsonSchema.cs │ │ │ ├── JsonSchemaBuilder.cs │ │ │ ├── JsonSchemaConstants.cs │ │ │ ├── JsonSchemaException.cs │ │ │ ├── JsonSchemaGenerator.cs │ │ │ ├── JsonSchemaModel.cs │ │ │ ├── JsonSchemaModelBuilder.cs │ │ │ ├── JsonSchemaNode.cs │ │ │ ├── JsonSchemaNodeCollection.cs │ │ │ ├── JsonSchemaResolver.cs │ │ │ ├── JsonSchemaType.cs │ │ │ ├── JsonSchemaWriter.cs │ │ │ ├── UndefinedSchemaIdHandling.cs │ │ │ ├── ValidationEventArgs.cs │ │ │ └── ValidationEventHandler.cs │ │ │ ├── Serialization │ │ │ ├── CachedAttributeGetter.cs │ │ │ ├── CamelCaseNamingStrategy.cs │ │ │ ├── CamelCasePropertyNamesContractResolver.cs │ │ │ ├── DefaultContractResolver.cs │ │ │ ├── DefaultNamingStrategy.cs │ │ │ ├── DefaultReferenceResolver.cs │ │ │ ├── DefaultSerializationBinder.cs │ │ │ ├── DiagnosticsTraceWriter.cs │ │ │ ├── DynamicValueProvider.cs │ │ │ ├── ErrorContext.cs │ │ │ ├── ErrorEventArgs.cs │ │ │ ├── ExpressionValueProvider.cs │ │ │ ├── FormatterConverter.cs │ │ │ ├── IAttributeProvider.cs │ │ │ ├── IContractResolver.cs │ │ │ ├── IReferenceResolver.cs │ │ │ ├── ISerializationBinder.cs │ │ │ ├── ITraceWriter.cs │ │ │ ├── IValueProvider.cs │ │ │ ├── JsonArrayContract.cs │ │ │ ├── JsonContainerContract.cs │ │ │ ├── JsonContract.cs │ │ │ ├── JsonDictionaryContract.cs │ │ │ ├── JsonDynamicContract.cs │ │ │ ├── JsonFormatterConverter.cs │ │ │ ├── JsonISerializableContract.cs │ │ │ ├── JsonLinqContract.cs │ │ │ ├── JsonObjectContract.cs │ │ │ ├── JsonPrimitiveContract.cs │ │ │ ├── JsonProperty.cs │ │ │ ├── JsonPropertyCollection.cs │ │ │ ├── JsonSerializerInternalBase.cs │ │ │ ├── JsonSerializerInternalReader.cs │ │ │ ├── JsonSerializerInternalWriter.cs │ │ │ ├── JsonSerializerProxy.cs │ │ │ ├── JsonStringContract.cs │ │ │ ├── JsonTypeReflector.cs │ │ │ ├── KebabCaseNamingStrategy.cs │ │ │ ├── MemoryTraceWriter.cs │ │ │ ├── NamingStrategy.cs │ │ │ ├── ObjectConstructor.cs │ │ │ ├── OnErrorAttribute.cs │ │ │ ├── ReflectionAttributeProvider.cs │ │ │ ├── ReflectionValueProvider.cs │ │ │ ├── SerializationBinderAdapter.cs │ │ │ ├── SnakeCaseNamingStrategy.cs │ │ │ ├── TraceJsonReader.cs │ │ │ └── TraceJsonWriter.cs │ │ │ ├── SerializationBinder.cs │ │ │ ├── StringEscapeHandling.cs │ │ │ ├── TraceLevel.cs │ │ │ ├── TypeNameAssemblyFormatHandling.cs │ │ │ ├── TypeNameHandling.cs │ │ │ ├── Utilities │ │ │ ├── AsyncUtils.cs │ │ │ ├── Base64Encoder.cs │ │ │ ├── BidirectionalDictionary.cs │ │ │ ├── CollectionUtils.cs │ │ │ ├── CollectionWrapper.cs │ │ │ ├── ConvertUtils.cs │ │ │ ├── DateTimeParser.cs │ │ │ ├── DateTimeUtils.cs │ │ │ ├── DictionaryWrapper.cs │ │ │ ├── DynamicProxy.cs │ │ │ ├── DynamicProxyMetaObject.cs │ │ │ ├── DynamicReflectionDelegateFactory.cs │ │ │ ├── DynamicUtils.cs │ │ │ ├── EnumInfo.cs │ │ │ ├── EnumUtils.cs │ │ │ ├── ExpressionReflectionDelegateFactory.cs │ │ │ ├── FSharpUtils.cs │ │ │ ├── ILGeneratorExtensions.cs │ │ │ ├── ImmutableCollectionsUtils.cs │ │ │ ├── JavaScriptUtils.cs │ │ │ ├── JsonTokenUtils.cs │ │ │ ├── LateBoundReflectionDelegateFactory.cs │ │ │ ├── LinqBridge.cs │ │ │ ├── MathUtils.cs │ │ │ ├── MethodBinder.cs │ │ │ ├── MethodCall.cs │ │ │ ├── MiscellaneousUtils.cs │ │ │ ├── NullableAttributes.cs │ │ │ ├── ReflectionDelegateFactory.cs │ │ │ ├── ReflectionObject.cs │ │ │ ├── ReflectionUtils.cs │ │ │ ├── StringBuffer.cs │ │ │ ├── StringReference.cs │ │ │ ├── StringUtils.cs │ │ │ ├── StructMultiKey.cs │ │ │ ├── ThreadSafeStore.cs │ │ │ ├── TypeExtensions.cs │ │ │ └── ValidationUtils.cs │ │ │ └── WriteState.cs │ ├── Logging │ │ ├── ConsoleLogger.cs │ │ ├── GlobalLogConfiguration.cs │ │ ├── IApmLogger.cs │ │ ├── IApmLoggingExtensions.cs │ │ ├── LogLevel.cs │ │ ├── LogLevelSwitch.cs │ │ ├── LogValuesFormatter.cs │ │ ├── ScopedLogger.cs │ │ └── TraceLogger.cs │ ├── Metrics │ │ ├── IMetricsCollector.cs │ │ ├── IMetricsProvider.cs │ │ ├── Linux │ │ │ └── GlobalMemoryStatus.cs │ │ ├── MetricSet.cs │ │ ├── MetricsCollector.cs │ │ ├── MetricsProvider │ │ │ ├── BreakdownMetricsProvider.cs │ │ │ ├── CgroupMetricsProvider.cs │ │ │ ├── FreeAndTotalMemoryProvider.cs │ │ │ ├── GcMetricsProvider.cs │ │ │ ├── ProcessTotalCpuTimeProvider.cs │ │ │ ├── ProcessWorkingSetAndVirtualMemoryProvider.cs │ │ │ └── SystemTotalCpuProvider.cs │ │ └── Windows │ │ │ └── GlobalMemoryStatus.cs │ ├── Model │ │ ├── DbSpanCommon.cs │ │ ├── DroppedSpanStats.cs │ │ ├── Error.cs │ │ ├── ExecutionSegmentCommon.cs │ │ ├── Faas.cs │ │ ├── InstrumentationFlag.cs │ │ ├── LabelsDictionary.cs │ │ ├── Metadata.cs │ │ ├── NoopSpan.cs │ │ ├── NoopTransaction.cs │ │ ├── OTel.cs │ │ ├── Scanner.cs │ │ ├── SignatureParser.cs │ │ ├── Span.cs │ │ ├── SpanTimerKey.cs │ │ └── Transaction.cs │ ├── NOTICE │ ├── OpenTelemetry │ │ ├── ElasticActivityListener.cs │ │ └── SemanticConventions.cs │ ├── Reflection │ │ ├── CascadePropertyFetcher.cs │ │ ├── ExpressionBuilder.cs │ │ ├── PropertyFetcher.cs │ │ └── PropertyFetcherCollection.cs │ ├── Report │ │ ├── IPayloadSender.cs │ │ ├── IntakeResponse.cs │ │ ├── PayloadSenderV2.cs │ │ └── Serialization │ │ │ ├── CustomJsonConverter.cs │ │ │ ├── ElasticApmContractResolver.cs │ │ │ ├── LabelsJsonConverter.cs │ │ │ ├── MetricSetConverter.cs │ │ │ ├── OutcomeConverter.cs │ │ │ ├── PayloadItemSerializer.cs │ │ │ └── TruncateJsonConverter.cs │ ├── Sampler.cs │ └── ServerInfo │ │ ├── ApmServerInfo.cs │ │ ├── ApmServerInfoProvider.cs │ │ ├── ElasticVersion.cs │ │ └── IApmServerInfo.cs ├── azure │ ├── Elastic.Apm.Azure.CosmosDb │ │ ├── AzureCosmosDbDiagnosticsSubscriber.cs │ │ ├── AzureCosmosDbTracer.cs │ │ └── Elastic.Apm.Azure.CosmosDb.csproj │ ├── Elastic.Apm.Azure.Functions │ │ ├── ApmMiddleware.cs │ │ ├── AzureFunctionsContext.cs │ │ ├── AzureFunctionsDiagnosticListener.cs │ │ ├── AzureFunctionsDiagnosticSubscriber.cs │ │ ├── AzureFunctionsExtensions.cs │ │ └── Elastic.Apm.Azure.Functions.csproj │ ├── Elastic.Apm.Azure.ServiceBus │ │ ├── AzureMessagingServiceBusDiagnosticListener.cs │ │ ├── AzureMessagingServiceBusDiagnosticsSubscriber.cs │ │ ├── Elastic.Apm.Azure.ServiceBus.csproj │ │ ├── MicrosoftAzureServiceBusDiagnosticListener.cs │ │ ├── MicrosoftAzureServiceBusDiagnosticsSubscriber.cs │ │ └── ServiceBus.cs │ └── Elastic.Apm.Azure.Storage │ │ ├── AzureBlobStorageDiagnosticListener.cs │ │ ├── AzureBlobStorageDiagnosticsSubscriber.cs │ │ ├── AzureCoreDiagnosticListener.cs │ │ ├── AzureFileShareStorageDiagnosticListener.cs │ │ ├── AzureFileShareStorageDiagnosticsSubscriber.cs │ │ ├── AzureQueueStorageDiagnosticListener.cs │ │ ├── AzureQueueStorageDiagnosticsSubscriber.cs │ │ ├── BlobUrl.cs │ │ ├── Elastic.Apm.Azure.Storage.csproj │ │ ├── FileShareUrl.cs │ │ └── MicrosoftAzureBlobStorageTracer.cs ├── instrumentations │ ├── Elastic.Apm.Elasticsearch │ │ ├── AuditDiagnosticsListener.cs │ │ ├── Elastic.Apm.Elasticsearch.csproj │ │ ├── ElasticsearchDiagnosticsListenerBase.cs │ │ ├── ElasticsearchDiagnosticsSubscriber.cs │ │ ├── HttpConnectionDiagnosticsListener.cs │ │ ├── RequestPipelineDiagnosticsListener.cs │ │ └── SerializerDiagnosticsListener .cs │ ├── Elastic.Apm.EntityFramework6 │ │ ├── Ef6Interceptor.cs │ │ ├── Elastic.Apm.EntityFramework6.csproj │ │ └── README.md │ ├── Elastic.Apm.EntityFrameworkCore │ │ ├── EfCoreDiagnosticListener.cs │ │ ├── EfCoreDiagnosticsSubscriber.cs │ │ └── Elastic.Apm.EntityFrameworkCore.csproj │ ├── Elastic.Apm.GrpcClient │ │ ├── Elastic.Apm.GrpcClient.csproj │ │ ├── GrpcClientDiagnosticListener.cs │ │ └── GrpcClientDiagnosticSubscriber.cs │ ├── Elastic.Apm.MongoDb │ │ ├── Constants.cs │ │ ├── DiagnosticSource │ │ │ └── MongoDiagnosticListener.cs │ │ ├── Elastic.Apm.MongoDb.csproj │ │ ├── EventPayload.cs │ │ ├── LICENSE │ │ ├── LICENSE_LOCAL │ │ ├── MongoDbDiagnosticsSubscriber.cs │ │ ├── MongoDbEventSubscriber.cs │ │ ├── MongoListener.cs │ │ └── NOTICE │ └── Elastic.Apm.StackExchange.Redis │ │ ├── ConnectionMultiplexerExtensions.cs │ │ ├── Elastic.Apm.StackExchange.Redis.csproj │ │ └── ElasticApmProfiler.cs ├── integrations │ ├── Elastic.Apm.AspNetCore │ │ ├── ApplicationBuilderExtensions.cs │ │ ├── AspNetCoreHttpForm.cs │ │ ├── AspNetCoreHttpRequest.cs │ │ ├── Consts.cs │ │ ├── DiagnosticListener │ │ │ ├── AspNetCoreDiagnosticListener.cs │ │ │ └── AspNetCoreDiagnosticSubscriber.cs │ │ ├── Elastic.Apm.AspNetCore.csproj │ │ ├── Extensions │ │ │ └── RequestExtensions.cs │ │ ├── ServiceCollectionExtensions.cs │ │ └── WebRequestTransactionCreator.cs │ ├── Elastic.Apm.AspNetFullFramework │ │ ├── AgentComponentsUsingHttpContext.cs │ │ ├── AgentDependencies.cs │ │ ├── AspNetHttpForm.cs │ │ ├── AspNetHttpRequest.cs │ │ ├── AspNetVersion.cs │ │ ├── Elastic.Apm.AspNetFullFramework.csproj │ │ ├── ElasticApmModule.cs │ │ ├── ElasticApmModuleConfiguration.cs │ │ ├── Extensions │ │ │ ├── HttpRequestExtensions.cs │ │ │ └── SoapRequest.cs │ │ ├── HttpContextCurrentExecutionSegmentsContainer.cs │ │ ├── NOTICE │ │ ├── OpenIdClaimTypes.cs │ │ └── README.md │ ├── Elastic.Apm.Extensions.Hosting │ │ ├── ApmExtensionsLogger.cs │ │ ├── ApmService.cs │ │ ├── CompositeLogger.cs │ │ ├── Config │ │ │ └── ApmConfiguration.cs │ │ ├── Elastic.Apm.Extensions.Hosting.csproj │ │ ├── HostBuilderExtensions.cs │ │ └── ServiceCollectionExtensions.cs │ ├── Elastic.Apm.Extensions.Logging │ │ ├── ApmErrorLogger.cs │ │ ├── ApmErrorLoggingProvider.cs │ │ └── Elastic.Apm.Extensions.Logging.csproj │ └── Elastic.Apm.NetCoreAll │ │ ├── ApplicationBuilderExtensions.cs │ │ ├── Elastic.Apm.NetCoreAll.csproj │ │ ├── HostBuilderExtensions.cs │ │ └── ServiceCollectionExtensions.cs ├── profiler │ ├── Elastic.Apm.Profiler.IntegrationsGenerator │ │ ├── CommandLineOptions.cs │ │ ├── Elastic.Apm.Profiler.IntegrationsGenerator.csproj │ │ ├── Integration.cs │ │ ├── MethodReplacement.cs │ │ ├── Program.cs │ │ ├── Target.cs │ │ └── Wrapper.cs │ ├── Elastic.Apm.Profiler.Managed.Core │ │ ├── ClrTypeNames.cs │ │ ├── Elastic.Apm.Profiler.Managed.Core.csproj │ │ └── InstrumentAttribute.cs │ ├── Elastic.Apm.Profiler.Managed.Loader │ │ ├── Elastic.Apm.Profiler.Managed.Loader.csproj │ │ ├── Logger.cs │ │ ├── Startup.NetCore.cs │ │ ├── Startup.NetFramework.cs │ │ └── Startup.cs │ ├── Elastic.Apm.Profiler.Managed │ │ ├── AutoInstrumentation.cs │ │ ├── CallTarget │ │ │ ├── CallTargetInvoker.cs │ │ │ ├── CallTargetInvokerException.cs │ │ │ ├── CallTargetReturn.cs │ │ │ ├── CallTargetState.cs │ │ │ ├── Handlers │ │ │ │ ├── BeginMethodHandler.cs │ │ │ │ ├── BeginMethodHandler`1.cs │ │ │ │ ├── BeginMethodHandler`2.cs │ │ │ │ ├── BeginMethodHandler`3.cs │ │ │ │ ├── BeginMethodHandler`4.cs │ │ │ │ ├── BeginMethodHandler`5.cs │ │ │ │ ├── BeginMethodHandler`6.cs │ │ │ │ ├── BeginMethodHandler`7.cs │ │ │ │ ├── BeginMethodHandler`8.cs │ │ │ │ ├── BeginMethodSlowHandler.cs │ │ │ │ ├── Continuations │ │ │ │ │ ├── ContinuationGenerator.cs │ │ │ │ │ ├── ContinuationsHelper.cs │ │ │ │ │ ├── NoThrowAwaiter.cs │ │ │ │ │ ├── TaskContinuationGenerator.cs │ │ │ │ │ ├── TaskContinuationGenerator`1.cs │ │ │ │ │ ├── ValueTaskContinuationGenerator.cs │ │ │ │ │ └── ValueTaskContinuationGenerator`1.cs │ │ │ │ ├── CreateAsyncEndMethodResult.cs │ │ │ │ ├── EndMethodHandler.cs │ │ │ │ ├── EndMethodHandler`1.cs │ │ │ │ ├── IntegrationMapper.cs │ │ │ │ └── IntegrationOptions.cs │ │ │ └── PreserveContextAttribute.cs │ │ ├── DuckTyping │ │ │ ├── DuckAttribute.cs │ │ │ ├── DuckCopyAttribute.cs │ │ │ ├── DuckFieldAttribute.cs │ │ │ ├── DuckIgnoreAttribute.cs │ │ │ ├── DuckIncludeAttribute.cs │ │ │ ├── DuckReverseMethodAttribute.cs │ │ │ ├── DuckType.Fields.cs │ │ │ ├── DuckType.Methods.cs │ │ │ ├── DuckType.Properties.cs │ │ │ ├── DuckType.Statics.cs │ │ │ ├── DuckType.Utilities.cs │ │ │ ├── DuckType.cs │ │ │ ├── DuckTypeExceptions.cs │ │ │ ├── DuckTypeExtensions.cs │ │ │ ├── IDuckType.cs │ │ │ ├── ILHelpersExtensions.cs │ │ │ ├── IgnoresAccessChecksToAttribute.cs │ │ │ ├── LazyILGenerator.cs │ │ │ ├── README.md │ │ │ └── TypesTuple.cs │ │ ├── Elastic.Apm.Profiler.Managed.csproj │ │ ├── ExecutionSegmentExtensions.cs │ │ ├── Integrations │ │ │ ├── AdoNet │ │ │ │ ├── AdoNetTypeNames.cs │ │ │ │ ├── CommandExecuteNonQueryAsyncIntegration.cs │ │ │ │ ├── CommandExecuteNonQueryIntegration.cs │ │ │ │ ├── CommandExecuteNonQueryWithBehaviorIntegration.cs │ │ │ │ ├── CommandExecuteReaderAsyncIntegration.cs │ │ │ │ ├── CommandExecuteReaderIntegration.cs │ │ │ │ ├── CommandExecuteReaderWithBehaviorAsyncIntegration.cs │ │ │ │ ├── CommandExecuteReaderWithBehaviorIntegration.cs │ │ │ │ ├── CommandExecuteScalarAsyncIntegration.cs │ │ │ │ ├── CommandExecuteScalarIntegration.cs │ │ │ │ ├── CommandExecuteScalarWithBehaviorIntegration.cs │ │ │ │ └── DbSpanFactory.cs │ │ │ ├── AspNet │ │ │ │ └── ElasticApmModuleIntegration.cs │ │ │ ├── Kafka │ │ │ │ ├── CachedMessageHeadersHelper.cs │ │ │ │ ├── IConsumeException.cs │ │ │ │ ├── IConsumeResult.cs │ │ │ │ ├── IDeliveryReport.cs │ │ │ │ ├── IDeliveryResult.cs │ │ │ │ ├── IError.cs │ │ │ │ ├── IHeaders.cs │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IProduceException.cs │ │ │ │ ├── ITimestamp.cs │ │ │ │ ├── ITopicPartition.cs │ │ │ │ ├── ITypedDeliveryHandlerShimAction.cs │ │ │ │ ├── KafkaConsumerCloseIntegration.cs │ │ │ │ ├── KafkaConsumerConsumeIntegration.cs │ │ │ │ ├── KafkaConsumerDisposeIntegration.cs │ │ │ │ ├── KafkaConsumerUnsubscribeIntegration.cs │ │ │ │ ├── KafkaHeadersCollection.cs │ │ │ │ ├── KafkaIntegration.cs │ │ │ │ ├── KafkaProduceAsyncIntegration.cs │ │ │ │ ├── KafkaProduceSyncDeliveryHandlerIntegration.cs │ │ │ │ ├── KafkaProduceSyncIntegration.cs │ │ │ │ ├── Offset.cs │ │ │ │ └── Partition.cs │ │ │ └── RabbitMq │ │ │ │ ├── BasicDeliverIntegration.cs │ │ │ │ ├── BasicGetIntegration.cs │ │ │ │ ├── BasicPublishIntegration.cs │ │ │ │ ├── ContextPropagation.cs │ │ │ │ ├── IBasicGetResult.cs │ │ │ │ ├── IBasicProperties.cs │ │ │ │ ├── IBody.cs │ │ │ │ └── RabbitMQIntegration.cs │ │ ├── Reflection │ │ │ ├── DelegateMetadata.cs │ │ │ ├── DynamicMethodBuilder.cs │ │ │ ├── Interception.cs │ │ │ ├── MemberResult.cs │ │ │ ├── MethodBuilder.cs │ │ │ ├── ModuleLookup.cs │ │ │ ├── ObjectExtensions.cs │ │ │ ├── OpCodeValues.cs │ │ │ ├── PropertyFetcher.cs │ │ │ └── TypeExtensions.cs │ │ ├── TracerExtensions.cs │ │ └── integrations.yml │ └── elastic_apm_profiler │ │ ├── Cargo.toml │ │ ├── NOTICE │ │ ├── README │ │ ├── build.rs │ │ ├── elastic_apm_profiler.csproj │ │ └── src │ │ ├── cil │ │ ├── cor.rs │ │ ├── helpers.rs │ │ ├── instruction.rs │ │ ├── method.rs │ │ ├── mod.rs │ │ ├── opcode.rs │ │ └── section.rs │ │ ├── error.rs │ │ ├── ffi │ │ ├── mod.rs │ │ └── types.rs │ │ ├── interfaces │ │ ├── icor_profiler_assembly_reference_provider.rs │ │ ├── icor_profiler_callback.rs │ │ ├── icor_profiler_function_control.rs │ │ ├── icor_profiler_function_enum.rs │ │ ├── icor_profiler_info.rs │ │ ├── icor_profiler_method_enum.rs │ │ ├── icor_profiler_module_enum.rs │ │ ├── icor_profiler_object_enum.rs │ │ ├── icor_profiler_thread_enum.rs │ │ ├── imap_token.rs │ │ ├── imetadata_assembly_emit.rs │ │ ├── imetadata_assembly_import.rs │ │ ├── imetadata_dispenser.rs │ │ ├── imetadata_emit.rs │ │ ├── imetadata_import.rs │ │ ├── imethod_malloc.rs │ │ ├── istream.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ └── profiler │ │ ├── calltarget_tokens.rs │ │ ├── env.rs │ │ ├── helpers.rs │ │ ├── managed.rs │ │ ├── mod.rs │ │ ├── process.rs │ │ ├── rejit.rs │ │ ├── sig.rs │ │ ├── startup_hook.rs │ │ └── types.rs └── startuphook │ ├── Elastic.Apm.StartupHook.Loader │ ├── Elastic.Apm.StartupHook.Loader.csproj │ └── Loader.cs │ └── ElasticApmAgentStartupHook │ ├── ElasticApmAgentStartupHook.csproj │ ├── README.md │ ├── StartupHook.cs │ └── StartupHookLogger.cs ├── test ├── .runsettings ├── Directory.Build.props ├── Elastic.Apm.Feature.Tests │ ├── .gitignore │ ├── APMServerAuthenticationWithAPIKeyAndSecretTokenStepDefinitions.cs │ ├── CloudProviderSteps.cs │ ├── ConfigurationSteps.cs │ ├── Elastic.Apm.Feature.Tests.csproj │ ├── FeatureContexts │ │ └── ApiKeyFeatureContext.cs │ ├── Features │ │ ├── api_key.feature │ │ ├── azure_app_service_metadata.feature │ │ ├── azure_functions_metadata.feature │ │ ├── otel_bridge.feature │ │ ├── outcome.feature │ │ └── user_agent.feature │ ├── OpenTelemetryBridgeStepDefinitions.cs │ ├── OutcomeSteps.cs │ ├── PayloadCollector.cs │ ├── README.md │ ├── TestConfiguration.cs │ └── UserAgentSteps.cs ├── Elastic.Apm.Tests.MockApmServer │ ├── AssertValidExtensions.cs │ ├── CompositeDto.cs │ ├── ContextDto.cs │ ├── Controllers │ │ ├── AgentsConfigController.cs │ │ └── IntakeV2EventsController.cs │ ├── DroppedSpanStatsDto.cs │ ├── Elastic.Apm.Tests.MockApmServer.csproj │ ├── ErrorDto.cs │ ├── FaasDto.cs │ ├── FluentAssertionsExtensions.cs │ ├── IDto.cs │ ├── ITimedDto.cs │ ├── ITimestampedDto.cs │ ├── MetadataDto.cs │ ├── MetricSampleDto.cs │ ├── MetricSetDto.cs │ ├── MetricsAssertValid.cs │ ├── MockApmServer.cs │ ├── Program.cs │ ├── ReceivedData.cs │ ├── SpanContextDto.cs │ ├── SpanCountDto.cs │ ├── SpanDto.cs │ ├── SpanLinkDto.cs │ ├── Startup.cs │ ├── TransactionDto.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── cert.pfx ├── Elastic.Apm.Tests.Utilities │ ├── AgentTimerForTesting.cs │ ├── ApmAgentTestExtensions.cs │ ├── Azure │ │ ├── AzureCredentials.cs │ │ ├── AzureCredentialsFactAttribute.cs │ │ ├── AzureResourceException.cs │ │ └── AzureResources.cs │ ├── CGroupTestCasesAttribute.cs │ ├── Data │ │ └── TransactionMaxSpansTestData.cs │ ├── DummyTestException.cs │ ├── Elastic.Apm.Tests.Utilities.csproj │ ├── EnumerableExtensions.cs │ ├── EnumerableTestExtensions.cs │ ├── EnvVarUtils.cs │ ├── FakeMetricsCollector.cs │ ├── FluentAssertionsUtils.cs │ ├── FlushingTextWriterToLineWriterAdaptor.cs │ ├── FlushingTextWriterToLoggerAdaptor.cs │ ├── ILineWriter.cs │ ├── InMemoryBlockingLogger.cs │ ├── IntExtensions.cs │ ├── JsonFileDataAttribute.cs │ ├── JsonUtils.cs │ ├── LineWriterToLoggerAdaptor.cs │ ├── LocalPort.cs │ ├── LocalServer.cs │ ├── LoggingTestBase.cs │ ├── MockAgentTimer.cs │ ├── MockApmServerInfo.cs │ ├── MockConfiguration.cs │ ├── MockHttpMessageHandler.cs │ ├── MockPayloadSender.cs │ ├── MockPayloadSenderWithFilters.cs │ ├── MultiThreadsTestUtils.cs │ ├── NoopCentralConfigurationFetcher.cs │ ├── NoopCurrentExecutionSegmentsContainer.cs │ ├── NoopLogger.cs │ ├── NoopPayloadSender.cs │ ├── README.md │ ├── RandomTestHelper.cs │ ├── ShouldWaitDurationExtensions.cs │ ├── SolutionPaths.cs │ ├── SplittingLineWriter.cs │ ├── SystemDiagnosticsTraceLineWriter.cs │ ├── TaskTestExtensions.cs │ ├── TempFile.cs │ ├── Terraform │ │ ├── TerraformResourceException.cs │ │ └── TerraformResources.cs │ ├── TestAgentComponents.cs │ ├── TestEnvironment.cs │ ├── TestEnvironmentVariables.cs │ ├── TestHostNameDetector.cs │ ├── TestLogger.cs │ ├── TestResources │ │ └── json-specs │ │ │ ├── container_metadata_discovery.json │ │ │ ├── service_resource_inference.json │ │ │ ├── span_types.json │ │ │ ├── sql_signature_examples.json │ │ │ ├── sql_token_examples.json │ │ │ ├── w3c_distributed_tracing.json │ │ │ └── wildcard_matcher_tests.json │ ├── TestingConfig.cs │ ├── ThreadSafeIntCounter.cs │ ├── ThreadSafeLongCounter.cs │ ├── ToAllSinksLogger.cs │ ├── UnitTestLogger.cs │ ├── WaitExtensions.cs │ ├── XUnit │ │ ├── CaptureRestoreActivityIdFormat.cs │ │ ├── DisabledOnWindowsFact.cs │ │ ├── DisabledOnWindowsTheory.cs │ │ ├── DisabledTestFact.cs │ │ ├── DockerAttributes.cs │ │ ├── FactRequiresMvcTestingFix.cs │ │ ├── MemberData.cs │ │ └── XUnitLogger.cs │ └── XunitOutputToLineWriterAdaptor.cs ├── Elastic.Apm.Tests │ ├── ActivityIntegrationTests.cs │ ├── ApiTests │ │ ├── ApiTests.cs │ │ ├── ConvenientApiSpanTests.cs │ │ ├── ConvenientApiTransactionTests.cs │ │ ├── CulpritTests.cs │ │ ├── DistributedTracingDataTests.cs │ │ ├── ExitSpanTests.cs │ │ └── UrlTests.cs │ ├── ApmServerInfoProviderTests.cs │ ├── BackendCommTests │ │ ├── BackendCommUtilsTests.cs │ │ ├── CentralConfig │ │ │ ├── CentralConfigFetcherTests.cs │ │ │ └── CentralConfigResponseParserTests.cs │ │ ├── PayloadSenderTests.cs │ │ └── ServiceActivationTests.cs │ ├── BasicAgentTests.cs │ ├── BreakdownTests.cs │ ├── Cloud │ │ ├── AwsCloudMetadataProviderTests.cs │ │ ├── AzureAppServiceMetadataProviderTests.cs │ │ ├── AzureCloudMetadataProviderTests.cs │ │ ├── AzureFunctionsMetadataProviderTests.cs │ │ ├── CloudMetadataProviderCollectionTests.cs │ │ └── GcpCloudMetadataProviderTests.cs │ ├── Config │ │ ├── ConfigTests.cs │ │ ├── ConfigurationLoggingPreambleTests.cs │ │ ├── GlobalLogConfigurationPrecedenceTests.cs │ │ └── GlobalLogConfigurationTests.cs │ ├── ConstructorTests.cs │ ├── DbSpanNameTests.cs │ ├── DiagnosticSource │ │ └── DiagnosticListenerTests.cs │ ├── DistributedTracing │ │ ├── BaggageTests.cs │ │ ├── DistributedTracingTests.cs │ │ └── TraceStateTests.cs │ ├── DroppedSpansStatsTests.cs │ ├── Elastic.Apm.Tests.csproj │ ├── EnabledAndRecordingTests.cs │ ├── ErrorTests.cs │ ├── ExitSpanMinDurationTests.cs │ ├── ExitSpanTests.cs │ ├── Extensions │ │ ├── EnumerableExtensionsTests.cs │ │ └── EnvironmentVariablesExtensionsTests.cs │ ├── Features │ │ └── AgentFeaturesProviderTests.cs │ ├── FilterTests.cs │ ├── HelpersTests │ │ ├── AgentSpinLockTests.cs │ │ ├── AgentTimeInstantTests.cs │ │ ├── AgentTimerTests.cs │ │ ├── AssertionTests.cs │ │ ├── CollectionExtensionsTests.cs │ │ ├── ContractExtensionsTests.cs │ │ ├── CookieHeaderRedactionFilterTests.cs │ │ ├── DbConnectionStringParserTests.cs │ │ ├── DbgUtilsTests.cs │ │ ├── DisposableHelperTests.cs │ │ ├── DistributedTracingDataHelper.cs │ │ ├── ExceptionUtilsTests.cs │ │ ├── IntExtensionsTests.cs │ │ ├── LazyContextualInitTests.cs │ │ ├── LazyContextualInitTestsHelpers.cs │ │ ├── ObjectExtensionsTests.cs │ │ ├── PlatformDetectionTests.cs │ │ ├── PropertyFetcherTests.cs │ │ ├── StringExtensionsTests.cs │ │ ├── TextUtilsTests.cs │ │ ├── TimeExtensionsTests.cs │ │ ├── TimeUtilsTests.cs │ │ ├── ToStringBuilderTests.cs │ │ └── UrlUtilsTests.cs │ ├── HttpDiagnosticListenerTests.cs │ ├── InstrumentationFlagTests.cs │ ├── LabelTests.cs │ ├── LibrariesTests.cs │ ├── ListExtensionsTests.cs │ ├── LogValuesFormatterTests.cs │ ├── LoggerTests.cs │ ├── Metrics │ │ ├── CgroupMetricsProviderTests.cs │ │ ├── FreeAndTotalMemoryProviderTests.cs │ │ └── Linux │ │ │ └── GlobalMemoryStatusTests.cs │ ├── MetricsTests.cs │ ├── NetCoreAndNetFact.cs │ ├── SamplerTests.cs │ ├── SerializationTests.cs │ ├── ServerCertificateTests.cs │ ├── ServiceResourceTests.cs │ ├── SpanCompressionTests.cs │ ├── SpanTests.cs │ ├── SpecTests.cs │ ├── StackTraceTests.cs │ ├── SystemInfoHelperTests.cs │ ├── TestHelpers │ │ ├── CgroupFileHelper.cs │ │ ├── EnumerableTestExtensionsTests.cs │ │ ├── MultiThreadsTestUtilsTests.cs │ │ ├── RandomTestHelperTests.cs │ │ ├── TestingConfigTests.cs │ │ └── TextUtilsTests.cs │ ├── TransactionActivityTests.cs │ ├── TransactionGroupNamesTests.cs │ ├── TransactionIgnoreUrlsTests.cs │ ├── TransactionSamplingTests.cs │ ├── UnsampledTransactionTests.cs │ ├── Utilities │ │ ├── AgentFeaturesProviderScope.cs │ │ └── MockAgentTimerTests.cs │ ├── WildcardMatcherTests.cs │ └── WorkingLoopTests.cs ├── azure │ ├── Elastic.Apm.Azure.CosmosDb.Tests │ │ ├── AzureCosmosDbTestEnvironment.cs │ │ ├── DocumentItem.cs │ │ ├── Elastic.Apm.Azure.CosmosDb.Tests.csproj │ │ ├── MicrosoftAzureCosmosTests.cs │ │ └── MicrosoftAzureDocumentDbTests.cs │ ├── Elastic.Apm.Azure.Functions.Tests │ │ ├── AzureFunctionsInProcessTests.cs │ │ ├── AzureFunctionsIsolatedTests.cs │ │ ├── AzureFunctionsTestBase.cs │ │ ├── AzureFunctionsTestFixture.cs │ │ └── Elastic.Apm.Azure.Functions.Tests.csproj │ ├── Elastic.Apm.Azure.ServiceBus.Tests │ │ ├── Azure │ │ │ ├── AzureServiceBusTestEnvironment.cs │ │ │ ├── QueueScope.cs │ │ │ └── TopicScope.cs │ │ ├── AzureMessagingServiceBusDiagnosticListenerTests.cs │ │ ├── Elastic.Apm.Azure.ServiceBus.Tests.csproj │ │ └── MicrosoftAzureServiceBusDiagnosticListenerTests.cs │ ├── Elastic.Apm.Azure.Storage.Tests │ │ ├── AzureBlobStorageDiagnosticListenerTests.cs │ │ ├── AzureFileShareStorageDiagnosticListenerTests.cs │ │ ├── AzureQueueStorageDiagnosticListenerTests.cs │ │ ├── AzureStorageTestEnvironment.cs │ │ ├── BlobContainerScope.cs │ │ ├── BlobStorageTestsBase.cs │ │ ├── Elastic.Apm.Azure.Storage.Tests.csproj │ │ ├── FileShareScope.cs │ │ └── MicrosoftAzureBlobStorageTracerTests.cs │ ├── README.md │ └── applications │ │ ├── Elastic.Apm.AzureFunctionApp.Core │ │ ├── Elastic.Apm.AzureFunctionApp.Core.csproj │ │ └── Program.cs │ │ ├── Elastic.AzureFunctionApp.InProcess │ │ ├── Elastic.AzureFunctionApp.InProcess.csproj │ │ ├── Properties │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── Startup.cs │ │ ├── Triggers.cs │ │ ├── host.json │ │ └── local.settings.json │ │ └── Elastic.AzureFunctionApp.Isolated │ │ ├── Elastic.AzureFunctionApp.Isolated.csproj │ │ ├── HttpTrigger.cs │ │ ├── Program.cs │ │ ├── host.json │ │ └── local.settings.json ├── iis │ ├── AspNetFullFrameworkSampleApp │ │ ├── ActionFilters │ │ │ └── RedirectIfAuthenticatedAttribute.cs │ │ ├── App_Start │ │ │ ├── ApmLoggerToNLog.cs │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── LoggingConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ ├── Startup.cs │ │ │ └── WebApiConfig.cs │ │ ├── Areas │ │ │ └── MyArea │ │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ │ ├── MyAreaRegistration.cs │ │ │ │ ├── Views │ │ │ │ └── Home │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ ├── Asmx │ │ │ ├── Health.asmx │ │ │ └── Health.asmx.cs │ │ ├── AspNetFullFrameworkSampleApp.csproj │ │ ├── Bootstrap │ │ │ ├── Alert.cs │ │ │ └── AlertStatus.cs │ │ ├── Consts.cs │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── AttributeRoutingWebApiController.cs │ │ │ ├── ControllerBase.cs │ │ │ ├── DatabaseController.cs │ │ │ ├── DiagnosticsController.cs │ │ │ ├── HomeController.cs │ │ │ └── WebApiController.cs │ │ ├── Data │ │ │ ├── SampleData.cs │ │ │ └── SampleDataDbContext.cs │ │ ├── Extensions │ │ │ └── TempDataExtensions.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models │ │ │ ├── ApplicationUser.cs │ │ │ ├── CreateSampleDataViewModel.cs │ │ │ ├── DiagnosticsViewModel.cs │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ └── ResetPasswordViewModel.cs │ │ ├── Mvc │ │ │ ├── JsonBadRequestResult.cs │ │ │ ├── JsonNetValueProviderFactory.cs │ │ │ └── StreamResult.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── README.md │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── esm │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ └── popper.min.js.map │ │ │ ├── index.d.ts │ │ │ ├── jquery-3.3.1.intellisense.js │ │ │ ├── jquery-3.3.1.js │ │ │ ├── jquery-3.3.1.min.js │ │ │ ├── jquery-3.3.1.min.map │ │ │ ├── jquery-3.3.1.slim.js │ │ │ ├── jquery-3.3.1.slim.min.js │ │ │ ├── jquery-3.3.1.slim.min.map │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.8.3.js │ │ │ ├── popper-utils.js │ │ │ ├── popper-utils.js.map │ │ │ ├── popper-utils.min.js │ │ │ ├── popper-utils.min.js.map │ │ │ ├── popper.js │ │ │ ├── popper.js.map │ │ │ ├── popper.min.js │ │ │ ├── popper.min.js.map │ │ │ └── umd │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ └── popper.min.js.map │ │ ├── Services │ │ │ └── Auth │ │ │ │ ├── ApplicationSignInManager.cs │ │ │ │ ├── ApplicationUserClaimsIdentityFactory.cs │ │ │ │ └── ApplicationUserManager.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── ConfirmEmail.cshtml │ │ │ │ ├── ForgotPassword.cshtml │ │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── Register.cshtml │ │ │ │ ├── ResetPassword.cshtml │ │ │ │ └── ResetPasswordConfirmation.cshtml │ │ │ ├── Database │ │ │ │ ├── Create.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Diagnostics │ │ │ │ └── Index.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ ├── Cookies.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── Webforms.aspx │ │ ├── Webforms.aspx.cs │ │ ├── WebformsException.aspx │ │ ├── WebformsException.aspx.cs │ │ └── favicon.ico │ ├── Elastic.Apm.AspNetFullFramework.Tests │ │ ├── AspNetFullFrameworkFact.cs │ │ ├── AspNetFullFrameworkTheory.cs │ │ ├── BodyCapturingTests.cs │ │ ├── CaptureHeadersConfigDisabledTest.cs │ │ ├── CaptureUserTests.cs │ │ ├── CentralConfigTests.cs │ │ ├── Consts.cs │ │ ├── CustomEnvironmentViaSettings.cs │ │ ├── CustomFlushInterval.cs │ │ ├── CustomServiceNameSetViaSettings.cs │ │ ├── CustomServiceNodeNameViaSettings.cs │ │ ├── DbSpanTests.cs │ │ ├── DistributedTracingTests.cs │ │ ├── Elastic.Apm.AspNetFullFramework.Tests.csproj │ │ ├── ErrorsTests.cs │ │ ├── GlobalLabelsTests.cs │ │ ├── HttpContextCurrentExecutionSegmentsContainerTests.cs │ │ ├── IisAdministration.cs │ │ ├── LabelsTests.cs │ │ ├── MetadataTests.cs │ │ ├── MetricsTestsBase.cs │ │ ├── MetricsWithAccessToPerfCountersTests.cs │ │ ├── MetricsWithoutAccessToPerfCountersTests.cs │ │ ├── README.md │ │ ├── RedactFieldNamesTests.cs │ │ ├── SampleRate0Tests.cs │ │ ├── Soap │ │ │ ├── SoapParsingTests.cs │ │ │ └── SoapRequestTests.cs │ │ ├── TestWithDefaultSettings.cs │ │ ├── TestsBase.cs │ │ ├── TestsEnabledDetector.cs │ │ ├── TestsWithApmServerStopped.cs │ │ ├── TestsWithSampleAppLogDisabled.cs │ │ ├── TimedEvent.cs │ │ ├── TransactionIgnoreUrlsTest.cs │ │ ├── TransactionNameGroupsTests.cs │ │ ├── TransactionNameTests.cs │ │ ├── UsePathAsTransactionNameTests.cs │ │ └── WebApiTests.cs │ └── Elastic.Apm.FullFramework.Tests │ │ ├── AppSettingsTests.cs │ │ └── Elastic.Apm.FullFramework.Tests.csproj ├── instrumentations │ ├── Elastic.Apm.Docker.Tests │ │ ├── BasicDockerTests.cs │ │ ├── ContainerIdCalculationTests.cs │ │ └── Elastic.Apm.Docker.Tests.csproj │ ├── Elastic.Apm.Elasticsearch.Tests │ │ ├── Elastic.Apm.Elasticsearch.Tests.csproj │ │ ├── ElasticsearchFixture.cs │ │ ├── ElasticsearchTests.cs │ │ ├── TraceContextTests.cs │ │ └── VirtualElasticsearchTests.cs │ ├── Elastic.Apm.EntityFramework6.Tests │ │ ├── Ef6Tests.cs │ │ └── Elastic.Apm.EntityFramework6.Tests.csproj │ ├── Elastic.Apm.EntityFrameworkCore.Tests │ │ ├── EfCoreDiagnosticListenerTests.cs │ │ ├── Elastic.Apm.EntityFrameworkCore.Tests.csproj │ │ ├── ExternalDbTests.cs │ │ └── FakeDbContext.cs │ ├── Elastic.Apm.MongoDb.Tests │ │ ├── Elastic.Apm.MongoDb.Tests.csproj │ │ ├── Fixture │ │ │ ├── IMongoConfiguration.cs │ │ │ └── MongoFixture.cs │ │ ├── LICENSE │ │ └── MongoApmTests.cs │ ├── Elastic.Apm.SqlClient.Tests │ │ ├── EfCoreWithMsSqlTests.cs │ │ ├── Elastic.Apm.SqlClient.Tests.csproj │ │ ├── SqlClientListenerTests.cs │ │ ├── SqlServerCollection.cs │ │ └── SqlServerFixture.cs │ ├── Elastic.Apm.StackExchange.Redis.Tests │ │ ├── ConnectionMultiplexerExtensionTests.cs │ │ ├── Elastic.Apm.StackExchange.Redis.Tests.csproj │ │ └── ProfilingSessionTests.cs │ ├── Elastic.Clients.Elasticsearch.Tests │ │ ├── Elastic.Clients.Elasticsearch.Tests.csproj │ │ ├── ElasticsearchTestFixture.cs │ │ ├── ElasticsearchTests.cs │ │ └── README.md │ └── grpc │ │ ├── Elastic.Apm.Grpc.Tests │ │ ├── Elastic.Apm.Grpc.Tests.csproj │ │ ├── GrpcTests.cs │ │ ├── SampleAppHostBuilder.cs │ │ └── Services │ │ │ └── GreeterService.cs │ │ ├── GrpcClientSample │ │ ├── GrpcClientSample.csproj │ │ └── Program.cs │ │ └── GrpcServiceSample │ │ ├── GrpcServiceSample.csproj │ │ ├── Program.cs │ │ ├── Protos │ │ └── greet.proto │ │ ├── Services │ │ └── GreeterService.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── integrations │ ├── Elastic.Apm.AspNetCore.Static.Tests │ │ ├── ConfigTests.cs │ │ ├── Elastic.Apm.AspNetCore.Static.Tests.csproj │ │ └── TestConfigs │ │ │ └── appsettings_agentdisabled.json │ ├── Elastic.Apm.AspNetCore.Tests │ │ ├── ApmConfigurationTests.cs │ │ ├── ApplicationBuilderExtensionLoggingTest.cs │ │ ├── AspNetCoreBasicTests.cs │ │ ├── AspNetCoreDiagnosticListenerTest.cs │ │ ├── AspNetCoreLoggerTests.cs │ │ ├── BaggageAspNetCoreTests.cs │ │ ├── BodyCapturingTests.cs │ │ ├── CaptureUserTest.cs │ │ ├── DiagnosticListenerTests.cs │ │ ├── DisableActivityHandler.cs │ │ ├── DistributedTracingAspNetCoreTests.cs │ │ ├── Elastic.Apm.AspNetCore.Tests.csproj │ │ ├── FailedRequestTests.cs │ │ ├── Helper.cs │ │ ├── MultiApplicationTestBase.cs │ │ ├── SanitizeFieldNamesTests.cs │ │ ├── TestConfigs │ │ │ ├── appsettings_invalid.json │ │ │ └── appsettings_valid.json │ │ ├── TraceIdWithActivityTests.cs │ │ ├── TransactionExtensionTests.cs │ │ ├── TransactionIgnoreUrlsTest.cs │ │ ├── TransactionNameTests.cs │ │ ├── TransactionQueueTests.cs │ │ └── XUnitLoggerProvider.cs │ ├── Elastic.Apm.Extensions.Hosting.Tests │ │ ├── Elastic.Apm.Extensions.Hosting.Tests.csproj │ │ └── HostingTests.cs │ ├── Elastic.Apm.Extensions.Logging.Tests │ │ ├── CaptureApmErrorsTests.cs │ │ └── Elastic.Apm.Extensions.Logging.Tests.csproj │ ├── Elastic.Apm.Extensions.Tests.Shared │ │ ├── Elastic.Apm.Extensions.Tests.Shared.csproj │ │ └── ExtensionsTestHelpers.cs │ ├── Elastic.Apm.StaticExplicitInitialization.Tests │ │ ├── Elastic.Apm.StaticExplicitInitialization.Tests.csproj │ │ └── StaticImplicitInitializationTests.cs │ ├── Elastic.Apm.StaticImplicitInitialization.Tests │ │ ├── Elastic.Apm.StaticImplicitInitialization.Tests.csproj │ │ └── ImplicitInitializationTests.cs │ └── applications │ │ ├── HostingTestApp │ │ ├── HostingTestApp.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ │ ├── SampleAspNetCoreApp │ │ ├── Areas │ │ │ ├── MyArea │ │ │ │ ├── Controllers │ │ │ │ │ └── HomeController.cs │ │ │ │ └── Views │ │ │ │ │ └── Home │ │ │ │ │ └── Index.cshtml │ │ │ └── MyOtherArea │ │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ │ └── Views │ │ │ │ └── Home │ │ │ │ └── Index.cshtml │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ └── HomeController.cs │ │ ├── Data │ │ │ ├── CsvDataReader.cs │ │ │ ├── HistoricalData │ │ │ │ └── ESTC.csv │ │ │ ├── SampleData.cs │ │ │ └── SampleDataContext.cs │ │ ├── Migrations │ │ │ ├── 20190402111620_InitDbWithAuthentication.Designer.cs │ │ │ ├── 20190402111620_InitDbWithAuthentication.cs │ │ │ └── SampleDataContextModelSnapshot.cs │ │ ├── Models │ │ │ ├── ErrorViewModel.cs │ │ │ └── HistoricalValue.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── SampleAspNetCoreApp.csproj │ │ ├── Startup.cs │ │ ├── Utils │ │ │ └── CpuBurner.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── Login.cshtml │ │ │ │ └── Register.cshtml │ │ │ ├── Home │ │ │ │ ├── AddSampleData.cshtml │ │ │ │ ├── ChartPage.cshtml │ │ │ │ ├── CookiePage.cshtml │ │ │ │ ├── DistributedTracingMiniSample.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Privacy.cshtml │ │ │ │ └── SimplePage.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ └── banner3.svg │ │ │ ├── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── SampleConsoleNetCoreApp │ │ ├── HostedService.cs │ │ ├── Program.cs │ │ ├── SampleConsoleNetCoreApp.csproj │ │ └── appsettings.json │ │ └── WebApiSample │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── WebApiSample.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── opentelemetry │ ├── Elastic.Apm.OpenTelemetry.Tests │ │ ├── Elastic.Apm.OpenTelemetry.Tests.csproj │ │ └── OpenTelemetryTests.cs │ └── OpenTelemetrySample │ │ ├── OTSamples.cs │ │ ├── OpenTelemetrySample.csproj │ │ └── Program.cs ├── profiler │ ├── Elastic.Apm.Profiler.Managed.Tests │ │ ├── AdoNet │ │ │ ├── AdoNetTestData.cs │ │ │ ├── MySqlCommandTests.cs │ │ │ ├── MySqlFixture.cs │ │ │ ├── NpgSqlCommandTests.cs │ │ │ ├── OracleManagedDataAccessCommandTests.cs │ │ │ ├── OracleManagedDataAccessCoreCommandTests.cs │ │ │ ├── OracleSqlFixture.cs │ │ │ ├── PostgreSqlFixture.cs │ │ │ ├── SqlCommandTests.cs │ │ │ ├── SqlServerFixture.cs │ │ │ └── SqliteCommandTests.cs │ │ ├── AspNetCore │ │ │ └── AspNetCoreTests.cs │ │ ├── BasicTests.cs │ │ ├── Continuations │ │ │ ├── TaskContinuationGeneratorTests.cs │ │ │ └── ValueTaskContinuationGeneratorTests.cs │ │ ├── DuckTyping │ │ │ ├── DuckExplicitInterfaceTests.cs │ │ │ ├── DuckIgnoreTests.cs │ │ │ ├── DuckIncludeTests.cs │ │ │ ├── DuckTypeExtensionsTests.cs │ │ │ ├── ExceptionsTests.cs │ │ │ ├── Fields │ │ │ │ ├── ReferenceType │ │ │ │ │ ├── ProxiesDefinitions │ │ │ │ │ │ ├── IObscureDuckType.cs │ │ │ │ │ │ ├── IObscureReadonlyErrorDuckType.cs │ │ │ │ │ │ ├── IObscureStaticReadonlyErrorDuckType.cs │ │ │ │ │ │ ├── ObscureDuckTypeAbstractClass.cs │ │ │ │ │ │ └── ObscureDuckTypeVirtualClass.cs │ │ │ │ │ └── ReferenceTypeFieldTests.cs │ │ │ │ ├── TypeChaining │ │ │ │ │ ├── ProxiesDefinitions │ │ │ │ │ │ ├── IDummyFieldObject.cs │ │ │ │ │ │ ├── IObscureDuckType.cs │ │ │ │ │ │ ├── IObscureReadonlyErrorDuckType.cs │ │ │ │ │ │ ├── IObscureStaticReadonlyErrorDuckType.cs │ │ │ │ │ │ ├── ObscureDuckTypeAbstractClass.cs │ │ │ │ │ │ └── ObscureDuckTypeVirtualClass.cs │ │ │ │ │ └── TypeChainingFieldTests.cs │ │ │ │ └── ValueType │ │ │ │ │ ├── ProxiesDefinitions │ │ │ │ │ ├── IObscureDuckType.cs │ │ │ │ │ ├── IObscureReadonlyErrorDuckType.cs │ │ │ │ │ ├── IObscureStaticReadonlyErrorDuckType.cs │ │ │ │ │ ├── ObscureDuckTypeAbstractClass.cs │ │ │ │ │ └── ObscureDuckTypeVirtualClass.cs │ │ │ │ │ └── ValueTypeFieldTests.cs │ │ │ ├── Methods │ │ │ │ ├── MethodTests.cs │ │ │ │ └── ProxiesDefinitions │ │ │ │ │ ├── AbstractGenericsWithAttribute.cs │ │ │ │ │ ├── DefaultGenericMethodDuckTypeAbstractClass.cs │ │ │ │ │ ├── DefaultGenericMethodDuckTypeVirtualClass.cs │ │ │ │ │ ├── IDefaultGenericMethodDuckType.cs │ │ │ │ │ ├── IDictioDuckType.cs │ │ │ │ │ ├── IDictioValue.cs │ │ │ │ │ ├── IDummyFieldObject.cs │ │ │ │ │ ├── IGenericsWithAttribute.cs │ │ │ │ │ ├── IObscureDuckType.cs │ │ │ │ │ ├── ObscureDuckTypeAbstractClass.cs │ │ │ │ │ ├── ObscureDuckTypeVirtualClass.cs │ │ │ │ │ ├── TestEnum2.cs │ │ │ │ │ └── VirtualGenericsWithAttribute.cs │ │ │ ├── ObscureObject.cs │ │ │ ├── Properties │ │ │ │ ├── ReferenceType │ │ │ │ │ ├── ProxiesDefinitions │ │ │ │ │ │ ├── IDuckTypeUnion.cs │ │ │ │ │ │ ├── IObscureDuckType.cs │ │ │ │ │ │ ├── IObscureErrorDuckType.cs │ │ │ │ │ │ ├── IObscureStaticErrorDuckType.cs │ │ │ │ │ │ ├── ObscureDuckTypeAbstractClass.cs │ │ │ │ │ │ ├── ObscureDuckTypeStruct.cs │ │ │ │ │ │ └── ObscureDuckTypeVirtualClass.cs │ │ │ │ │ └── ReferenceTypePropertyTests.cs │ │ │ │ ├── TypeChaining │ │ │ │ │ ├── ProxiesDefinitions │ │ │ │ │ │ ├── DummyFieldStruct.cs │ │ │ │ │ │ ├── IDummyFieldObject.cs │ │ │ │ │ │ ├── IObscureDuckType.cs │ │ │ │ │ │ ├── IObscureErrorDuckType.cs │ │ │ │ │ │ ├── IObscureStaticErrorDuckType.cs │ │ │ │ │ │ ├── ITypesTuple.cs │ │ │ │ │ │ ├── ObscureDuckTypeAbstractClass.cs │ │ │ │ │ │ ├── ObscureDuckTypeStruct.cs │ │ │ │ │ │ └── ObscureDuckTypeVirtualClass.cs │ │ │ │ │ └── TypeChainingPropertyTests.cs │ │ │ │ └── ValueType │ │ │ │ │ ├── ProxiesDefinitions │ │ │ │ │ ├── IObscureDuckType.cs │ │ │ │ │ ├── IObscureErrorDuckType.cs │ │ │ │ │ ├── IObscureStaticErrorDuckType.cs │ │ │ │ │ ├── IStructDuckType.cs │ │ │ │ │ ├── ObscureDuckTypeAbstractClass.cs │ │ │ │ │ ├── ObscureDuckTypeStruct.cs │ │ │ │ │ └── ObscureDuckTypeVirtualClass.cs │ │ │ │ │ └── ValueTypePropertyTests.cs │ │ │ ├── StructTests.cs │ │ │ └── TypesTupleTests.cs │ │ ├── Elastic.Apm.Profiler.Managed.Tests.csproj │ │ ├── ExcludeTests.cs │ │ ├── Kafka │ │ │ ├── KafkaFixture.cs │ │ │ └── KafkaTests.cs │ │ ├── ProfiledApplication.cs │ │ ├── RabbitMq │ │ │ ├── RabbitMqFixture.cs │ │ │ └── RabbitMqTests.cs │ │ └── SatelliteAssemblyTests.cs │ └── applications │ │ ├── Elastic.Apm.AdoNet.NetStandard │ │ ├── DbCommandExecutor.cs │ │ ├── DbCommandNetStandardClassExecutor.cs │ │ ├── DbCommandNetStandardInterfaceExecutor.cs │ │ ├── DbCommandNetStandardInterfaceGenericExecutor.cs │ │ ├── Elastic.Apm.AdoNet.NetStandard.csproj │ │ └── IDbCommandExecutor.cs │ │ ├── Elastic.Apm.AdoNet │ │ ├── DbCommandClassExecutor.cs │ │ ├── DbCommandExtensions.cs │ │ ├── DbCommandFactory.cs │ │ ├── DbCommandInterfaceExecutor.cs │ │ ├── DbCommandInterfaceGenericExecutor.cs │ │ ├── DbCommandRunner.cs │ │ └── Elastic.Apm.AdoNet.csproj │ │ ├── KafkaSample │ │ ├── Consumer.cs │ │ ├── KafkaSample.csproj │ │ ├── Producer.cs │ │ ├── Program.cs │ │ └── SampleMessage.cs │ │ ├── MySqlDataSample │ │ ├── MySqlDataCommandExecutor.cs │ │ ├── MySqlDataSample.csproj │ │ └── Program.cs │ │ ├── NpgsqlSample │ │ ├── NpgsqlCommandExecutor.cs │ │ ├── NpgsqlSample.csproj │ │ └── Program.cs │ │ ├── OracleManagedDataAccessCoreSample │ │ ├── OracleCommandExecutor.cs │ │ ├── OracleDbCommandFactory.cs │ │ ├── OracleManagedDataAccessCoreSample.csproj │ │ └── Program.cs │ │ ├── OracleManagedDataAccessSample │ │ ├── OracleCommandExecutor.cs │ │ ├── OracleDbCommandFactory.cs │ │ ├── OracleManagedDataAccessSample.csproj │ │ └── Program.cs │ │ ├── RabbitMqSample │ │ ├── Program.cs │ │ └── RabbitMqSample.csproj │ │ ├── SatelliteAssemblySample │ │ ├── Program.cs │ │ └── SatelliteAssemblySample.csproj │ │ ├── SqlClientSample │ │ ├── Program.cs │ │ ├── SqlClientSample.csproj │ │ └── SqlCommandExecutor.cs │ │ └── SqliteSample │ │ ├── Program.cs │ │ ├── SqliteCommandExecutor.cs │ │ └── SqliteSample.csproj ├── startuphook │ ├── Elastic.Apm.StartupHook.Sample │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Elastic.Apm.StartupHook.Sample.csproj │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ ├── Program.cs │ │ ├── README.md │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Index.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ └── Elastic.Apm.StartupHook.Tests │ │ ├── DotnetProject.cs │ │ ├── Elastic.Apm.StartupHook.Tests.csproj │ │ ├── SampleApplication.cs │ │ ├── SolutionPaths.cs │ │ └── StartupHookTests.cs └── xunit.runner.json ├── update-compose.yaml └── xunit.runner.json /.ci/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.ci/deploy.sh -------------------------------------------------------------------------------- /.ci/updatecli/values.d/apm-data-spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.ci/updatecli/values.d/apm-data-spec.yml -------------------------------------------------------------------------------- /.ci/updatecli/values.d/apm-gherkin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.ci/updatecli/values.d/apm-gherkin.yml -------------------------------------------------------------------------------- /.ci/updatecli/values.d/apm-json-specs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.ci/updatecli/values.d/apm-json-specs.yml -------------------------------------------------------------------------------- /.ci/updatecli/values.d/scm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.ci/updatecli/values.d/scm.yml -------------------------------------------------------------------------------- /.ci/updatecli/values.d/update-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.ci/updatecli/values.d/update-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !build/output -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/.editorconfig -------------------------------------------------------------------------------- /.github/.github.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/.github.csproj -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/labeler-config.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/addToProject.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/addToProject.yml -------------------------------------------------------------------------------- /.github/workflows/bootstrap/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/bootstrap/action.yml -------------------------------------------------------------------------------- /.github/workflows/docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/docs-build.yml -------------------------------------------------------------------------------- /.github/workflows/docs-cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/docs-cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/github-commands-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/github-commands-comment.yml -------------------------------------------------------------------------------- /.github/workflows/install-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/install-dependencies/action.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/release-main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-linux-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/test-linux-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/test-linux.yml -------------------------------------------------------------------------------- /.github/workflows/test-reporter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/test-reporter.yml -------------------------------------------------------------------------------- /.github/workflows/test-windows-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/test-windows-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/test-windows.yml -------------------------------------------------------------------------------- /.github/workflows/updatecli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.github/workflows/updatecli.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | updatecli v0.111.0 -------------------------------------------------------------------------------- /CHANGELOG.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/CHANGELOG.asciidoc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/Dockerfile -------------------------------------------------------------------------------- /ElasticApmAgent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/ElasticApmAgent.sln -------------------------------------------------------------------------------- /ElasticApmAgent.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/ElasticApmAgent.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/Makefile.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Directory.Build.props -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/DroppedSpansStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/DroppedSpansStats.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/Elastic.Apm.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/Elastic.Apm.Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/Helpers/GitInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/Helpers/GitInfo.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/MetricsBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/MetricsBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/PerfTestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/PerfTestLogger.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/Program.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/PropertyFetcherBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/PropertyFetcherBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/SignatureParserBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/SignatureParserBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/TraceParentBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/TraceParentBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/TracerBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/TracerBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Benchmarks/WildcardMatcherBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Benchmarks/WildcardMatcherBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Profiling/Elastic.Apm.Profiling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Profiling/Elastic.Apm.Profiling.csproj -------------------------------------------------------------------------------- /benchmarks/Elastic.Apm.Profiling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/benchmarks/Elastic.Apm.Profiling/Program.cs -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/codecov.yml -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /docs/docs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/docs.csproj -------------------------------------------------------------------------------- /docs/docset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/docset.yml -------------------------------------------------------------------------------- /docs/reference/config-all-options-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/config-all-options-summary.md -------------------------------------------------------------------------------- /docs/reference/config-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/config-core.md -------------------------------------------------------------------------------- /docs/reference/config-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/config-http.md -------------------------------------------------------------------------------- /docs/reference/config-messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/config-messaging.md -------------------------------------------------------------------------------- /docs/reference/config-reporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/config-reporter.md -------------------------------------------------------------------------------- /docs/reference/config-stacktrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/config-stacktrace.md -------------------------------------------------------------------------------- /docs/reference/config-supportability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/config-supportability.md -------------------------------------------------------------------------------- /docs/reference/configuration-for-windows-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/configuration-for-windows-services.md -------------------------------------------------------------------------------- /docs/reference/configuration-on-asp-net-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/configuration-on-asp-net-core.md -------------------------------------------------------------------------------- /docs/reference/configuration-on-asp-net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/configuration-on-asp-net.md -------------------------------------------------------------------------------- /docs/reference/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/configuration.md -------------------------------------------------------------------------------- /docs/reference/images/azure-functions-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/images/azure-functions-configuration.png -------------------------------------------------------------------------------- /docs/reference/images/dynamic-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/images/dynamic-config.svg -------------------------------------------------------------------------------- /docs/reference/images/unblock-profiler-dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/images/unblock-profiler-dll.png -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/reference/log-correlation-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/log-correlation-manual.md -------------------------------------------------------------------------------- /docs/reference/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/logs.md -------------------------------------------------------------------------------- /docs/reference/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/metrics.md -------------------------------------------------------------------------------- /docs/reference/nlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/nlog.md -------------------------------------------------------------------------------- /docs/reference/nuget-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/nuget-packages.md -------------------------------------------------------------------------------- /docs/reference/opentelemetry-bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/opentelemetry-bridge.md -------------------------------------------------------------------------------- /docs/reference/performance-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/performance-tuning.md -------------------------------------------------------------------------------- /docs/reference/public-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/public-api.md -------------------------------------------------------------------------------- /docs/reference/serilog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/serilog.md -------------------------------------------------------------------------------- /docs/reference/set-up-apm-net-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/set-up-apm-net-agent.md -------------------------------------------------------------------------------- /docs/reference/setup-asp-dot-net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-asp-dot-net.md -------------------------------------------------------------------------------- /docs/reference/setup-asp-net-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-asp-net-core.md -------------------------------------------------------------------------------- /docs/reference/setup-auto-instrumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-auto-instrumentation.md -------------------------------------------------------------------------------- /docs/reference/setup-azure-cosmosdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-azure-cosmosdb.md -------------------------------------------------------------------------------- /docs/reference/setup-azure-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-azure-functions.md -------------------------------------------------------------------------------- /docs/reference/setup-azure-servicebus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-azure-servicebus.md -------------------------------------------------------------------------------- /docs/reference/setup-azure-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-azure-storage.md -------------------------------------------------------------------------------- /docs/reference/setup-dotnet-net-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-dotnet-net-core.md -------------------------------------------------------------------------------- /docs/reference/setup-ef-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-ef-core.md -------------------------------------------------------------------------------- /docs/reference/setup-ef6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-ef6.md -------------------------------------------------------------------------------- /docs/reference/setup-elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-elasticsearch.md -------------------------------------------------------------------------------- /docs/reference/setup-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-general.md -------------------------------------------------------------------------------- /docs/reference/setup-grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-grpc.md -------------------------------------------------------------------------------- /docs/reference/setup-kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-kafka.md -------------------------------------------------------------------------------- /docs/reference/setup-mongo-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-mongo-db.md -------------------------------------------------------------------------------- /docs/reference/setup-sqlclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-sqlclient.md -------------------------------------------------------------------------------- /docs/reference/setup-stackexchange-redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/setup-stackexchange-redis.md -------------------------------------------------------------------------------- /docs/reference/supported-technologies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/supported-technologies.md -------------------------------------------------------------------------------- /docs/reference/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/toc.yml -------------------------------------------------------------------------------- /docs/reference/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/reference/upgrading.md -------------------------------------------------------------------------------- /docs/release-notes/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/release-notes/breaking-changes.md -------------------------------------------------------------------------------- /docs/release-notes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/release-notes/index.md -------------------------------------------------------------------------------- /docs/release-notes/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/release-notes/known-issues.md -------------------------------------------------------------------------------- /docs/release-notes/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/docs/release-notes/toc.yml -------------------------------------------------------------------------------- /dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/dotnet-tools.json -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/global.json -------------------------------------------------------------------------------- /sample/ApiSamples/ApiSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/ApiSamples/ApiSamples.csproj -------------------------------------------------------------------------------- /sample/ApiSamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/ApiSamples/Program.cs -------------------------------------------------------------------------------- /sample/ApiSamples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/ApiSamples/README.md -------------------------------------------------------------------------------- /sample/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/Directory.Build.props -------------------------------------------------------------------------------- /sample/Elastic.Apm.Azure.ServiceBus.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/Elastic.Apm.Azure.ServiceBus.Sample/Program.cs -------------------------------------------------------------------------------- /sample/ElasticsearchSample/ElasticsearchSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/ElasticsearchSample/ElasticsearchSample.csproj -------------------------------------------------------------------------------- /sample/ElasticsearchSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/ElasticsearchSample/Program.cs -------------------------------------------------------------------------------- /sample/HttpListenerSample/HttpListenerSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/HttpListenerSample/HttpListenerSample.csproj -------------------------------------------------------------------------------- /sample/HttpListenerSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/HttpListenerSample/Program.cs -------------------------------------------------------------------------------- /sample/HttpListenerSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/HttpListenerSample/README.md -------------------------------------------------------------------------------- /sample/Sample.Microsoft.Data.SqlClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/Sample.Microsoft.Data.SqlClient/Program.cs -------------------------------------------------------------------------------- /sample/StackExchangeRedisSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/StackExchangeRedisSample/Program.cs -------------------------------------------------------------------------------- /sample/StackExchangeRedisSample/StackExchangeRedisSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/StackExchangeRedisSample/StackExchangeRedisSample.csproj -------------------------------------------------------------------------------- /sample/WebApiExample/Controllers/ErrorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WebApiExample/Controllers/ErrorController.cs -------------------------------------------------------------------------------- /sample/WebApiExample/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WebApiExample/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /sample/WebApiExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WebApiExample/Program.cs -------------------------------------------------------------------------------- /sample/WebApiExample/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WebApiExample/WeatherForecast.cs -------------------------------------------------------------------------------- /sample/WebApiExample/WebApiExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WebApiExample/WebApiExample.csproj -------------------------------------------------------------------------------- /sample/WebApiExample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WebApiExample/appsettings.Development.json -------------------------------------------------------------------------------- /sample/WebApiExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WebApiExample/appsettings.json -------------------------------------------------------------------------------- /sample/WorkerServiceSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WorkerServiceSample/Program.cs -------------------------------------------------------------------------------- /sample/WorkerServiceSample/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WorkerServiceSample/Worker.cs -------------------------------------------------------------------------------- /sample/WorkerServiceSample/WorkerServiceSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WorkerServiceSample/WorkerServiceSample.csproj -------------------------------------------------------------------------------- /sample/WorkerServiceSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WorkerServiceSample/appsettings.Development.json -------------------------------------------------------------------------------- /sample/WorkerServiceSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/sample/WorkerServiceSample/appsettings.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/Elastic.Apm.Specification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/Elastic.Apm.Specification.csproj -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/ImplementationProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/ImplementationProperty.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/JsonSchemaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/JsonSchemaExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/TypeValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/TypeValidationError.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/TypeValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/TypeValidationResult.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/Validation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/Validation.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/Validator.cs -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/specs/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/specs/error.json -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/specs/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/specs/log.json -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/specs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/specs/metadata.json -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/specs/metricset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/specs/metricset.json -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/specs/span.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/specs/span.json -------------------------------------------------------------------------------- /src/Elastic.Apm.Specification/specs/transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm.Specification/specs/transaction.json -------------------------------------------------------------------------------- /src/Elastic.Apm/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Agent.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/AgentComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/AgentComponents.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/ApiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/ApiConstants.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/CapturedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/CapturedException.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/CapturedStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/CapturedStackFrame.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Cloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Cloud.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/CloudContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/CloudContext.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Constraints/MaxLengthAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Constraints/MaxLengthAttribute.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Constraints/RequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Constraints/RequiredAttribute.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Container.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Context.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Database.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Destination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Destination.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/DistributedTracingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/DistributedTracingData.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Http.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Http.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/IError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/IError.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/IExecutionSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/IExecutionSegment.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/IMetricSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/IMetricSet.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/ISpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/ISpan.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/ITracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/ITracer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/ITransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/ITransaction.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Kubernetes/KubernetesMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Kubernetes/KubernetesMetadata.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Kubernetes/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Kubernetes/Node.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Kubernetes/Pod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Kubernetes/Pod.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Label.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Links.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Links.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Message.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/MetricSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/MetricSample.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Node.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Outcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Outcome.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/ProcessInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/ProcessInformation.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Request.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Response.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Service.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/SpanContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/SpanContext.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/SpanCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/SpanCount.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/SpanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/SpanService.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/SpecificationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/SpecificationAttribute.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/System.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/System.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/Tracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/Tracer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Api/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Api/User.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/ApmAgentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/ApmAgentExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/BackendComm/BackendCommComponentBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/BackendComm/BackendCommComponentBase.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/BackendComm/BackendCommUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/BackendComm/BackendCommUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/AwsCloudMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/AwsCloudMetadataProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/AzureAppServiceMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/AzureAppServiceMetadataProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/AzureCloudMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/AzureCloudMetadataProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/AzureFunctionsMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/AzureFunctionsMetadataProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/CloudMetadataProviderCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/CloudMetadataProviderCollection.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/EnvironmentBasedAzureMetadataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/EnvironmentBasedAzureMetadataHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/GcpCloudMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/GcpCloudMetadataProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Cloud/ICloudMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Cloud/ICloudMetadataProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/AbstractConfigurationReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/AbstractConfigurationReader.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/ConfigConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/ConfigConsts.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/ConfigurationKeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/ConfigurationKeyValue.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/ConfigurationLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/ConfigurationLogger.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/ConfigurationOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/ConfigurationOption.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/ConfigurationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/ConfigurationStore.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/EnvironmentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/EnvironmentConfiguration.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/FallbackToEnvironmentConfigurationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/FallbackToEnvironmentConfigurationBase.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/IConfiguration.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/IConfigurationReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/IConfigurationReader.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/IConfigurationSnapshotProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/IConfigurationSnapshotProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Config/IConfigurationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Config/IConfigurationStore.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Consts.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/CurrentExecutionSegmentsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/CurrentExecutionSegmentsContainer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticListeners/DiagnosticListenerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticListeners/DiagnosticListenerBase.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticListeners/HttpDiagnosticListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticListeners/HttpDiagnosticListener.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticListeners/HttpTraceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticListeners/HttpTraceConfiguration.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticListeners/IHttpSpanTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticListeners/IHttpSpanTracer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticListeners/KnownListeners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticListeners/KnownListeners.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticSource/DiagnosticInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticSource/DiagnosticInitializer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticSource/HttpDiagnosticsSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticSource/HttpDiagnosticsSubscriber.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticSource/IDiagnosticListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticSource/IDiagnosticListener.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DiagnosticSource/IDiagnosticsSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DiagnosticSource/IDiagnosticsSubscriber.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DistributedTracing/TraceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DistributedTracing/TraceContext.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/DistributedTracing/TraceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/DistributedTracing/TraceState.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Elastic.Apm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Elastic.Apm.csproj -------------------------------------------------------------------------------- /src/Elastic.Apm/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Extensions/TransactionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Extensions/TransactionExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Features/AgentFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Features/AgentFeatures.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Features/AgentFeaturesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Features/AgentFeaturesProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Filters/CookieHeaderRedactionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Filters/CookieHeaderRedactionFilter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Filters/ErrorContextSanitizerFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Filters/ErrorContextSanitizerFilter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Filters/HeaderDictionarySanitizerFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Filters/HeaderDictionarySanitizerFilter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Filters/Sanitization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Filters/Sanitization.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Filters/SpanStackTraceCapturingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Filters/SpanStackTraceCapturingFilter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Filters/TransactionIgnoreUrlsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Filters/TransactionIgnoreUrlsFilter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/AgentSpinLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/AgentSpinLock.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/AgentTimeInstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/AgentTimeInstant.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/AgentTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/AgentTimer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/Assertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/Assertion.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/AssertionFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/AssertionFailedException.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/AssertionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/AssertionLevel.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/ContractExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/ContractExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/CookieHeaderRedacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/CookieHeaderRedacter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/DbConnectionStringParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/DbConnectionStringParser.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/DbgUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/DbgUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/DisposableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/DisposableHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/EnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/EnvironmentVariables.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/ExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/ExceptionFilter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/ExceptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/ExceptionUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/GrpcHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/GrpcHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/HostNameDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/HostNameDetector.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/IAgentTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/IAgentTimer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/IHttpFormAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/IHttpFormAdapter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/IHttpRequestAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/IHttpRequestAdapter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/LazyContextualInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/LazyContextualInit.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/LogLevelUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/LogLevelUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/PlatformDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/PlatformDetection.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/RandomGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/RandomGenerator.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/RequestBodyStreamHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/RequestBodyStreamHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/Sanitization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/Sanitization.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/StacktraceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/StacktraceHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/StringExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/SystemInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/SystemInfoHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/TextUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/TextUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/TimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/TimeExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/TimeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/TimeUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/ToStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/ToStringBuilder.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/UrlUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/UrlUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Helpers/WildcardMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Helpers/WildcardMatcher.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/ICurrentExecutionSegmentsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/ICurrentExecutionSegmentsContainer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Instrumentations/SqlClient/SqlEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Instrumentations/SqlClient/SqlEventListener.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/.editorconfig -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Ben.Demystifier/EnhancedStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Ben.Demystifier/EnhancedStackFrame.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Ben.Demystifier/EnhancedStackTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Ben.Demystifier/EnhancedStackTrace.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Ben.Demystifier/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Ben.Demystifier/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Ben.Demystifier/Internal/ILReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Ben.Demystifier/Internal/ILReader.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Ben.Demystifier/ResolvedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Ben.Demystifier/ResolvedMethod.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Ben.Demystifier/ResolvedParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Ben.Demystifier/ResolvedParameter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Ben.Demystifier/TypeNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Ben.Demystifier/TypeNameHelper.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonBinaryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonBinaryType.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonObjectId.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonReader.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonToken.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonType.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Bson/BsonWriter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/ConstructorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/ConstructorHandling.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/DateFormatHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/DateFormatHandling.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/DateParseHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/DateParseHandling.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/FloatFormatHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/FloatFormatHandling.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/FloatParseHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/FloatParseHandling.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Formatting.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/IArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/IArrayPool.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/IJsonLineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/IJsonLineInfo.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonArrayAttribute.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonConvert.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonConverter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonException.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonIgnoreAttribute.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonNameTable.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonObjectAttribute.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonPosition.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonReader.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonReader.Async.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonReader.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonReaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonReaderException.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonSerializer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonTextReader.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonTextWriter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonToken.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonWriter.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonWriter.Async.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonWriter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonWriterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/JsonWriterException.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/Extensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/IJEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/IJEnumerable.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JArray.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JArray.Async.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JArray.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JConstructor.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JContainer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JEnumerable.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JObject.Async.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JObject.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JProperty.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JRaw.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JRaw.Async.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JRaw.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JToken.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JToken.Async.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JToken.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JTokenReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JTokenReader.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JTokenType.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JTokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JTokenWriter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JValue.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JValue.Async.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JValue.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JsonPath/JPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Linq/JsonPath/JPath.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/MemberSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/MemberSerialization.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/NullValueHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/NullValueHandling.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Required.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Required.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Schema/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Schema/Extensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Schema/JsonSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Schema/JsonSchema.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/SerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/SerializationBinder.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/TraceLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/TraceLevel.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/TypeNameHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/TypeNameHandling.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Utilities/EnumInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Utilities/EnumInfo.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Utilities/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Utilities/EnumUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/Utilities/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/Utilities/MathUtils.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Libraries/Newtonsoft.Json/WriteState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Libraries/Newtonsoft.Json/WriteState.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/GlobalLogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/GlobalLogConfiguration.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/IApmLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/IApmLogger.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/IApmLoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/IApmLoggingExtensions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/LogLevelSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/LogLevelSwitch.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/LogValuesFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/LogValuesFormatter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/ScopedLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/ScopedLogger.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Logging/TraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Logging/TraceLogger.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/IMetricsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/IMetricsCollector.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/IMetricsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/IMetricsProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/Linux/GlobalMemoryStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/Linux/GlobalMemoryStatus.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/MetricSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/MetricSet.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/MetricsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/MetricsCollector.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/MetricsProvider/CgroupMetricsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/MetricsProvider/CgroupMetricsProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/MetricsProvider/GcMetricsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/MetricsProvider/GcMetricsProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Metrics/Windows/GlobalMemoryStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Metrics/Windows/GlobalMemoryStatus.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/DbSpanCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/DbSpanCommon.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/DroppedSpanStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/DroppedSpanStats.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/Error.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/ExecutionSegmentCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/ExecutionSegmentCommon.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/Faas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/Faas.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/InstrumentationFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/InstrumentationFlag.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/LabelsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/LabelsDictionary.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/Metadata.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/NoopSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/NoopSpan.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/NoopTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/NoopTransaction.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/OTel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/OTel.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/Scanner.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/SignatureParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/SignatureParser.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/Span.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/Span.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/SpanTimerKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/SpanTimerKey.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Model/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Model/Transaction.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/NOTICE -------------------------------------------------------------------------------- /src/Elastic.Apm/OpenTelemetry/ElasticActivityListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/OpenTelemetry/ElasticActivityListener.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/OpenTelemetry/SemanticConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/OpenTelemetry/SemanticConventions.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Reflection/CascadePropertyFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Reflection/CascadePropertyFetcher.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Reflection/ExpressionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Reflection/ExpressionBuilder.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Reflection/PropertyFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Reflection/PropertyFetcher.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Reflection/PropertyFetcherCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Reflection/PropertyFetcherCollection.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/IPayloadSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/IPayloadSender.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/IntakeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/IntakeResponse.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/PayloadSenderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/PayloadSenderV2.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/Serialization/CustomJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/Serialization/CustomJsonConverter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/Serialization/LabelsJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/Serialization/LabelsJsonConverter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/Serialization/MetricSetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/Serialization/MetricSetConverter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/Serialization/OutcomeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/Serialization/OutcomeConverter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/Serialization/PayloadItemSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/Serialization/PayloadItemSerializer.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Report/Serialization/TruncateJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Report/Serialization/TruncateJsonConverter.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/Sampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/Sampler.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/ServerInfo/ApmServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/ServerInfo/ApmServerInfo.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/ServerInfo/ApmServerInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/ServerInfo/ApmServerInfoProvider.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/ServerInfo/ElasticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/ServerInfo/ElasticVersion.cs -------------------------------------------------------------------------------- /src/Elastic.Apm/ServerInfo/IApmServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/Elastic.Apm/ServerInfo/IApmServerInfo.cs -------------------------------------------------------------------------------- /src/azure/Elastic.Apm.Azure.CosmosDb/AzureCosmosDbTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/azure/Elastic.Apm.Azure.CosmosDb/AzureCosmosDbTracer.cs -------------------------------------------------------------------------------- /src/azure/Elastic.Apm.Azure.Functions/ApmMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/azure/Elastic.Apm.Azure.Functions/ApmMiddleware.cs -------------------------------------------------------------------------------- /src/azure/Elastic.Apm.Azure.Functions/AzureFunctionsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/azure/Elastic.Apm.Azure.Functions/AzureFunctionsContext.cs -------------------------------------------------------------------------------- /src/azure/Elastic.Apm.Azure.ServiceBus/ServiceBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/azure/Elastic.Apm.Azure.ServiceBus/ServiceBus.cs -------------------------------------------------------------------------------- /src/azure/Elastic.Apm.Azure.Storage/BlobUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/azure/Elastic.Apm.Azure.Storage/BlobUrl.cs -------------------------------------------------------------------------------- /src/azure/Elastic.Apm.Azure.Storage/FileShareUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/azure/Elastic.Apm.Azure.Storage/FileShareUrl.cs -------------------------------------------------------------------------------- /src/instrumentations/Elastic.Apm.EntityFramework6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/instrumentations/Elastic.Apm.EntityFramework6/README.md -------------------------------------------------------------------------------- /src/instrumentations/Elastic.Apm.MongoDb/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/instrumentations/Elastic.Apm.MongoDb/Constants.cs -------------------------------------------------------------------------------- /src/instrumentations/Elastic.Apm.MongoDb/EventPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/instrumentations/Elastic.Apm.MongoDb/EventPayload.cs -------------------------------------------------------------------------------- /src/instrumentations/Elastic.Apm.MongoDb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/instrumentations/Elastic.Apm.MongoDb/LICENSE -------------------------------------------------------------------------------- /src/instrumentations/Elastic.Apm.MongoDb/LICENSE_LOCAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/instrumentations/Elastic.Apm.MongoDb/LICENSE_LOCAL -------------------------------------------------------------------------------- /src/instrumentations/Elastic.Apm.MongoDb/MongoListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/instrumentations/Elastic.Apm.MongoDb/MongoListener.cs -------------------------------------------------------------------------------- /src/instrumentations/Elastic.Apm.MongoDb/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/instrumentations/Elastic.Apm.MongoDb/NOTICE -------------------------------------------------------------------------------- /src/integrations/Elastic.Apm.AspNetCore/AspNetCoreHttpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/integrations/Elastic.Apm.AspNetCore/AspNetCoreHttpForm.cs -------------------------------------------------------------------------------- /src/integrations/Elastic.Apm.AspNetCore/AspNetCoreHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/integrations/Elastic.Apm.AspNetCore/AspNetCoreHttpRequest.cs -------------------------------------------------------------------------------- /src/integrations/Elastic.Apm.AspNetCore/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/integrations/Elastic.Apm.AspNetCore/Consts.cs -------------------------------------------------------------------------------- /src/integrations/Elastic.Apm.AspNetFullFramework/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/integrations/Elastic.Apm.AspNetFullFramework/NOTICE -------------------------------------------------------------------------------- /src/integrations/Elastic.Apm.AspNetFullFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/integrations/Elastic.Apm.AspNetFullFramework/README.md -------------------------------------------------------------------------------- /src/integrations/Elastic.Apm.Extensions.Hosting/ApmService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/integrations/Elastic.Apm.Extensions.Hosting/ApmService.cs -------------------------------------------------------------------------------- /src/integrations/Elastic.Apm.NetCoreAll/HostBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/integrations/Elastic.Apm.NetCoreAll/HostBuilderExtensions.cs -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed.Core/ClrTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed.Core/ClrTypeNames.cs -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed.Loader/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed.Loader/Logger.cs -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed.Loader/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed.Loader/Startup.cs -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed/AutoInstrumentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed/AutoInstrumentation.cs -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/DuckType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/DuckType.cs -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed/DuckTyping/README.md -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed/TracerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed/TracerExtensions.cs -------------------------------------------------------------------------------- /src/profiler/Elastic.Apm.Profiler.Managed/integrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/Elastic.Apm.Profiler.Managed/integrations.yml -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/Cargo.toml -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/NOTICE -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/README -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/build.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/elastic_apm_profiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/elastic_apm_profiler.csproj -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/cil/cor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/cil/cor.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/cil/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/cil/helpers.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/cil/instruction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/cil/instruction.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/cil/method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/cil/method.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/cil/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/cil/mod.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/cil/opcode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/cil/opcode.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/cil/section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/cil/section.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/error.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/ffi/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/ffi/mod.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/ffi/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/ffi/types.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/interfaces/imap_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/interfaces/imap_token.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/interfaces/istream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/interfaces/istream.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/interfaces/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/interfaces/mod.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/lib.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/env.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/helpers.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/managed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/managed.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/mod.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/process.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/rejit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/rejit.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/sig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/sig.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/startup_hook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/startup_hook.rs -------------------------------------------------------------------------------- /src/profiler/elastic_apm_profiler/src/profiler/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/profiler/elastic_apm_profiler/src/profiler/types.rs -------------------------------------------------------------------------------- /src/startuphook/Elastic.Apm.StartupHook.Loader/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/startuphook/Elastic.Apm.StartupHook.Loader/Loader.cs -------------------------------------------------------------------------------- /src/startuphook/ElasticApmAgentStartupHook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/startuphook/ElasticApmAgentStartupHook/README.md -------------------------------------------------------------------------------- /src/startuphook/ElasticApmAgentStartupHook/StartupHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/startuphook/ElasticApmAgentStartupHook/StartupHook.cs -------------------------------------------------------------------------------- /src/startuphook/ElasticApmAgentStartupHook/StartupHookLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/src/startuphook/ElasticApmAgentStartupHook/StartupHookLogger.cs -------------------------------------------------------------------------------- /test/.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/.runsettings -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/.gitignore -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/CloudProviderSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/CloudProviderSteps.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/ConfigurationSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/ConfigurationSteps.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/Elastic.Apm.Feature.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/Elastic.Apm.Feature.Tests.csproj -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/Features/api_key.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/Features/api_key.feature -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/Features/otel_bridge.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/Features/otel_bridge.feature -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/Features/outcome.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/Features/outcome.feature -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/Features/user_agent.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/Features/user_agent.feature -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/OutcomeSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/OutcomeSteps.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/PayloadCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/PayloadCollector.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/README.md -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/TestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/TestConfiguration.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Feature.Tests/UserAgentSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Feature.Tests/UserAgentSteps.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/AssertValidExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/AssertValidExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/CompositeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/CompositeDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/ContextDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/ContextDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/DroppedSpanStatsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/DroppedSpanStatsDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/ErrorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/ErrorDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/FaasDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/FaasDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/IDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/ITimedDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/ITimedDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/ITimestampedDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/ITimestampedDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/MetadataDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/MetadataDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/MetricSampleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/MetricSampleDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/MetricSetDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/MetricSetDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/MetricsAssertValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/MetricsAssertValid.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/MockApmServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/MockApmServer.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/Program.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/ReceivedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/ReceivedData.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/SpanContextDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/SpanContextDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/SpanCountDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/SpanCountDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/SpanDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/SpanDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/SpanLinkDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/SpanLinkDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/Startup.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/TransactionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/TransactionDto.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/appsettings.json -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.MockApmServer/cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.MockApmServer/cert.pfx -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/AgentTimerForTesting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/AgentTimerForTesting.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/ApmAgentTestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/ApmAgentTestExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/Azure/AzureCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/Azure/AzureCredentials.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/Azure/AzureResourceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/Azure/AzureResourceException.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/Azure/AzureResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/Azure/AzureResources.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/CGroupTestCasesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/CGroupTestCasesAttribute.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/DummyTestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/DummyTestException.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/EnumerableExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/EnumerableTestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/EnumerableTestExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/EnvVarUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/EnvVarUtils.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/FakeMetricsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/FakeMetricsCollector.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/FluentAssertionsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/FluentAssertionsUtils.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/ILineWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/ILineWriter.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/InMemoryBlockingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/InMemoryBlockingLogger.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/IntExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/IntExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/JsonFileDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/JsonFileDataAttribute.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/JsonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/JsonUtils.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/LineWriterToLoggerAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/LineWriterToLoggerAdaptor.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/LocalPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/LocalPort.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/LocalServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/LocalServer.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/LoggingTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/LoggingTestBase.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/MockAgentTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/MockAgentTimer.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/MockApmServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/MockApmServerInfo.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/MockConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/MockConfiguration.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/MockHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/MockHttpMessageHandler.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/MockPayloadSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/MockPayloadSender.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/MockPayloadSenderWithFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/MockPayloadSenderWithFilters.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/MultiThreadsTestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/MultiThreadsTestUtils.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/NoopLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/NoopLogger.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/NoopPayloadSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/NoopPayloadSender.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/README.md -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/RandomTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/RandomTestHelper.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/ShouldWaitDurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/ShouldWaitDurationExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/SolutionPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/SolutionPaths.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/SplittingLineWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/SplittingLineWriter.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TaskTestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TaskTestExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TempFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TempFile.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/Terraform/TerraformResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/Terraform/TerraformResources.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TestAgentComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TestAgentComponents.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TestEnvironment.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TestEnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TestEnvironmentVariables.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TestHostNameDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TestHostNameDetector.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TestLogger.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/TestingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/TestingConfig.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/ThreadSafeIntCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/ThreadSafeIntCounter.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/ThreadSafeLongCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/ThreadSafeLongCounter.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/ToAllSinksLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/ToAllSinksLogger.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/UnitTestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/UnitTestLogger.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/WaitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/WaitExtensions.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/XUnit/DisabledOnWindowsFact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/XUnit/DisabledOnWindowsFact.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/XUnit/DisabledTestFact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/XUnit/DisabledTestFact.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/XUnit/DockerAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/XUnit/DockerAttributes.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/XUnit/MemberData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/XUnit/MemberData.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests.Utilities/XUnit/XUnitLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests.Utilities/XUnit/XUnitLogger.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ActivityIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ActivityIntegrationTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApiTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApiTests/ApiTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApiTests/ConvenientApiSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApiTests/ConvenientApiSpanTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApiTests/ConvenientApiTransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApiTests/ConvenientApiTransactionTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApiTests/CulpritTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApiTests/CulpritTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApiTests/DistributedTracingDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApiTests/DistributedTracingDataTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApiTests/ExitSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApiTests/ExitSpanTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApiTests/UrlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApiTests/UrlTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ApmServerInfoProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ApmServerInfoProviderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/BackendCommTests/BackendCommUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/BackendCommTests/BackendCommUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/BackendCommTests/PayloadSenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/BackendCommTests/PayloadSenderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/BasicAgentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/BasicAgentTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/BreakdownTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/BreakdownTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Cloud/AwsCloudMetadataProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Cloud/AwsCloudMetadataProviderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Cloud/AzureCloudMetadataProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Cloud/AzureCloudMetadataProviderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Cloud/GcpCloudMetadataProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Cloud/GcpCloudMetadataProviderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Config/ConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Config/ConfigTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Config/GlobalLogConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Config/GlobalLogConfigurationTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ConstructorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ConstructorTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/DbSpanNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/DbSpanNameTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/DistributedTracing/BaggageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/DistributedTracing/BaggageTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/DistributedTracing/TraceStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/DistributedTracing/TraceStateTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/DroppedSpansStatsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/DroppedSpansStatsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Elastic.Apm.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Elastic.Apm.Tests.csproj -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/EnabledAndRecordingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/EnabledAndRecordingTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ErrorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ErrorTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ExitSpanMinDurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ExitSpanMinDurationTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ExitSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ExitSpanTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Extensions/EnumerableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Extensions/EnumerableExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Features/AgentFeaturesProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Features/AgentFeaturesProviderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/FilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/FilterTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/AgentSpinLockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/AgentSpinLockTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/AgentTimeInstantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/AgentTimeInstantTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/AgentTimerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/AgentTimerTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/AssertionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/AssertionTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/CollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/CollectionExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/ContractExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/ContractExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/DbgUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/DbgUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/DisposableHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/DisposableHelperTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/ExceptionUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/ExceptionUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/IntExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/IntExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/LazyContextualInitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/LazyContextualInitTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/ObjectExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/ObjectExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/PlatformDetectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/PlatformDetectionTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/PropertyFetcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/PropertyFetcherTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/TextUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/TextUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/TimeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/TimeExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/TimeUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/TimeUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/ToStringBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/ToStringBuilderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HelpersTests/UrlUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HelpersTests/UrlUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/HttpDiagnosticListenerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/HttpDiagnosticListenerTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/InstrumentationFlagTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/InstrumentationFlagTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/LabelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/LabelTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/LibrariesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/LibrariesTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ListExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ListExtensionsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/LogValuesFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/LogValuesFormatterTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/LoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/LoggerTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Metrics/CgroupMetricsProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Metrics/CgroupMetricsProviderTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Metrics/Linux/GlobalMemoryStatusTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Metrics/Linux/GlobalMemoryStatusTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/MetricsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/MetricsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/NetCoreAndNetFact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/NetCoreAndNetFact.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/SamplerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/SamplerTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/SerializationTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ServerCertificateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ServerCertificateTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/ServiceResourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/ServiceResourceTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/SpanCompressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/SpanCompressionTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/SpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/SpanTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/SpecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/SpecTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/StackTraceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/StackTraceTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/SystemInfoHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/SystemInfoHelperTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TestHelpers/CgroupFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TestHelpers/CgroupFileHelper.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TestHelpers/MultiThreadsTestUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TestHelpers/MultiThreadsTestUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TestHelpers/RandomTestHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TestHelpers/RandomTestHelperTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TestHelpers/TestingConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TestHelpers/TestingConfigTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TestHelpers/TextUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TestHelpers/TextUtilsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TransactionActivityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TransactionActivityTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TransactionGroupNamesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TransactionGroupNamesTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TransactionIgnoreUrlsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TransactionIgnoreUrlsTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/TransactionSamplingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/TransactionSamplingTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/UnsampledTransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/UnsampledTransactionTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Utilities/AgentFeaturesProviderScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Utilities/AgentFeaturesProviderScope.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/Utilities/MockAgentTimerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/Utilities/MockAgentTimerTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/WildcardMatcherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/WildcardMatcherTests.cs -------------------------------------------------------------------------------- /test/Elastic.Apm.Tests/WorkingLoopTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/Elastic.Apm.Tests/WorkingLoopTests.cs -------------------------------------------------------------------------------- /test/azure/Elastic.Apm.Azure.CosmosDb.Tests/DocumentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/azure/Elastic.Apm.Azure.CosmosDb.Tests/DocumentItem.cs -------------------------------------------------------------------------------- /test/azure/Elastic.Apm.Azure.Storage.Tests/BlobContainerScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/azure/Elastic.Apm.Azure.Storage.Tests/BlobContainerScope.cs -------------------------------------------------------------------------------- /test/azure/Elastic.Apm.Azure.Storage.Tests/FileShareScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/azure/Elastic.Apm.Azure.Storage.Tests/FileShareScope.cs -------------------------------------------------------------------------------- /test/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/azure/README.md -------------------------------------------------------------------------------- /test/azure/applications/Elastic.AzureFunctionApp.InProcess/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/App_Start/LoggingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/App_Start/LoggingConfig.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/App_Start/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/App_Start/Startup.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Areas/MyArea/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Areas/MyArea/Web.config -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Asmx/Health.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Asmx/Health.asmx -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Asmx/Health.asmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Asmx/Health.asmx.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Bootstrap/Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Bootstrap/Alert.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Bootstrap/AlertStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Bootstrap/AlertStatus.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Consts.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Content/Site.css -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap-grid.css -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap.css -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap.css.map -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Data/SampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Data/SampleData.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Global.asax -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Global.asax.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Models/LoginViewModel.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Mvc/StreamResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Mvc/StreamResult.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/README.md -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/bootstrap.js.map -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/esm/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/esm/popper.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/esm/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/esm/popper.js.map -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/esm/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/esm/popper.min.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/index.d.ts -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/jquery-3.3.1.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/popper-utils.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.js.map -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.min.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/popper.min.js.map -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/umd/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/umd/popper.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/umd/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/umd/popper.js.map -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Scripts/umd/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Scripts/umd/popper.min.js -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/Home/Cookies.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/Home/Cookies.cshtml -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/Web.config -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Web.Debug.config -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Web.Release.config -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Web.config -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Webforms.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Webforms.aspx -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/Webforms.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/Webforms.aspx.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/WebformsException.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/WebformsException.aspx -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/WebformsException.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/WebformsException.aspx.cs -------------------------------------------------------------------------------- /test/iis/AspNetFullFrameworkSampleApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/AspNetFullFrameworkSampleApp/favicon.ico -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/Consts.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/DbSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/DbSpanTests.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/ErrorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/ErrorsTests.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/LabelsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/LabelsTests.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/MetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/MetadataTests.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/README.md -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/TestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/TestsBase.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/TimedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/TimedEvent.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.AspNetFullFramework.Tests/WebApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.AspNetFullFramework.Tests/WebApiTests.cs -------------------------------------------------------------------------------- /test/iis/Elastic.Apm.FullFramework.Tests/AppSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/iis/Elastic.Apm.FullFramework.Tests/AppSettingsTests.cs -------------------------------------------------------------------------------- /test/instrumentations/Elastic.Apm.MongoDb.Tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/instrumentations/Elastic.Apm.MongoDb.Tests/LICENSE -------------------------------------------------------------------------------- /test/instrumentations/grpc/GrpcClientSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/instrumentations/grpc/GrpcClientSample/Program.cs -------------------------------------------------------------------------------- /test/instrumentations/grpc/GrpcServiceSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/instrumentations/grpc/GrpcServiceSample/Program.cs -------------------------------------------------------------------------------- /test/instrumentations/grpc/GrpcServiceSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/instrumentations/grpc/GrpcServiceSample/Startup.cs -------------------------------------------------------------------------------- /test/instrumentations/grpc/GrpcServiceSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/instrumentations/grpc/GrpcServiceSample/appsettings.json -------------------------------------------------------------------------------- /test/integrations/Elastic.Apm.AspNetCore.Tests/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/Elastic.Apm.AspNetCore.Tests/Helper.cs -------------------------------------------------------------------------------- /test/integrations/applications/HostingTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/HostingTestApp/Program.cs -------------------------------------------------------------------------------- /test/integrations/applications/SampleAspNetCoreApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/SampleAspNetCoreApp/Program.cs -------------------------------------------------------------------------------- /test/integrations/applications/SampleAspNetCoreApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/SampleAspNetCoreApp/README.md -------------------------------------------------------------------------------- /test/integrations/applications/SampleAspNetCoreApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/SampleAspNetCoreApp/Startup.cs -------------------------------------------------------------------------------- /test/integrations/applications/SampleAspNetCoreApp/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integrations/applications/WebApiSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/WebApiSample/Program.cs -------------------------------------------------------------------------------- /test/integrations/applications/WebApiSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/WebApiSample/README.md -------------------------------------------------------------------------------- /test/integrations/applications/WebApiSample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/WebApiSample/Startup.cs -------------------------------------------------------------------------------- /test/integrations/applications/WebApiSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/integrations/applications/WebApiSample/appsettings.json -------------------------------------------------------------------------------- /test/opentelemetry/OpenTelemetrySample/OTSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/opentelemetry/OpenTelemetrySample/OTSamples.cs -------------------------------------------------------------------------------- /test/opentelemetry/OpenTelemetrySample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/opentelemetry/OpenTelemetrySample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/KafkaSample/Consumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/KafkaSample/Consumer.cs -------------------------------------------------------------------------------- /test/profiler/applications/KafkaSample/KafkaSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/KafkaSample/KafkaSample.csproj -------------------------------------------------------------------------------- /test/profiler/applications/KafkaSample/Producer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/KafkaSample/Producer.cs -------------------------------------------------------------------------------- /test/profiler/applications/KafkaSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/KafkaSample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/KafkaSample/SampleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/KafkaSample/SampleMessage.cs -------------------------------------------------------------------------------- /test/profiler/applications/MySqlDataSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/MySqlDataSample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/NpgsqlSample/NpgsqlSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/NpgsqlSample/NpgsqlSample.csproj -------------------------------------------------------------------------------- /test/profiler/applications/NpgsqlSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/NpgsqlSample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/RabbitMqSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/RabbitMqSample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/SatelliteAssemblySample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/SatelliteAssemblySample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/SqlClientSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/SqlClientSample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/SqliteSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/SqliteSample/Program.cs -------------------------------------------------------------------------------- /test/profiler/applications/SqliteSample/SqliteSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/profiler/applications/SqliteSample/SqliteSample.csproj -------------------------------------------------------------------------------- /test/startuphook/Elastic.Apm.StartupHook.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/startuphook/Elastic.Apm.StartupHook.Sample/Program.cs -------------------------------------------------------------------------------- /test/startuphook/Elastic.Apm.StartupHook.Sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/startuphook/Elastic.Apm.StartupHook.Sample/README.md -------------------------------------------------------------------------------- /test/startuphook/Elastic.Apm.StartupHook.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/startuphook/Elastic.Apm.StartupHook.Sample/Startup.cs -------------------------------------------------------------------------------- /test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/test/xunit.runner.json -------------------------------------------------------------------------------- /update-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/update-compose.yaml -------------------------------------------------------------------------------- /xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/apm-agent-dotnet/HEAD/xunit.runner.json --------------------------------------------------------------------------------