io.opentelemetry.contrib.compressor.zstd.ZstdCompressorProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-compressor-zstd Show documentation
Show all versions of opentelemetry-compressor-zstd Show documentation
zstd compressor implementation for use with OTLP exporters
The newest version!
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.contrib.compressor.zstd;
import io.opentelemetry.exporter.internal.compression.Compressor;
import io.opentelemetry.exporter.internal.compression.CompressorProvider;
public final class ZstdCompressorProvider implements CompressorProvider {
@Override
public Compressor getInstance() {
return ZstdCompressor.getInstance();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy