{"id":16940241,"url":"https://github.com/greenpau/ovsdb","last_synced_at":"2025-04-11T19:21:21.785Z","repository":{"id":43557656,"uuid":"134728824","full_name":"greenpau/ovsdb","owner":"greenpau","description":"OVSDB Management Protocol (RFC 7047) Client Library","archived":false,"fork":false,"pushed_at":"2023-09-05T21:56:57.000Z","size":95,"stargazers_count":13,"open_issues_count":0,"forks_count":16,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-05-23T01:06:02.519Z","etag":null,"topics":["networking","ovs","ovs-system","ovsdb"],"latest_commit_sha":null,"homepage":null,"language":"Go","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/greenpau.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}},"created_at":"2018-05-24T14:42:31.000Z","updated_at":"2024-01-06T02:31:08.000Z","dependencies_parsed_at":"2023-12-03T17:41:56.776Z","dependency_job_id":null,"html_url":"https://github.com/greenpau/ovsdb","commit_stats":{"total_commits":28,"total_committers":6,"mean_commits":4.666666666666667,"dds":0.2142857142857143,"last_synced_commit":"ba2fa6bc5e69ee5511f72847d060e6709036ae0f"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fovsdb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fovsdb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fovsdb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/greenpau%2Fovsdb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/greenpau","download_url":"https://codeload.github.com/greenpau/ovsdb/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248456372,"owners_count":21106602,"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":["networking","ovs","ovs-system","ovsdb"],"created_at":"2024-10-13T21:06:38.150Z","updated_at":"2025-04-11T19:21:21.758Z","avatar_url":"https://github.com/greenpau.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OVSDB Management Protocol (RFC 7047) Client Library\n\n\u003ca href=\"https://github.com/greenpau/ovsdb/actions/\" target=\"_blank\"\u003e\u003cimg src=\"https://github.com/greenpau/ovsdb/workflows/build/badge.svg?branch=main\"\u003e\u003c/a\u003e\n\nThis Go library implements a client for the [Open vSwitch Database Management\nProtocol](https://tools.ietf.org/html/rfc7047).\n\n## Overview\n\nThe client can be used for communicating with:\n* Open vSwitch database\n* OVN Northbound and Southbound databases\n* Application services\n\nThe following tables describe the implementation state for the protocol's RPC\nmethods and database operations.\n\n| **RFC Section** | **Method** | **Implemented?** |\n| --- | --- | --- |\n| 4.1.1. | List Databases (`list_dbs`) | :white_check_mark: |\n| 4.1.2. | Get Schema (`get_schema`) | :white_check_mark: |\n| 4.1.3. | Transact (`transact`) | :white_check_mark: :warning: `select` operation only |\n| 4.1.4. | Cancel  | :white_medium_square: |\n| 4.1.5. | Monitor  | :white_medium_square: |\n| 4.1.6. | Update Notification  | :white_medium_square: |\n| 4.1.7. | Monitor Cancellation  | :white_medium_square: |\n| 4.1.8. | Lock Operations  | :white_medium_square: |\n| 4.1.9. | Locked Notification  | :white_medium_square: |\n| 4.1.10. | Stolen Notification  |  :white_medium_square: |\n| 4.1.11. | Echo (`echo`)| :white_check_mark: |\n\n| **RFC Section** | **Operation** | **Implemented?** |\n| --- | --- | --- |\n| 5.2.1. | Insert | :white_medium_square: |\n| 5.2.2. | Select | :white_check_mark: |\n| 5.2.3. | Update | :white_medium_square: |\n| 5.2.4. | Mutate | :white_medium_square: |\n| 5.2.5. | Delete | :white_medium_square: |\n| 5.2.6. | Wait | :white_medium_square: |\n| 5.2.7. | Commit | :white_medium_square: |\n| 5.2.8. | Abort | :white_medium_square: |\n| 5.2.9. | Comment | :white_medium_square: |\n| 5.2.10. | Assert | :white_medium_square: |\n\nAdditionally, the library implements the following application calls:\n* `list-commands`\n* `cluster/status`\n* `coverage/show`\n\nThe goals of the [`OWNERS`](OWNERS) is:\n* implementing all methods and operations described in the RPC\n* documenting all the implemented methods and operations\n* achieving and maintaining test coverage of 80% or higher, and\n* providing ongoing support\n\nThere are alternatives to this client library. The following list contains\nnotable libraries written in Go:\n\n* [digitalocean/go-openvswitch](https://github.com/digitalocean/go-openvswitch)\n* [socketplane/libovsdb](https://github.com/socketplane/libovsdb)\n* [eBay/go-ovn](https://github.com/eBay/go-ovn)\n\nCurrently, the best example how to use the library\nis [OVN Exporter for Prometheus](https://github.com/greenpau/ovn_exporter/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgreenpau%2Fovsdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgreenpau%2Fovsdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgreenpau%2Fovsdb/lists"}