io.gatling.core.stats.StatsEngine.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2011-2024 GatlingCorp (https://gatling.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gatling.core.stats
import java.net.InetSocketAddress
import io.gatling.commons.stats.Status
import io.gatling.core.actor.ActorRef
import io.gatling.core.controller.Controller
import io.gatling.core.session.GroupBlock
import io.netty.channel.ChannelHandler
trait StatsEngine extends EnterpriseStatsEngineExtensions {
private[gatling] def start(): Unit
private[gatling] def stop(controller: ActorRef[Controller.Command], exception: Option[Exception]): Unit
def logUserStart(scenario: String): Unit
def logUserEnd(scenario: String): Unit
// [e]
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
// [e]
def logResponse(
scenario: String,
groups: List[String],
requestName: String,
startTimestamp: Long,
endTimestamp: Long,
status: Status,
responseCode: Option[String],
message: Option[String]
): Unit
def logGroupEnd(
scenario: String,
groupBlock: GroupBlock,
exitTimestamp: Long
): Unit
def logRequestCrash(scenario: String, groups: List[String], requestName: String, error: String): Unit
}
// WARNING those methods only serve a purpose in Gatling Enterprise and mustn't be called from other components
trait EnterpriseStatsEngineExtensions {
final def statsChannelHandler(remoteAddress: String): ChannelHandler = null
final def logTcpConnectAttempt(remoteAddress: InetSocketAddress): Unit = {}
final def logTcpConnect(remoteAddress: String, startTimestamp: Long, endTimestamp: Long, error: Option[String]): Unit = {}
final def logTlsHandshake(remoteAddress: String, startTimestamp: Long, endTimestamp: Long, error: Option[String]): Unit = {}
}