summaryrefslogtreecommitdiffstats
path: root/python.d/python_modules
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <ahferroin7@gmail.com>2018-05-31 15:33:12 -0400
committerAustin S. Hemmelgarn <ahferroin7@gmail.com>2018-05-31 15:33:12 -0400
commite8915e26537615282003d6baf094d59712c9b4f1 (patch)
tree2c46b9218f824fd94a803f255ccac3ebcdf959df /python.d/python_modules
parent1feb09ad461addb81478e5351845b0491cf2dab6 (diff)
Add SPDX-License-Identifier headers to most files.
This tags all the files that I can clearly identify as being part of Netdata and not a local copy of a third party package that we're redistributing.
Diffstat (limited to 'python.d/python_modules')
-rw-r--r--python.d/python_modules/base.py1
-rw-r--r--python.d/python_modules/bases/FrameworkServices/ExecutableService.py1
-rw-r--r--python.d/python_modules/bases/FrameworkServices/LogService.py1
-rw-r--r--python.d/python_modules/bases/FrameworkServices/MySQLService.py1
-rw-r--r--python.d/python_modules/bases/FrameworkServices/SimpleService.py1
-rw-r--r--python.d/python_modules/bases/FrameworkServices/SocketService.py1
-rw-r--r--python.d/python_modules/bases/FrameworkServices/UrlService.py1
-rw-r--r--python.d/python_modules/bases/charts.py1
-rw-r--r--python.d/python_modules/bases/collection.py1
-rw-r--r--python.d/python_modules/bases/loaders.py1
-rw-r--r--python.d/python_modules/bases/loggers.py1
11 files changed, 11 insertions, 0 deletions
diff --git a/python.d/python_modules/base.py b/python.d/python_modules/base.py
index 7c6e1d2f27..17be75165a 100644
--- a/python.d/python_modules/base.py
+++ b/python.d/python_modules/base.py
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
# Description: backward compatibility with old version
+# SPDX-License-Identifier: GPL-3.0+
from bases.FrameworkServices.SimpleService import SimpleService
from bases.FrameworkServices.UrlService import UrlService
diff --git a/python.d/python_modules/bases/FrameworkServices/ExecutableService.py b/python.d/python_modules/bases/FrameworkServices/ExecutableService.py
index a71f2bfd28..9b2e945e79 100644
--- a/python.d/python_modules/bases/FrameworkServices/ExecutableService.py
+++ b/python.d/python_modules/bases/FrameworkServices/ExecutableService.py
@@ -2,6 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
import os
diff --git a/python.d/python_modules/bases/FrameworkServices/LogService.py b/python.d/python_modules/bases/FrameworkServices/LogService.py
index 45daa2446b..4feff73013 100644
--- a/python.d/python_modules/bases/FrameworkServices/LogService.py
+++ b/python.d/python_modules/bases/FrameworkServices/LogService.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Pawel Krupa (paulfantom)
+# SPDX-License-Identifier: GPL-3.0+
from glob import glob
import os
diff --git a/python.d/python_modules/bases/FrameworkServices/MySQLService.py b/python.d/python_modules/bases/FrameworkServices/MySQLService.py
index 3acc5b109e..d72a97292c 100644
--- a/python.d/python_modules/bases/FrameworkServices/MySQLService.py
+++ b/python.d/python_modules/bases/FrameworkServices/MySQLService.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
from sys import exc_info
diff --git a/python.d/python_modules/bases/FrameworkServices/SimpleService.py b/python.d/python_modules/bases/FrameworkServices/SimpleService.py
index 177332c1f8..502a7a48d8 100644
--- a/python.d/python_modules/bases/FrameworkServices/SimpleService.py
+++ b/python.d/python_modules/bases/FrameworkServices/SimpleService.py
@@ -2,6 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
from threading import Thread
diff --git a/python.d/python_modules/bases/FrameworkServices/SocketService.py b/python.d/python_modules/bases/FrameworkServices/SocketService.py
index b1afaa9ce0..644c509e66 100644
--- a/python.d/python_modules/bases/FrameworkServices/SocketService.py
+++ b/python.d/python_modules/bases/FrameworkServices/SocketService.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Pawel Krupa (paulfantom)
+# SPDX-License-Identifier: GPL-3.0+
import socket
diff --git a/python.d/python_modules/bases/FrameworkServices/UrlService.py b/python.d/python_modules/bases/FrameworkServices/UrlService.py
index 74262df16e..863713d3f8 100644
--- a/python.d/python_modules/bases/FrameworkServices/UrlService.py
+++ b/python.d/python_modules/bases/FrameworkServices/UrlService.py
@@ -2,6 +2,7 @@
# Description:
# Author: Pawel Krupa (paulfantom)
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
import urllib3
diff --git a/python.d/python_modules/bases/charts.py b/python.d/python_modules/bases/charts.py
index 5394fbf640..60a8e856d5 100644
--- a/python.d/python_modules/bases/charts.py
+++ b/python.d/python_modules/bases/charts.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
from bases.collection import safe_print
diff --git a/python.d/python_modules/bases/collection.py b/python.d/python_modules/bases/collection.py
index e03b4f58ef..d95124889c 100644
--- a/python.d/python_modules/bases/collection.py
+++ b/python.d/python_modules/bases/collection.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
import os
diff --git a/python.d/python_modules/bases/loaders.py b/python.d/python_modules/bases/loaders.py
index d18b9dcd05..6f2cf7bd09 100644
--- a/python.d/python_modules/bases/loaders.py
+++ b/python.d/python_modules/bases/loaders.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
import types
from sys import version_info
diff --git a/python.d/python_modules/bases/loggers.py b/python.d/python_modules/bases/loggers.py
index fc40b83d3d..6ac1dd058a 100644
--- a/python.d/python_modules/bases/loggers.py
+++ b/python.d/python_modules/bases/loggers.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Description:
# Author: Ilya Mashchenko (l2isbad)
+# SPDX-License-Identifier: GPL-3.0+
import logging
import traceback