org.mvnsearch.spring.boot.osquery.OsqueryAutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osquery-spring-boot-starter Show documentation
Show all versions of osquery-spring-boot-starter Show documentation
Spring Boot starter osquery to query system information
The newest version!
package org.mvnsearch.spring.boot.osquery;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* osquery auto configuration
*
* @author linux_china
*/
@Configuration
public class OsqueryAutoConfiguration {
@Bean
public OsqueryEndpoint osqueryEndpoint(@Value("${osqueryi.path:osqueryi}") String osqueryiPath) {
return new OsqueryEndpoint(osqueryiPath);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy