mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-23 13:20:30 -07:00
Ansible - Logging Metrics
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
5f81de42fa
commit
95d6719dec
8 changed files with 1306 additions and 0 deletions
2
tests/integration/targets/gcp_logging_metric/aliases
Normal file
2
tests/integration/targets/gcp_logging_metric/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/gcp
|
||||
unsupported
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
resource_name: "{{ resource_prefix }}"
|
183
tests/integration/targets/gcp_logging_metric/tasks/autogen.yml
Normal file
183
tests/integration/targets/gcp_logging_metric/tasks/autogen.yml
Normal file
|
@ -0,0 +1,183 @@
|
|||
---
|
||||
# ----------------------------------------------------------------------------
|
||||
#
|
||||
# *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
|
||||
#
|
||||
# ----------------------------------------------------------------------------
|
||||
#
|
||||
# This file is automatically generated by Magic Modules and manual
|
||||
# changes will be clobbered when the file is regenerated.
|
||||
#
|
||||
# Please read more about how to change this file at
|
||||
# https://www.github.com/GoogleCloudPlatform/magic-modules
|
||||
#
|
||||
# ----------------------------------------------------------------------------
|
||||
# Pre-test setup
|
||||
- name: delete a metric
|
||||
google.cloud.gcp_logging_metric:
|
||||
name: "{{ resource_name }}"
|
||||
filter: resource.type=gae_app AND severity>=ERROR
|
||||
metric_descriptor:
|
||||
metric_kind: DELTA
|
||||
value_type: DISTRIBUTION
|
||||
unit: '1'
|
||||
labels:
|
||||
- key: mass
|
||||
value_type: STRING
|
||||
description: amount of matter
|
||||
value_extractor: EXTRACT(jsonPayload.request)
|
||||
label_extractors:
|
||||
mass: EXTRACT(jsonPayload.request)
|
||||
bucket_options:
|
||||
linear_buckets:
|
||||
num_finite_buckets: 3
|
||||
width: 1
|
||||
offset: 1
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: absent
|
||||
#----------------------------------------------------------
|
||||
- name: create a metric
|
||||
google.cloud.gcp_logging_metric:
|
||||
name: "{{ resource_name }}"
|
||||
filter: resource.type=gae_app AND severity>=ERROR
|
||||
metric_descriptor:
|
||||
metric_kind: DELTA
|
||||
value_type: DISTRIBUTION
|
||||
unit: '1'
|
||||
labels:
|
||||
- key: mass
|
||||
value_type: STRING
|
||||
description: amount of matter
|
||||
value_extractor: EXTRACT(jsonPayload.request)
|
||||
label_extractors:
|
||||
mass: EXTRACT(jsonPayload.request)
|
||||
bucket_options:
|
||||
linear_buckets:
|
||||
num_finite_buckets: 3
|
||||
width: 1
|
||||
offset: 1
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- name: verify that metric was created
|
||||
google.cloud.gcp_logging_metric_info:
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/cloud-platform
|
||||
register: results
|
||||
- name: verify that command succeeded
|
||||
assert:
|
||||
that:
|
||||
- results['resources'] | map(attribute='name') | select("match", ".*{{ resource_name }}.*") | list | length == 1
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: create a metric that already exists
|
||||
google.cloud.gcp_logging_metric:
|
||||
name: "{{ resource_name }}"
|
||||
filter: resource.type=gae_app AND severity>=ERROR
|
||||
metric_descriptor:
|
||||
metric_kind: DELTA
|
||||
value_type: DISTRIBUTION
|
||||
unit: '1'
|
||||
labels:
|
||||
- key: mass
|
||||
value_type: STRING
|
||||
description: amount of matter
|
||||
value_extractor: EXTRACT(jsonPayload.request)
|
||||
label_extractors:
|
||||
mass: EXTRACT(jsonPayload.request)
|
||||
bucket_options:
|
||||
linear_buckets:
|
||||
num_finite_buckets: 3
|
||||
width: 1
|
||||
offset: 1
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: present
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.changed == false
|
||||
#----------------------------------------------------------
|
||||
- name: delete a metric
|
||||
google.cloud.gcp_logging_metric:
|
||||
name: "{{ resource_name }}"
|
||||
filter: resource.type=gae_app AND severity>=ERROR
|
||||
metric_descriptor:
|
||||
metric_kind: DELTA
|
||||
value_type: DISTRIBUTION
|
||||
unit: '1'
|
||||
labels:
|
||||
- key: mass
|
||||
value_type: STRING
|
||||
description: amount of matter
|
||||
value_extractor: EXTRACT(jsonPayload.request)
|
||||
label_extractors:
|
||||
mass: EXTRACT(jsonPayload.request)
|
||||
bucket_options:
|
||||
linear_buckets:
|
||||
num_finite_buckets: 3
|
||||
width: 1
|
||||
offset: 1
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is true
|
||||
assert:
|
||||
that:
|
||||
- result.changed == true
|
||||
- name: verify that metric was deleted
|
||||
google.cloud.gcp_logging_metric_info:
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
scopes:
|
||||
- https://www.googleapis.com/auth/cloud-platform
|
||||
register: results
|
||||
- name: verify that command succeeded
|
||||
assert:
|
||||
that:
|
||||
- results['resources'] | map(attribute='name') | select("match", ".*{{ resource_name }}.*") | list | length == 0
|
||||
# ----------------------------------------------------------------------------
|
||||
- name: delete a metric that does not exist
|
||||
google.cloud.gcp_logging_metric:
|
||||
name: "{{ resource_name }}"
|
||||
filter: resource.type=gae_app AND severity>=ERROR
|
||||
metric_descriptor:
|
||||
metric_kind: DELTA
|
||||
value_type: DISTRIBUTION
|
||||
unit: '1'
|
||||
labels:
|
||||
- key: mass
|
||||
value_type: STRING
|
||||
description: amount of matter
|
||||
value_extractor: EXTRACT(jsonPayload.request)
|
||||
label_extractors:
|
||||
mass: EXTRACT(jsonPayload.request)
|
||||
bucket_options:
|
||||
linear_buckets:
|
||||
num_finite_buckets: 3
|
||||
width: 1
|
||||
offset: 1
|
||||
project: "{{ gcp_project }}"
|
||||
auth_kind: "{{ gcp_cred_kind }}"
|
||||
service_account_file: "{{ gcp_cred_file }}"
|
||||
state: absent
|
||||
register: result
|
||||
- name: assert changed is false
|
||||
assert:
|
||||
that:
|
||||
- result.changed == false
|
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
- include_tasks: autogen.yml
|
Loading…
Add table
Add a link
Reference in a new issue