Skip to content

Commit 0a9639d

Browse files
authored
Merge pull request #5 from logicmonitor/DEV-79457-Need-to-Apply-License-information-to-Push-metric-SDK
Dev 79457 need to apply license information to push metric sdk
2 parents 70d980e + 433ccb7 commit 0a9639d

40 files changed

+650
-1
lines changed

LICENSE

Lines changed: 373 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,13 @@ Then run the program as:
117117

118118
Get in Touch
119119
------------
120-
If you have questions in general, reach out to our [support](mailto:support@logicmonitor.com)
120+
If you have questions in general, reach out to our [support](mailto:support@logicmonitor.com)
121+
122+
123+
------------
124+
Copyright, 2021, LogicMonitor, Inc.
125+
126+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
127+
128+
129+

docs/source/conf.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
# Configuration file for the Sphinx documentation builder.
29
#
310
# This file only contains a selection of the most common options. For a full

example/cpu_metrics.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
import logging
29
import os
310
import sys

example/disk_metrics.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
import logging
29
import os
310
import time

example/log_non_batch.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
# Sample Program to send Logs to LogicMonitor Platform
29
#
310
import os

example/simple_example.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
import time
29
from random import seed, random
310

example/test_property.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
import logging
29
import sys
310

logicmonitor_data_sdk/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
# coding: utf-8
29

310
# flake8: noqa

logicmonitor_data_sdk/api/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
"""
2+
=======
3+
Copyright, 2021, LogicMonitor, Inc.
4+
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
5+
=======
6+
"""
7+
18
from __future__ import absolute_import
29

310
# import apis into api package

0 commit comments

Comments
 (0)