ClassifyLogsResponse

Response message for classifying logs to the corresponding logType classes.

JSON representation
{
  "predictions": [
    {
      object (LogTypePrediction)
    }
  ]
}
Fields
predictions[]

object (LogTypePrediction)

The logType predictions for the log_data. Sorted in descending order of confidence score.

LogTypePrediction

A single logtype prediction.

JSON representation
{
  "log_type": string,
  "score": number
}
Fields
log_type

string

The log type that was classified.

score

number

Score for this log type (for example, the probability the item belongs to this log type).