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

@ -19,7 +19,7 @@ import org.elasticsearch.rest.RestChannel;
import org.elasticsearch.rest.RestController;
import org.elasticsearch.rest.RestHandler;
import org.elasticsearch.rest.RestRequest;
import org.elasticsearch.tracing.Tracer;
import org.elasticsearch.telemetry.tracing.Tracer;
import org.elasticsearch.usage.UsageService;
import java.util.function.UnaryOperator;