{"id":15035908,"url":"https://github.com/netflix/servo","last_synced_at":"2025-05-10T11:06:16.740Z","repository":{"id":2059416,"uuid":"2997701","full_name":"Netflix/servo","owner":"Netflix","description":"Netflix Application Monitoring Library","archived":false,"fork":false,"pushed_at":"2024-12-10T21:14:04.000Z","size":5402,"stargazers_count":1420,"open_issues_count":1,"forks_count":298,"subscribers_count":550,"default_branch":"master","last_synced_at":"2025-04-02T17:03:44.877Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Netflix.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2011-12-16T21:09:27.000Z","updated_at":"2025-04-01T17:50:22.000Z","dependencies_parsed_at":"2024-01-06T17:17:55.485Z","dependency_job_id":"ed4fb18b-37f6-4281-b7eb-fcd1ac16759f","html_url":"https://github.com/Netflix/servo","commit_stats":{"total_commits":947,"total_committers":50,"mean_commits":18.94,"dds":0.6462513199577613,"last_synced_commit":"98d4bccbbd4699128c8ee60e67aab1a14b0c410e"},"previous_names":[],"tags_count":106,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netflix%2Fservo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netflix%2Fservo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netflix%2Fservo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Netflix%2Fservo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Netflix","download_url":"https://codeload.github.com/Netflix/servo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248095049,"owners_count":21046770,"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":[],"created_at":"2024-09-24T20:29:44.647Z","updated_at":"2025-04-09T19:02:55.291Z","avatar_url":"https://github.com/Netflix.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DEPRECATED\n\nThis project receives minimal maintenance to keep software that relies on it working. There\nis no active development or planned feature improvement. For any new projects it is recommended\nto use the [Spectator] library instead.\n\nFor more details see the [Servo comparison] page in the Spectator docs.\n\n[Spectator]: https://github.com/Netflix/spectator\n[Servo comparison]: http://netflix.github.io/spectator/en/latest/intro/servo-comparison/\n\n# No-Op Registry\n\nAs of version 0.13.0, the default monitor registry is a no-op implementation to minimize\nthe overhead for legacy apps that still happen to have some usage of Servo. If the previous\nbehavior is needed, then set the following system property:\n\n```\ncom.netflix.servo.DefaultMonitorRegistry.registryClass=com.netflix.servo.jmx.JmxMonitorRegistry\n```\n\n# Servo: Application Metrics in Java\n\n\u003e servo v. : WATCH OVER, OBSERVE\n\n\u003eLatin.\n\nServo provides a simple interface for exposing and publishing application metrics in Java.  The primary goals are:\n\n* **Leverage JMX**: JMX is the standard monitoring interface for Java and can be queried by many existing tools.\n* **Keep It Simple**: It should be trivial to expose metrics and publish metrics without having to write lots of code such as [MBean interfaces](http://docs.oracle.com/javase/tutorial/jmx/mbeans/standard.html).\n* **Flexible Publishing**: Once metrics are exposed, it should be easy to regularly poll the metrics and make them available for internal reporting systems, logs, and services like [Amazon CloudWatch](http://aws.amazon.com/cloudwatch/).\n\nThis has already been implemented inside of Netflix and most of our applications currently use it.\n\n## Project Details\n\n### Build Status\n\n[![Build Status](https://travis-ci.org/Netflix/servo.svg)](https://travis-ci.org/Netflix/servo/builds)\n\n### Versioning\n\nServo is released with a 0.X.Y version because it has not yet reached full API stability.\n\nGiven a version number MAJOR.MINOR.PATCH, increment the:\n\n* MINOR version when there are binary incompatible changes, and\n* PATCH version when new functionality or bug fixes are backwards compatible.\n\n### Documentation\n\n * [GitHub Wiki](https://github.com/Netflix/servo/wiki)\n * [Javadoc](http://netflix.github.io/servo/current/servo-core/docs/javadoc/)\n\n### Communication\n\n* Google Group: [Netflix Atlas](https://groups.google.com/forum/#!forum/netflix-atlas)\n* For bugs, feedback, questions and discussion please use [GitHub Issues](https://github.com/Netflix/servo/issues).\n* If you want to help contribute to the project, see [CONTRIBUTING.md](https://github.com/Netflix/servo/blob/master/CONTRIBUTING.md) for details.\n\n\n## Project Usage\n\n### Build\n\nTo build the Servo project:\n\n```\n$ git clone https://github.com/Netflix/servo.git\n$ cd servo\n$ ./gradlew build\n```\n\nMore details can be found on the [Getting Started](https://github.com/Netflix/servo/wiki/Getting-Started) page of the wiki.\n\n### Binaries\n\nBinaries and dependency information can be found at [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Ccom.netflix.servo).\n\nMaven Example:\n\n```\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.netflix.servo\u003c/groupId\u003e\n    \u003cartifactId\u003eservo-core\u003c/artifactId\u003e\n    \u003cversion\u003e0.12.7\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nIvy Example:\n\n```\n\u003cdependency org=\"com.netflix.servo\" name=\"servo-core\" rev=\"0.12.7\" /\u003e\n```\n\n## License\n\nCopyright 2012-2016 Netflix, Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at:\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetflix%2Fservo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetflix%2Fservo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetflix%2Fservo/lists"}