Class IpmiSource
java.lang.Object
org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.Source
org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.IpmiSource
- All Implemented Interfaces:
Serializable
Represents a source task that retrieves data using IPMI.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIpmiSource(String type, List<Compute> computes, boolean forceSerialization, String key, ExecuteForEachEntryOf executeForEachEntryOf) Constructs a newIpmiSourceinstance with the provided attributes. -
Method Summary
Modifier and TypeMethodDescriptionaccept(ISourceProcessor sourceProcessor) Accepts a source processor to perform processing on the source.copy()Creates a copy of the source.toString()voidupdate(UnaryOperator<String> updater) Updates the source based on the provided updater function.Methods inherited from class org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.Source
getEntryConcatMethod, getExecuteForEachEntryOf, getSleepExecuteForEachEntryOf, isExecuteForEachEntryOf
-
Constructor Details
-
IpmiSource
public IpmiSource(String type, List<Compute> computes, boolean forceSerialization, String key, ExecuteForEachEntryOf executeForEachEntryOf) Constructs a newIpmiSourceinstance with the provided attributes.- Parameters:
type- the type of the sourcecomputes- the list of compute operations to be appliedforceSerialization- flag indicating whether serialization should be forcedkey- the key associated with the sourceexecuteForEachEntryOf- the execute-for-each-entry-of information
-
-
Method Details