Class BigQueryMetricNames

java.lang.Object
io.github.flink.gcp.connector.bigquery.BigQueryMetricNames

@Internal public final class BigQueryMetricNames extends Object
Every metric name this connector registers itself, in one place so that this file is the connector's inventory: what it reports can be read here without opening a writer.

Each connector has one of these, and comparing them is how the repository's metric naming convention is held across connectors — a name that means the same thing in two connectors should be spelled the same way, and a diff of these files is what shows it. The convention itself (a counter names the event, a gauge names the state, and neither takes Flink's num prefix) is recorded in the base module's detailed agent guidance.

What is not here: Flink's standard sink names, which come from SinkWriterMetricGroup accessors rather than from a name, and the subgroup leaves base.metrics registers on this connector's behalf (errorClass.CODE.errors, destination.TABLE.recordsSend). The user-facing meaning of each name is on the connector's documentation page, not duplicated here.