Rename tracing to telemetry package (#99710)

This commit renames the tracing to telemetry.tracing in both xpack/APM and elasticserach's org.elasticsearch.tracing.Tracer (the api)
the xpack/APM is renamed as follows:
org.elasticsearch.telemetry.apm - the only exported package
org.elasticsearch.telemetry.apm.settings - APMSettings
org.elasticsearch.telemetry.apm.tracing - APMTracer

org.elasticsearch.tracing.Tracer is moved to org.elasticsearch.telemetry.tracing.Tracer (responsible for majority of the changes in this PR)
This commit is contained in:
Przemyslaw Gomulka 2023-09-20 16:58:02 +02:00 committed by GitHub
parent 19e3036458
commit b6747b48ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
117 changed files with 176 additions and 174 deletions

View file

@ -367,7 +367,6 @@ module org.elasticsearch.server {
exports org.elasticsearch.synonyms;
exports org.elasticsearch.tasks;
exports org.elasticsearch.threadpool;
exports org.elasticsearch.tracing;
exports org.elasticsearch.transport;
exports org.elasticsearch.upgrades;
exports org.elasticsearch.usage;
@ -383,6 +382,7 @@ module org.elasticsearch.server {
org.elasticsearch.settings.secure,
org.elasticsearch.serverless.constants,
org.elasticsearch.serverless.apifiltering;
exports org.elasticsearch.telemetry.tracing;
provides java.util.spi.CalendarDataProvider with org.elasticsearch.common.time.IsoCalendarDataProvider;
provides org.elasticsearch.xcontent.ErrorOnUnknown with org.elasticsearch.common.xcontent.SuggestingErrorOnUnknown;