Skip to content

Commit

Permalink
Updated .gitignore, fixed GetAllMonitors action
Browse files Browse the repository at this point in the history
  • Loading branch information
LindsayHill committed Nov 27, 2017
1 parent fed228a commit 644f2de
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -15,7 +15,7 @@ dist/
downloads/
eggs/
.eggs/
lib/
./lib/
lib64/
parts/
sdist/
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.md
Expand Up @@ -2,6 +2,14 @@

## 0.1.1

- Fixed GetAllMonitors action

## 0.1.2

- Updated deprecated import path

## 0.1.1

- Added example configuration and updated README

## 0.1.0
Expand Down
2 changes: 1 addition & 1 deletion actions/lib/monitors.py
Expand Up @@ -17,7 +17,7 @@ def _run(self, **kwargs):
return api.Monitor.update(kwargs.pop("monitor_id"), **kwargs)


class DatadogAllMonitors(DatadogBaseAction):
class DatadogGetAllMonitors(DatadogBaseAction):
def _run(self):
return api.Monitor.get_all()

Expand Down
2 changes: 1 addition & 1 deletion actions/monitors.get_all_monitors.yaml
Expand Up @@ -13,7 +13,7 @@ parameters:
required: false
description: "A comma separated list indicating what tags, if any, should be used to filter the list of monitors by scope"
cls:
default: DatadogGetallMonitors
default: DatadogGetAllMonitors
immutable: true
type: string
module_path:
Expand Down
2 changes: 1 addition & 1 deletion pack.yaml
Expand Up @@ -6,6 +6,6 @@ keywords:
- monitoring
- alerting
- saas
version: 0.1.2
version: 0.1.3
author: Lisa Bekdache
email: lisa.bekdache@dailymotion.com

0 comments on commit 644f2de

Please sign in to comment.