All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog.integrations.aws.AWSLogMessage Maven / Gradle / Ivy

There is a newer version: 6.1.4
Show newest version
/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog.integrations.aws;

/**
 * A helper class that supports the ability to detect the type of AWS log message.
 */
public class AWSLogMessage {

    private String logMessage;

    public AWSLogMessage(String logMessage) {
        this.logMessage = logMessage;
    }

    /**
     * Detects the type of log message.
     *
     * @param compressed Indicates if the payload is compressed and probably from CloudWatch.
     * @return A {@code Type} indicating the which kind of log message has been detected.
     */
    public AWSMessageType detectLogMessageType(boolean compressed) {

        // Compressed messages are always from CloudWatch.
        if (compressed) {
            if (isFlowLog()) {
                return AWSMessageType.KINESIS_CLOUDWATCH_FLOW_LOGS;
            } else {
                return AWSMessageType.KINESIS_CLOUDWATCH_RAW;
            }
        }

        return AWSMessageType.KINESIS_RAW;
    }

    /**
     * Flow logs are space-delimited messages. See https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html
     * 

* Sample: 2 123456789010 eni-abc123de 172.31.16.139 172.31.16.21 20641 22 6 20 4249 1418530010 1418530070 ACCEPT OK *

* Match a message with exactly 13 spaces and either the word ACCEPT or REJECT. * Use simple if checks instead of regex to keep this simple. Performance should not be a concern, since * this is only called once during the healthcheck. * * @return true if message is a flow log. */ public boolean isFlowLog() { // Though unlikely, the message could be null. if (logMessage == null) { return false; } boolean hasAction = logMessage.contains("ACCEPT") || logMessage.contains("REJECT"); long spaceCount = logMessage.chars().filter(Character::isSpaceChar).count(); return hasAction && spaceCount == 13; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy