RecordGraphQLLimitRejection records a GraphQL operation rejected for exceeding one of the configured query limits. limit must be one of the GraphQLLimit* constants above.
(limit string)
| 322 | // exceeding one of the configured query limits. limit must be one of the |
| 323 | // GraphQLLimit* constants above. |
| 324 | func RecordGraphQLLimitRejection(limit string) { |
| 325 | GraphQLLimitRejectionsTotal.WithLabelValues(limit).Inc() |
| 326 | } |
| 327 | |
| 328 | // RecordClientIDHeaderMissing records a request that had no client ID header. |
| 329 | func RecordClientIDHeaderMissing() { |
no outgoing calls
no test coverage detected