You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The F5 telemetry service requires a doc string comment for the record:
Wrong:
@namespace("gateway.nginx.org") protocol NGFProductTelemetry {
@df_datatype("ngf-product-telemetry") record Data {
/** The field that identifies what type of data this is. */
string dataType;
. . .
Correct:
@namespace("gateway.nginx.org") protocol NGFProductTelemetry {
/** Data is the product telemetry data of NGINX Gateway Fabric. */
@df_datatype("ngf-product-telemetry") record Data {
/** The field that identifies what type of data this is. */
string dataType;
. . .
The text was updated successfully, but these errors were encountered:
The F5 telemetry service requires a doc string comment for the record:
Wrong:
Correct:
The text was updated successfully, but these errors were encountered: