Class SqlStatementInfo
- java.lang.Object
-
- io.opentelemetry.instrumentation.api.db.SqlStatementInfo
-
public abstract class SqlStatementInfo extends Object
-
-
Constructor Summary
Constructors Constructor Description SqlStatementInfo()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static SqlStatementInfocreate(@Nullable String fullStatement, @Nullable String operation, @Nullable String table)abstract @Nullable StringgetFullStatement()abstract @Nullable StringgetOperation()abstract @Nullable StringgetTable()SqlStatementInfomapTable(Function<String,String> mapper)
-
-
-
Method Detail
-
create
public static SqlStatementInfo create(@Nullable String fullStatement, @Nullable String operation, @Nullable String table)
-
mapTable
public SqlStatementInfo mapTable(Function<String,String> mapper)
-
getFullStatement
public abstract @Nullable String getFullStatement()
-
getOperation
public abstract @Nullable String getOperation()
-
getTable
public abstract @Nullable String getTable()
-
-