Skip to content

Commit

Permalink
chore(nvml/datadog_checks/nvml): regenerate protobuf code
Browse files Browse the repository at this point in the history
The current generated protobuf code is no longer compatible
with the version of runtime protobuf implementation bundled
with the Datadog Agent.

This api protobuf code is regenerated using Python protobuf
 5.27.2. It should be compatible with Agent >= 7.56.0.

Signed-off-by: Massimiliano Giovagnoli <[email protected]>
  • Loading branch information
maxgio92 committed Nov 12, 2024
1 parent d38c5cd commit b721d01
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 348 deletions.
15 changes: 15 additions & 0 deletions nvml/datadog_checks/nvml/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# NVML Datadog check

## Development

### Regenerate API protobuf code

```shell
$ python3 -m venv .venv
$ . .venv/bin/activate
(venv) $ python3 -m pip install -r requirements.txt
(venv) $ python3 -m grpc_tools.protoc --python_out=. --proto_path=. api.proto
(venv) $ deactivate
$
```

Loading

0 comments on commit b721d01

Please sign in to comment.