azure-ai-anomalydetector-java Skill
Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring. Published by microsoft in skills.
What is azure-ai-anomalydetector-java Skill?
Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring. Published by microsoft in skills. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Data analysis use cases
Technical details
- Install or run with Copy skill directory
When to use azure-ai-anomalydetector-java Skill
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/skills
- Skill file: .github/plugins/azure-sdk-java/skills/azure-ai-anomalydetector-java/SKILL.md
What it does
Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.
Skill instructions
Azure AI Anomaly Detector SDK for Java Build anomaly detection applications using the Azure AI Anomaly Detector SDK for Java. Installation xml <dependency <groupIdcom.azure</groupId <artifactIdazure-ai-anomalydetector</artifactId <version3.0.0-beta.6</version </dependency Client Creation Sync and Async Clients java import com.azure.ai.anomalydetector.AnomalyDetectorClientBuilder; import com.azure.ai.anomalydetector.MultivariateClient; import com.azure.ai.anomalydetector.UnivariateClient; import com.azure.core.credential.AzureKeyCredential; String endpoint = System.getenv("AZUREANOMALYDETECTORENDPOINT"); String key = System.getenv("AZUREANOMALYDETECTORAPIKEY"); // Multivariate client for multiple correlated signals MultivariateClient multivariateClient = new AnomalyDetectorClientBuilder() .credential(new AzureKeyCredential(key)) .endpoint(endpoint) .buildMultivariateClient(); // Univariate client for single variable analysis UnivariateClient univariateClient = new AnomalyDetectorClientB
Explore related resources
Frequently asked questions
What is azure-ai-anomalydetector-java?
azure-ai-anomalydetector-java is a open-source AI agent skill with Copy skill directory. Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java.
Who is azure-ai-anomalydetector-java best for?
azure-ai-anomalydetector-java is best for reusing agent instructions, scripts, and references, data analysis workflows.
How do I install azure-ai-anomalydetector-java?
Install or run azure-ai-anomalydetector-java using Copy skill directory. Check azure-ai-anomalydetector-java for the latest setup command.
Is azure-ai-anomalydetector-java actively maintained?
azure-ai-anomalydetector-java may need a closer maintenance check before production use.
Auto-fetched from GitHub.