@cryptotaxi247 / netdata-1 / commits / e3ec4e894

go.d nvidia_smi: enable by default (#18315)

* go.d nvidia_smi: enable by default * update meta

Ilya Mashchenko committed Aug 12, 2024 at 15:07 UTC e3ec4e894cd755a0998a4bf7e8d4dbbc0df382ac
2 files changed +1 -7
src/go/plugin/go.d/modules/nvidia_smi/metadata.yaml
+1 -6
@@ -25,8 +25,6 @@ modules:
25 metrics_description: |
26 This collector monitors GPUs performance metrics using
27 the [nvidia-smi](https://developer.nvidia.com/nvidia-system-management-interface) CLI tool.
28 -
29 - > **Warning**: under development, [loop mode](https://github.com/netdata/netdata/issues/14522) not implemented yet.
28 method_description: ""
29 supported_platforms:
30 include: []
@@ -43,10 +41,7 @@ modules:
41 description: ""
42 setup:
43 prerequisites:
46 - list:
47 - - title: Enable in go.d.conf.
48 - description: |
49 - This collector is disabled by default. You need to explicitly enable it in the `go.d.conf` file.
44 + list: []
45 configuration:
46 file:
47 name: go.d/nvidia_smi.conf
src/go/plugin/go.d/modules/nvidia_smi/nvidia_smi.go
-1
@@ -18,7 +18,6 @@ func init() {
18 module.Register("nvidia_smi", module.Creator{
19 JobConfigSchema: configSchema,
20 Defaults: module.Defaults{
21 - Disabled: true,
21 UpdateEvery: 10,
22 },
23 Create: func() module.Module { return New() },