From 6d256d5ca9f8c124e582d91c8cbe6e9d9437055b Mon Sep 17 00:00:00 2001 From: Wes Davis Date: Sun, 6 Feb 2022 18:19:32 -0500 Subject: [PATCH] REL: Version 1.0.0 --- CHANGELOG.md | 9 +++++++++ COPYRIGHT.txt | 2 +- README.md | 16 ++++++++++++++++ setup.py | 2 +- 4 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md create mode 100644 README.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4512faa --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log + +## [Unreleased] + +## [1.0.0] - 2022-02-06 + +Initial release + +[Unreleased]: https://github.com/daviswr/ZenPacks.daviswr.Nvidia/compare/1.0.0...HEAD diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt index 95591d1..5d980c2 100644 --- a/COPYRIGHT.txt +++ b/COPYRIGHT.txt @@ -1,4 +1,4 @@ -Copyright (c) 2021 Wes Davis +Copyright (c) 2021-2022 Wes Davis Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md new file mode 100644 index 0000000..70c8b89 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# ZenPacks.daviswr.Nvidia + +ZenPack to monitor Nvidia GPUs on Linux + +## Requirements +* Nvidia proprietary drivers for Linux. nouveau is not supported +* An account on the monitored host, which can + * Log in via SSH with a key + * Execute the `nvidia-smi` utility +* [ZenPackLib](https://help.zenoss.com/in/zenpack-catalog/open-source/zenpacklib) + +## Usage +I'm not going to make any assumptions about your device class organization, so it's up to you to configure the `daviswr.cmd.Nvidia` modeler on the appropriate class or device. + +## Special Thanks +* [JRansomed](https://github.com/JRansomed) diff --git a/setup.py b/setup.py index 932470f..e3425c9 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ # or saved. Do not modify them directly here. # NB: PACKAGES is deprecated NAME = "ZenPacks.daviswr.Nvidia" -VERSION = "0.1.0dev" +VERSION = "1.0.0" AUTHOR = "Wes Davis" LICENSE = "MIT" NAMESPACE_PACKAGES = ['ZenPacks', 'ZenPacks.daviswr']