API Stability Preview

The logFrontendServiceLevelIndicators() GraphQL mutation may be used to log a service level indicator to the humio repo with #kind=frontend.

Syntax

Below is the syntax for the logFrontendServiceLevelIndicators() mutation field:

graphql
logFrontendServiceLevelIndicators(
      input: [ServiceLevelIndicatorLogArg!]!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  logFrontendServiceLevelIndicators(input: 
    { frontendVersion: "1.0.3",
      content: "some-content",
    } )
}

Given Datatypes

ServiceLevelIndicatorLogArg has two parameters. They're listed and described below:

Table: ServiceLevelIndicatorLogArg

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 19, 2024
contentJSONyes  The content of the service level indicator.
frontendVersionstringyes  The front-end version.