forked from DataDog/integrations-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,498 additions
and
1,500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
*.jar* | ||
|
||
# C extensions | ||
*.so | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
graft datadog_checks | ||
graft tests | ||
|
||
include MANIFEST.in | ||
include README.md | ||
include requirements.in | ||
include requirements-dev.txt | ||
include manifest.json | ||
|
||
global-exclude *.py[cod] __pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__path__ = __import__('pkgutil').extend_path(__path__, __name__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = '0.0.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from .__about__ import __version__ | ||
from .storm import StormCheck | ||
|
||
__all__ = [ | ||
'__version__', | ||
'StormCheck' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
init_config: | ||
# Default environment to use for all instances | ||
# environment: production | ||
# | ||
# Intervals (in seconds): Default is 1 min | ||
# intervals: | ||
# - 60 | ||
|
||
instances: | ||
- server: http://localhost:8080 | ||
# Always specify the server with the default storm REST api port. | ||
# Default is 8080 | ||
# | ||
# Specify the environment | ||
# environment: preproduction | ||
# | ||
# Specify additional tags | ||
# tags: | ||
# - mytag:myvalue | ||
# - mytag2:myvalue2 | ||
# | ||
# Specify metric intervals in seconds (note this overrides the defaults). | ||
# intervals: | ||
# - 60 | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Logos | ||
|
||
The logos folder should contain three images with filenames and sizes that exactly match the following specifications. Underneath each specification is a list of places where the images may appear in the web app. | ||
|
||
#### `saas_logos-bot.png` (200 × 128) | ||
|
||
- Integration tile images at `/account/settings` | ||
- Description heading at `/account/settings#integrations/storm` | ||
- Integration monitor tiles and search bar results images at `/monitors#create/integration` | ||
|
||
#### `saas_logos-small.png` (120 × 60) | ||
|
||
- Integration dashboards list images at `/dash/list` | ||
- Some integration dashboards/screenboards at `/dash/integration/storm` | ||
|
||
#### `avatars-bot.png` (128 × 128) | ||
|
||
- Event stream at `/event/stream` | ||
- Notification icons at `/report/monitor` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
datadog-checks-dev | ||
responses |
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
from codecs import open # To use a consistent encoding | ||
from os import path | ||
|
||
from setuptools import setup | ||
|
||
HERE = path.dirname(path.abspath(__file__)) | ||
|
||
# Get version info | ||
ABOUT = {} | ||
with open(path.join(HERE, 'datadog_checks', 'storm', '__about__.py')) as f: | ||
exec(f.read(), ABOUT) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(HERE, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
|
||
CHECKS_BASE_REQ = 'datadog-checks-base>=4.2.0' | ||
|
||
|
||
setup( | ||
name='datadog-storm', | ||
version=ABOUT['__version__'], | ||
description='The Storm check', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
keywords='datadog agent storm check', | ||
|
||
# The project's main homepage. | ||
url='https://github.com/DataDog/integrations-extras', | ||
|
||
# Author details | ||
author='@platinummonkey', | ||
author_email='@platinummonkey', | ||
|
||
# License | ||
license='BSD-3-Clause', | ||
|
||
# See https://pypi.org/classifiers | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Topic :: System :: Monitoring', | ||
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
|
||
# The package we're going to ship | ||
packages=['datadog_checks.storm'], | ||
|
||
# Run-time dependencies | ||
install_requires=[CHECKS_BASE_REQ], | ||
|
||
# Extra files to ship with the wheel package | ||
include_package_data=True, | ||
) |
Oops, something went wrong.