Skip to content

Commit

Permalink
Rename package to org.apache.pulsar.opentelemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosvictor committed Feb 8, 2024
1 parent baa4fa9 commit c5e4ae2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import lombok.Getter;
import org.apache.pulsar.PulsarVersion;
import org.apache.pulsar.broker.ServiceConfiguration;
import org.apache.pulsar.common.stats.OpenTelemetryService;
import org.apache.pulsar.opentelemetry.OpenTelemetryService;

public class PulsarBrokerOpenTelemetry implements Closeable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.io.Closeable;
import lombok.Getter;
import org.apache.pulsar.PulsarVersion;
import org.apache.pulsar.common.stats.OpenTelemetryService;
import org.apache.pulsar.opentelemetry.OpenTelemetryService;
import org.apache.pulsar.functions.worker.WorkerConfig;

public class PulsarWorkerOpenTelemetry implements Closeable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pulsar.common.stats;
package org.apache.pulsar.opentelemetry;

import io.opentelemetry.api.common.AttributeKey;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pulsar.common.stats;
package org.apache.pulsar.opentelemetry;

import static com.google.common.base.Preconditions.checkArgument;
import com.google.common.annotations.VisibleForTesting;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pulsar.common.stats;
package org.apache.pulsar.opentelemetry;
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.pulsar.common.stats;
package org.apache.pulsar.opentelemetry;

import static io.opentelemetry.sdk.testing.assertj.OpenTelemetryAssertions.assertThat;
import static org.testng.Assert.assertEquals;
Expand All @@ -38,6 +38,8 @@
import lombok.Cleanup;
import org.apache.commons.lang3.StringUtils;
import org.apache.pulsar.broker.stats.prometheus.PrometheusMetricsClient;
import org.apache.pulsar.opentelemetry.OpenTelemetryAttributes;
import org.apache.pulsar.opentelemetry.OpenTelemetryService;
import org.awaitility.Awaitility;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.io.Closeable;
import lombok.Getter;
import org.apache.pulsar.PulsarVersion;
import org.apache.pulsar.common.stats.OpenTelemetryService;
import org.apache.pulsar.opentelemetry.OpenTelemetryService;
import org.apache.pulsar.proxy.server.ProxyConfiguration;

public class PulsarProxyOpenTelemetry implements Closeable {
Expand Down

0 comments on commit c5e4ae2

Please sign in to comment.