Class WbemSource
java.lang.Object
org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.Source
org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.WbemSource
- All Implemented Interfaces:
Serializable
Represents a source that retrieves data using WBEM (Web-Based Enterprise Management) protocol.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWbemSource(String type, List<Compute> computes, boolean forceSerialization, @NonNull String query, String namespace, String key, ExecuteForEachEntryOf executeForEachEntryOf) Builder for creating instances ofWbemSource. -
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
-
WbemSource
public WbemSource(String type, List<Compute> computes, boolean forceSerialization, @NonNull @NonNull String query, String namespace, String key, ExecuteForEachEntryOf executeForEachEntryOf) Builder for creating instances ofWbemSource.- Parameters:
type- The type of the source.computes- List of computations to be applied to the source.forceSerialization- Flag indicating whether to force serialization.query- The WBEM query used to retrieve data.namespace- The WBEM namespace for the query.key- The key associated with the source.executeForEachEntryOf- The execution context for each entry of the source.
-
-
Method Details