Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for unscoped access, implemented caching mechanism to reduce API calls to Nova #1276

Merged
merged 21 commits into from
May 24, 2018
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions openstack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG - openstack

1.3.0 / Unreleased
==================

### Changes

* [FEATURE] adding support for unscoped access. See [#1276][]

1.2.0 / Unreleased
==================

Expand Down Expand Up @@ -43,3 +50,4 @@
[#1119]: https://github.com/DataDog/integrations-core/issues/1119
[#1123]: https://github.com/DataDog/integrations-core/issues/1123
[#1126]: https://github.com/DataDog/integrations-core/issues/1126
[#1276]: https://github.com/DataDog/integrations-core/issues/1276
12 changes: 12 additions & 0 deletions openstack/conf.yaml.example
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ instances:
# The authorization scope that will be used to request a token from Identity API v3
# The auth scope must resolve to 1 of the following structures:
# {'project': {'name': 'my_project', 'domain': 'my_domain} OR {'project': {'id': 'my_project_id'}}
#
# ALPHA: DO NOT ADD an auth_scope if you wish to have unscoped access
# Simply add the relevant user credentials.
#
auth_scope:
project:
id: my_project_id
Expand Down Expand Up @@ -79,3 +83,11 @@ instances:
# Set (optional) custom tags for each metric
# tags:
# - optional:tag1

# If you need additional tags to submit with your server metrics.
# Please note that server metrics override the host tag and thus do not get
# the agent-level tags you may have set.
#
# server_tags:
# - foo:bar
# - baz:qux
2 changes: 1 addition & 1 deletion openstack/datadog_checks/openstack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

OpenStackCheck = openstack.OpenStackCheck

__version__ = "1.2.0"
__version__ = "1.3.0"

__all__ = ['openstack']
Loading