
com.newrelic.agent.commands.PingCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-agent Show documentation
Show all versions of newrelic-agent Show documentation
Jar required to run with a java application to monitor performance.
The newest version!
/*
*
* * Copyright 2020 New Relic Corporation. All rights reserved.
* * SPDX-License-Identifier: Apache-2.0
*
*/
package com.newrelic.agent.commands;
import java.util.Collections;
import java.util.Map;
import com.newrelic.agent.IRPMService;
public class PingCommand implements Command {
public static final String COMMAND_NAME = "ping";
@Override
public Map process(IRPMService rpmService, Map arguments) throws CommandException {
return Collections.EMPTY_MAP;
}
@Override
public String getName() {
return COMMAND_NAME;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy