{"id":13795315,"url":"https://github.com/yahoo/sherlock","last_synced_at":"2025-10-13T01:48:37.382Z","repository":{"id":31994515,"uuid":"117894017","full_name":"yahoo/sherlock","owner":"yahoo","description":"Sherlock is an anomaly detection service built on top of Druid","archived":false,"fork":false,"pushed_at":"2024-12-02T20:04:05.000Z","size":1681,"stargazers_count":154,"open_issues_count":10,"forks_count":37,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-12-31T07:28:17.817Z","etag":null,"topics":["anomaly-detection","druid","jobscheduler","redis","redis-cluster","sparkjava","timeseries"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yahoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-17T21:20:01.000Z","updated_at":"2024-12-26T15:21:13.000Z","dependencies_parsed_at":"2025-01-09T15:45:36.666Z","dependency_job_id":"eea106ea-f751-486b-8cbb-1573548ca90c","html_url":"https://github.com/yahoo/sherlock","commit_stats":{"total_commits":155,"total_committers":9,"mean_commits":17.22222222222222,"dds":0.09677419354838712,"last_synced_commit":"958838a693bc471a0eb19ac010a95319f6cf8444"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yahoo%2Fsherlock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yahoo%2Fsherlock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yahoo%2Fsherlock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yahoo%2Fsherlock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yahoo","download_url":"https://codeload.github.com/yahoo/sherlock/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247176231,"owners_count":20896437,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["anomaly-detection","druid","jobscheduler","redis","redis-cluster","sparkjava","timeseries"],"created_at":"2024-08-03T23:00:54.547Z","updated_at":"2025-10-13T01:48:32.347Z","avatar_url":"https://github.com/yahoo.png","language":"Java","funding_links":[],"categories":["人工智能"],"sub_categories":[],"readme":"# Sherlock: Anomaly Detector\n\n[![build](https://github.com/yahoo/sherlock/workflows/build/badge.svg?branch=master)](https://github.com/yahoo/sherlock/actions?query=workflow%3Abuild)\n[![Release Artifacts][Badge-SonatypeReleases]][Link-SonatypeReleases]\n[![Snapshot Artifacts][Badge-SonatypeSnapshots]][Link-SonatypeSnapshots]\n[![Coverage Status](https://coveralls.io/repos/github/yahoo/sherlock/badge.svg?branch=master)](https://coveralls.io/github/yahoo/sherlock)\n[![GPL 3.0](https://img.shields.io/badge/license-GPL%203.0-blue.svg?style=flat)](LICENSE)\n\n\n## Table of Contents\n\n  * [Introduction](#introduction-to-sherlock)\n  * [Components](#components)\n  * [Detailed Description](#detailed-description)\n  * [How to build](#how-to-build)\n      * [Build JAR](#build-jar)\n      * [How to run](#how-to-run)\n      * [CLI args usage](#cli-args-usage)\n  * [Committers](#committers)\n  * [Contributors](#contributors)\n  * [License](#license)\n\n## Introduction to Sherlock\n\nSherlock is an anomaly detection service built on top of [Druid](http://druid.io/). It leverages [EGADS (Extensible Generic Anomaly Detection System)](https://github.com/yahoo/egads) to detect anomalies in time-series data. Users can schedule jobs on an hourly, daily, weekly, or monthly basis, view anomaly reports from Sherlock's interface, or receive them via email.\n\n## Components\n\n1. [Timeseries Generation](#timeseries-generation)\n2. [EGADS Anomaly Detection](#egads-anomaly-detection)\n3. [Redis database](#redis-database)\n4. [UI in Spark Java](#ui-in-spark-java)\n\n## Detailed Description\n\n### Timeseries Generation\n    \nTimeseries generation is the first phase of Sherlock's anomaly detection. The user inputs a full Druid JSON query with a metric name and group-by dimensions. Sherlock validates the query, adjusts the time interaval and granularity based on the EGADS config, and makes a call to Druid. Druid responds with an array of time-series, which are parsed into EGADS time-series.\n    \n#### Sample Druid Query:\n```json\n{\n  \"metric\": \"metric(metric1/metric2)\", \n  \"aggregations\": [\n    {\n      \"filter\": {\n        \"fields\": [\n          {\n            \"type\": \"selector\", \n            \"dimension\": \"dim1\", \n            \"value\": \"value1\"\n          }\n        ], \n        \"type\": \"or\"\n      }, \n      \"aggregator\": {\n        \"fieldName\": \"metric2\", \n        \"type\": \"longSum\", \n        \"name\": \"metric2\"\n      }, \n      \"type\": \"filtered\"\n    }\n  ], \n  \"dimension\": \"groupByDimension\", \n  \"intervals\": \"2017-09-10T00:00:01+00:00/2017-10-12T00:00:01+00:00\", \n  \"dataSource\": \"source1\", \n  \"granularity\": {\n    \"timeZone\": \"UTC\", \n    \"type\": \"period\", \n    \"period\": \"P1D\"\n  }, \n  \"threshold\": 50, \n  \"postAggregations\": [\n    {\n      \"fields\": [\n        {\n          \"fieldName\": \"metric1\", \n          \"type\": \"fieldAccess\", \n          \"name\": \"metric1\"\n        }\n      ], \n      \"type\": \"arithmetic\", \n      \"name\": \"metric(metric1/metric2)\", \n      \"fn\": \"/\"\n    }\n  ], \n  \"queryType\": \"topN\"\n}\n```\n#### Sample Druid Response:\n```json\n[ {\n  \"timestamp\" : \"2017-10-11T00:00:00.000Z\",\n  \"result\" : [ {\n    \"groupByDimension\" : \"dim1\",\n    \"metric(metric1/metric2)\" : 8,\n    \"metric1\" : 128,\n    \"metric2\" : 16\n  }, {\n    \"groupByDimension\" : \"dim2\",\n    \"metric(metric1/metric2)\" : 4.5,\n    \"metric1\" : 42,\n    \"metric2\" : 9.33\n  } ]\n}, {\n  \"timestamp\" : \"2017-10-12T00:00:00.000Z\",\n  \"result\" : [ {\n    \"groupByDimension\" : \"dim1\",\n    \"metric(metric1/metric2)\" : 9,\n    \"metric1\" : 180,\n    \"metric2\" : 20\n  }, {\n    \"groupByDimension\" : \"dim2\",\n    \"metric(metric1/metric2)\" : 5.5,\n    \"metric1\" : 95,\n    \"metric2\" : 17.27\n  } ]\n} ]\n```\n### EGADS Anomaly Detection\n\nSherlock calls the user-configured EGADS API for each generated time-series, generates anomaly reports from the response, and stores these reports in a database. Users may also elect to receive anomaly reports by email.\n    \n### Redis Database\n\nSherlock uses a Redis backend [Redis](https://redis.io/) to store job metadata, generated anomaly reports, among other information, and as a persistent job queue. Keys related to Reports have retention policy. Hourly job reports have retention of 14 days and daily/weekly/monthly job reports have 1 year of retention.   \n    \n### Sherlock UI\n\nSherlock's user interface is built with [Spark](http://sparkjava.com/). The UI enables users to submit instant anomaly analyses, create and launch detection jobs, view anomalies on a heatmap, and on a graph.\n\n## Building Sherlock\n\nA `Makefile` is provided with all build targets.\n\n### Building the JAR\n\n```bash\nmake jar\n```\n\nThis creates `sherlock.jar` in the `target/` directory.\n\n### How to run\nSherlock is run through the commandline with config arguments.\n\n```bash\njava -Dlog4j.configuration=file:${path_to_log4j}/log4j.properties \\\n      -jar ${path_to_jar}/sherlock.jar \\\n      --version $(VERSION) \\\n      --project-name $(PROJECT_NAME) \\\n      --port $(PORT) \\\n      --enable-email \\\n      --failure-email $(FAILURE_EMAIL) \\\n      --from-mail $(FROM_MAIL) \\\n      --reply-to $(REPLY_TO) \\\n      --smtp-host $(SMTP_HOST) \\\n      --interval-minutes $(INTERVAL_MINUTES) \\\n      --interval-hours $(INTERVAL_HOURS) \\\n      --interval-days $(INTERVAL_DAYS) \\\n      --interval-weeks $(INTERVAL_WEEKS) \\\n      --interval-months $(INTERVAL_MONTHS) \\\n      --egads-config-filename $(EGADS_CONFIG_FILENAME) \\\n      --redis-host $(REDIS_HOSTNAME) \\\n      --redis-port $(REDIS_PORT) \\\n      --execution-delay $(EXECUTION_DELAY) \\\n      --timeseries-completeness $(TIMESERIES_COMPLETENESS)\n```\n\n### CLI args usage\n\n| args                                  | required            | default                                                                                                             | description                                         |\n|---------------------------------------|---------------------|---------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|\n| --help                                |    -                | `false`                                                                                                             | [help](#help)                                       |\n| --config                              |    -                | `null`                                                                                                              | [config](#config)                                   |\n| --version                             |    -                | `v0.0.0`                                                                                                            | [version](#version)                                 |\n| --egads-config-filename               |    -                | `provided`                                                                                                          | [egads-config-filename](#egads-config-filename)     |\n| --port                                |    -                | `4080`                                                                                                              | [port](#port)                                       |\n| --interval-minutes                    |    -                | `180`                                                                                                               | [interval-minutes](#interval-minutes)               |\n| --interval-hours                      |    -                | `672`                                                                                                               | [interval-hours](#interval-hours)                   |\n| --interval-days                       |    -                | `28`                                                                                                                | [interval-days](#interval-days)                     |\n| --interval-weeks                      |    -                | `12`                                                                                                                | [interval-weeks](#interval-weeks)                   |\n| --interval-months                     |    -                | `6`                                                                                                                 | [interval-months](#interval-months)                 |\n| --enable-email                        |    -                | `false`                                                                                                             | [enable-email](#enable-email)                       |\n| --from-mail                           | if email `enabled`  |                                                                                                                     | [from-mail](#from-mail)                             |\n| --reply-to                            | if email `enabled`  |                                                                                                                     | [reply-to](#reply-to)                               |\n| --smtp-host                           | if email `enabled`  |                                                                                                                     | [smtp-host](#smtp-host)                             |\n| --smtp-port                           |    -                | `25`                                                                                                                | [smtp-port](#smtp-port)                             |\n| --smtp-user                           |    -                |                                                                                                                     | [smtp-user](#smtp-user)                             |\n| --smtp-password                       |    -                |                                                                                                                     | [smtp-password](#smtp-password)                     |\n| --failure-email                       | if email `enabled`  |                                                                                                                     | [failure-email](#failure-email)                     |\n| --execution-delay                     |    -                | `30`                                                                                                                | [execution-delay](#execution-delay)                 |\n| --valid-domains                       |    -                | `null`                                                                                                              | [valid-domains](#valid-domains)                     |\n| --redis-host                          |    -                | `127.0.0.1`                                                                                                         | [redis-host](#redis-host)                           |\n| --redis-port                          |    -                | `6379`                                                                                                              | [redis-port](#redis-port)                           |\n| --redis-ssl                           |    -                | `false`                                                                                                             | [redis-ssl](#redis-ssl)                             |\n| --redis-timeout                       |    -                | `5000`                                                                                                              | [redis-timeout](#redis-timeout)                     |\n| --redis-password                      |    -                | -                                                                                                                   | [redis-password](#redis-password)                   |\n| --redis-clustered                     |    -                | `false`                                                                                                             | [redis-clustered](#redis-clustered)                 |\n| --project-name                        |    -                | -                                                                                                                   | [project-name](#project-name)                       |\n| --external-file-path                  |    -                | -                                                                                                                   | [external-file-path](#external-file-path)           |\n| --debug-mode                          |    -                | `false`                                                                                                             | [debug-mode](#debug-mode)                           |\n| --timeseries-completeness             |    -                | `60`                                                                                                                | [timeseries-completeness](#timeseries-completeness) |\n| --http-client-timeout                 |    -                | `20000`                                                                                                             | [http-client-timeout](#http-client-timeout)         |\n| --backup-redis-db-path                |    -                | `null`                                                                                                              | [backup-redis-db-path](#backup-redis-db-path)       |\n| --druid-brokers-list-file             |    -                | `null`                                                                                                              | [druid-brokers-list-file](#druid-brokers-list-file) |\n| --truststore-path                     |    -                | `null`                                                                                                              | [truststore-path](#truststore-path)                 |\n| --truststore-type                     |    -                | `jks`                                                                                                               | [truststore-type](#truststore-type)                 |\n| --truststore-password                 |    -                | `null`                                                                                                              | [truststore-password](#truststore-password)         |\n| --keystore-path                       |    -                | `null`                                                                                                              | [keystore-path](#keystore-path)                     |\n| --keystore-type                       |    -                | `jks`                                                                                                               | [keystore-type](#keystore-type)                     |\n| --keystore-password                   |    -                | `null`                                                                                                              | [keystore-password](#keystore-password)             |\n| --key-dir                             |    -                | `null`                                                                                                              | [key-dir](#key-dir)                                 |\n| --cert-dir                            |    -                | `null`                                                                                                              | [cert-dir](#cert-dir)                               |\n| --https-hostname-verification         |    -                | `true`                                                                                                              | [https-hostname-verification](#https-hostname-verification)             |\n| --custom-ssl-context-provider-class   |    -                | [`DefaultSslContextProvider`](https://github.com/yahoo/sherlock/tree/master/src/main/java/com/yahoo/sherlock/utils) | [custom-ssl-context-provider-class](#custom-ssl-context-provider-class) |\n| --custom-secret-provider-class        |    -                | [`DefaultSecretProvider`](https://github.com/yahoo/sherlock/tree/master/src/main/java/com/yahoo/sherlock/utils)     | [custom-secret-provider-class](#custom-secret-provider-class)           |\n| --prophet-url                       |    -                | `127.0.0.1:4080`                                                                                                    | [prophet-url](#prophet-url)                                             |\n| --prophet-timeout                   |    -                | `120000`                                                                                                            | [prophet-timeout](#prophet-timeout)                                     |\n| --prophet-principal                 |    -                | `prophet-principal`                                                                                                 | [prophet-principal](#prophet-principal)                                 |\n\n#### help\nPrints commandline argument help message.\n#### config\nPath to a Sherlock configuration file, where the above configuration may be specified. Config arguments in the file override commandline arguments.\n#### version\nVersion of `sherlock.jar` to display on the UI \n#### egads-config-filename\nPath to a custom EGADS configuration file. If none is specified, the default configuration is used.\n#### port\nPort on which to host the Spark application.\n#### interval-minutes\nNumber of historic data points to use for detection on time-series every minute.\n#### interval-hours\nNumber of historic data points to use for detection on hourly time-series.\n#### interval-days\nNumber of historic data points to use for detection on daily time-series.\n#### interval-weeks\nNumber of historic data points to use for detection on weekly time-series.\n#### interval-months\nNumber of historic data points to use for detection on monthly time-series.\n#### enable-email\nEnable the email service. This enables users to receive email anomaly report notifications.\n#### from-mail\nThe handle's `FROM` email displayed to email recipients.\n#### reply-to\nThe handle's `REPLY TO` email where replies will be sent.\n#### smtp-host\nThe email service's `SMTP HOST`.\n#### smtp-port\nThe email service's `SMTP PORT`. The default value is `25`.\n#### smtp-user\nThe email service's `SMTP USER`.\n#### smtp-password\nThe email service's `SMTP PASSWORD`.\n#### failure-email\nA dedicated email which may be set to receive job failure notifications.\n#### execution-delay\nSherlock periodically pings Redis to check scheduled jobs. This sets the ping delay in seconds. Jobs are scheduled with a precision of one minute.\n#### valid-domains\nA comma-separated list of valid domains to receive emails, e.g. 'yahoo,gmail,hotmail'. If specified, Sherlock will restrict who may receive emails.\n#### redis-host\nThe Redis backend hostname.\n#### redis-port\nThe Redis backend port.\n#### redis-ssl\nWhether Sherlock should connect to Redis via SSL.\n#### redis-timeout\nThe Redis connection timeout.\n#### redis-password\nThe password to use when authenticating to Redis.\n#### redis-clustered\nWhether the Redis backend is a cluster.\n#### project-name\nName of the project to display on UI.\n#### external-file-path\nSpecify the path to external files for Spark framework via this argument.\n#### debug-mode\nDebug mode enables debug routes. Ex. '/DatabaseJson' (shows redis data as json dump). Look at `com.yahoo.sherlock.App` for more details. \n#### timeseries-completeness\nThis defines minimum fraction of datapoints needed in the timeseries to consider it as a valid timeseries o/w sherlock ignores such timeseries. (default value 60 i.e. 0.6 in fraction)\n#### http-client-timeout\nHttpClient timeout can be configured using this(in millis). (default value 20000)\n#### backup-redis-db-path\nBackup redis DB at given file path as json dump of indices and objects. Backup is done per day at midnight. Default this parameter is null i.e. no buckup. However, BGSAVE command is run at midnight to save redis local dump.\n#### druid-brokers-list-file\nSpecify the path to an access control list file of permitted druid broker hosts for querying. Format: `\u003chost1\u003e:\u003cport\u003e,\u003chost2\u003e:\u003cport\u003e...` (default null i.e any host is allowed)\n#### truststore-path\nPath to specify truststore location for mTLS connections. (default `null`)\n#### truststore-type                  \nParam to specify truststore type for mTLS connections. (default `jks`)\n#### truststore-password              \nParam to specify truststore password for mTLS connections. (default `null`)\n#### keystore-path                    \nPath to specify keystore location for mTLS connections. (default `null`)\n#### keystore-type                    \nParam to specify keystore type for mTLS connections. (default `jks`)\n#### keystore-password                \nParam to specify keystore password for mTLS connections. (default `null`)\n#### key-dir                          \nParam to specify key directory containing multiple keys(for different clusters) for mTLS connections (default `null`).\nThis is used when `Principal Name` is given in druid cluster form.\nIt looks for filename containing `Principal Name` under this dir.\nIf `--key-dir` and `--cert-dir` values are same then the filename should also contain the identifier `key` for private key file and `cert` for public key file.\n#### cert-dir                         \nParam to specify cert directory containing multiple certs(for different clusters) for mTLS connections (default `null`).\"\nThis is used when `Principal Name` is given in druid cluster form.\nIt looks for file name containing `Principal Name` under this dir.\nIf `--key-dir` and `--cert-dir` values are same then the filename should also contain the identifier `key` for private key file and `cert` for public key file.\n#### https-hostname-verification      \nParam to enable/disable https hostname verification for mTLS connections. (default `true` i.e. hostname verification enabled)\n#### custom-ssl-context-provider-class\nParam to specify custom ssl context provider class for mTLS connections. (default `com.yahoo.sherlock.utils.DefaultSslContextProvider` which returns SSLContext with validation)\n#### custom-secret-provider-class     \nParam to specify custom secret provider class for passwords. (default `com.yahoo.sherlock.utils.DefaultSecretProvider` which returns secrets specified from CLISettings)\n#### prophet-url\nAPI endpoint of a running Prophet Service. (default `127.0.0.1:4080` which include both url and port)\n#### prophet-timeout\nTimeout for querying the Prophet Service. (default `120000` milliseconds)\n#### prophet-principal\nThe Kubernetes principal that the Prophet Service is located. (default `prophet-principal`)\n\n## Getting started\nIt is suggested to use Java8 and Maven 3.3 to develop Sherlock.\n\n## Further Development\n### Adding a new anomaly detector to Sherlock\nCurrently, Sherlock supports two detector pipelines (Egads/Prophet). Both pipelines use Egads' anomaly detection module for anomaly detection.\nThe Egads pipeline conducts both time series forecasting and anomaly detection via Egads anomaly detection library.\nOn the other hand, the Prophet pipeline allows Sherlock to query forecasted time series from a Prophet web service.\nAfter that, the Prophet pipeline performs anomaly detection via Egads' anomaly detection module.\nIf the developer wants to add a new anomaly detector to Sherlock, the developer should look at the abstract class `service/DetectorAPIService.java`, and implement a new detector class that extends `DetectorAPIService`.\nMore specifically, developers should implement abstract methods `detectAnomaliesAndForecast` and `detectAnomalies`. The two abstract methods are elaborated in sections below.\n\n### Developing the instant detection feature\nSherlock allows the user to perform an instant anomaly detection, which is accessible via the /Flash-Query endpoint. The endpoint is linked to method `processInstantAnomalyJob` under `Routes.java`,\nwhich calls method `detectWithResults` under `DetectorService.java`.\nMethod `detectWithResults` checks which detector the user wants to use, assign the corresponding `DetectorAPIService` instance, and calls the instance's `detectAnomaliesAndForecast` method.\nMethod `detectAnomaliesAndForecast` does anomaly detection and returns the original time series, expected time series, and the anomaly points. The combined results are displayed via the /Flash-Query/ProcessAnomalyReport endpoint.\n\n### Developing the Job Scheduling feature\nSherlock allows the user to schedule anomaly detection jobs that run routinely.\nRegarding the job scheduling, Sherlock uses `JobScheduler.java` to maintain a Priority Queue stored in Redis. Every time the user adds a job,\nSherlock puts the job into via method `scheduleJob` with the job's next run time as the priority.\nSherlock keeps checking the current system time, and pops the Priority Queue as required via method `consumeAndExecuteTasks`.\nFor the actual detection, method `consumeAndExecuteTasks` executes a job that is due, which eventually goes to method `runDetection` under `DetectorService.java`.\nMethod `runDetection` checks which detector the user wants to use, assign the corresponding DetectorAPIService instance, and calls the instance's `detectAnomalies` method.\nMethod `detectAnomalies` does anomaly detection and returns anomaly points because job reports display only detected anomaly points.\n\n### Understanding TimeSeries/Anomaly format used in Sherlock\nAll current pipelines use `TimeSeries` and `Anomaly` classes defined in Egads heavily. To gain a better understanding of those formats, developers should read `TimeSeries.java/Anomaly.java` defined in the [Egads repository](https://github.com/yahoo/egads).\n\n## Committers\n\nJigar Patel, [jigsdevbox@gmail.com](mailto:jigsdevbox@gmail.com)\n\nJeff Niu, [jeffniu22@gmail.com](mailto:jeffniu22@gmail.com)\n\n## Contributors\n\nJosh Walters, [josh@joshwalters.com](mailto:josh@joshwalters.com)\n\nStephan Stiefel, [Stephan3555](https://github.com/Stephan3555)\n\nHan Xu, [hanxu12](https://github.com/hanxu12)\n\n## License\n\nCode licensed under the [GPL v3 License](https://www.gnu.org/licenses/quick-guide-gplv3.en.html). See LICENSE file for terms.\n\n[Link-SonatypeReleases]: https://oss.sonatype.org/content/repositories/releases/com/yahoo/sherlock/sherlock/ \"Sonatype Releases\"\n[Link-SonatypeSnapshots]: https://oss.sonatype.org/content/repositories/snapshots/com/yahoo/sherlock/sherlock/ \"Sonatype Snapshots\"\n[Badge-SonatypeReleases]: https://img.shields.io/nexus/r/https/oss.sonatype.org/com.yahoo.sherlock/sherlock.svg \"Sonatype Releases\"\n[Badge-SonatypeSnapshots]: https://img.shields.io/nexus/s/https/oss.sonatype.org/com.yahoo.sherlock/sherlock.svg \"Sonatype Snapshots\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyahoo%2Fsherlock","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyahoo%2Fsherlock","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyahoo%2Fsherlock/lists"}