blob: ef31bcc0e8766300892e022d79d360dcd246f080 [file] [log] [blame]
Matthias Andreas Benkard692f48d2021-08-31 21:06:50 +02001package eu.mulk.quarkus.googlecloud.jsonlogging;
2
3import java.util.Collection;
4
5/**
6 * A user-supplied provider for {@link Label}s.
7 *
8 * <p>Any CDI beans registered under this class are applied to each log entry that is logged.
9 *
10 * @see StructuredParameterProvider
11 */
12public interface LabelProvider {
13
14 /** Provides a collection of {@link Label}s to add to each log entry that is logged. */
15 Collection<Label> getLabels();
16}