Add docs
This commit is contained in:
parent
ed27d56912
commit
788b882c8d
0
docs/alert_contact_point_module.rst
Normal file
0
docs/alert_contact_point_module.rst
Normal file
0
docs/alert_notification_policy_module.rst
Normal file
0
docs/alert_notification_policy_module.rst
Normal file
0
docs/cloud_api_key_module.rst
Normal file
0
docs/cloud_api_key_module.rst
Normal file
0
docs/cloud_plugin_module.rst
Normal file
0
docs/cloud_plugin_module.rst
Normal file
0
docs/cloud_stack_module.rst
Normal file
0
docs/cloud_stack_module.rst
Normal file
0
docs/dashboard_module.rst
Normal file
0
docs/dashboard_module.rst
Normal file
0
docs/datasource_module.rst
Normal file
0
docs/datasource_module.rst
Normal file
1003
docs/folder_module.rst
Normal file
1003
docs/folder_module.rst
Normal file
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@ namespace: grafana
|
|||||||
|
|
||||||
name: grafana
|
name: grafana
|
||||||
|
|
||||||
version: 0.0.2
|
version: 0.0.5
|
||||||
|
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
|
||||||
|
@ -40,12 +40,12 @@ options:
|
|||||||
required: true
|
required: true
|
||||||
groupInterval:
|
groupInterval:
|
||||||
description:
|
description:
|
||||||
- The waiting time to send a batch of new alerts for that group after the first notification was sent. If empty it will be inherited from the parent policy.
|
- The wait time to send a batch of new alerts for that group after the first notification was sent. Inherited from the parent policy if empty.
|
||||||
type: str
|
type: str
|
||||||
default: 5m
|
default: 5m
|
||||||
groupWait:
|
groupWait:
|
||||||
description:
|
description:
|
||||||
- The waiting time until the initial notification is sent for a new group created by an incoming alert. If empty it will be inherited from the parent policy.
|
- The wait time until the initial notification is sent for a new group created by an incoming alert. Inherited from the parent policy if empty.
|
||||||
type: str
|
type: str
|
||||||
default: 30s
|
default: 30s
|
||||||
objectMatchers:
|
objectMatchers:
|
||||||
|
@ -139,7 +139,12 @@ def main():
|
|||||||
module.params['state'])(module)
|
module.params['state'])(module)
|
||||||
|
|
||||||
if not is_error:
|
if not is_error:
|
||||||
module.exit_json(changed=has_changed, pluginId=result['pluginId'], pluginName=result['pluginName'], pluginSlug=result['pluginSlug'], current_version=result['version'], latest_version=result['latestVersion'])
|
module.exit_json(changed=has_changed,
|
||||||
|
pluginId=result['pluginId'],
|
||||||
|
pluginName=result['pluginName'],
|
||||||
|
pluginSlug=result['pluginSlug'],
|
||||||
|
current_version=result['version'],
|
||||||
|
latest_version=result['latestVersion'])
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg=result)
|
module.fail_json(msg=result)
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ options:
|
|||||||
required: true
|
required: true
|
||||||
stack_slug:
|
stack_slug:
|
||||||
description:
|
description:
|
||||||
- Subdomain that the Grafana instance will be available at. For example, if you set the slug to <stack_slug>, the instance will be available at https://<stack_slug>.grafana.net
|
- Subdomain of the Grafana instance. For example, if slug is <stack_slug>, the instance URL will be https://<stack_slug>.grafana.net
|
||||||
type: str
|
type: str
|
||||||
required: true
|
required: true
|
||||||
cloud_api_key:
|
cloud_api_key:
|
||||||
@ -177,7 +177,15 @@ def main():
|
|||||||
module.params['state'])(module)
|
module.params['state'])(module)
|
||||||
|
|
||||||
if not is_error:
|
if not is_error:
|
||||||
module.exit_json(changed=has_changed, alertmanager_name=result['amInstanceName'], url=result['url'], id=result['id'], cluster_slug=result['clusterName'], orgID=result['orgId'], loki_url=result['hlInstanceUrl'], prometheus_url=result['hmInstancePromUrl'], tempo_url=result['htInstanceUrl'], alertmanager_url=result['amInstanceUrl'])
|
module.exit_json(changed=has_changed,
|
||||||
|
alertmanager_name=result['amInstanceName'],
|
||||||
|
url=result['url'], id=result['id'],
|
||||||
|
cluster_slug=result['clusterName'],
|
||||||
|
orgID=result['orgId'],
|
||||||
|
loki_url=result['hlInstanceUrl'],
|
||||||
|
prometheus_url=result['hmInstancePromUrl'],
|
||||||
|
tempo_url=result['htInstanceUrl'],
|
||||||
|
alertmanager_url=result['amInstanceUrl'])
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg=result)
|
module.fail_json(msg=result)
|
||||||
|
|
||||||
|
@ -85,7 +85,8 @@ def present_datasource(module):
|
|||||||
if result.status_code == 200:
|
if result.status_code == 200:
|
||||||
return False, True, result.json()
|
return False, True, result.json()
|
||||||
elif result.status_code == 409:
|
elif result.status_code == 409:
|
||||||
get_id_url = requests.get('https://' + module.params['stack_slug'] + '.grafana.net/api/datasources/id/' + module.params['datasource']['name'], headers={"Authorization": 'Bearer ' + module.params['cloud_api_key']})
|
get_id_url = requests.get('https://' + module.params['stack_slug'] + '.grafana.net/api/datasources/id/' + module.params['datasource']['name'],
|
||||||
|
headers={"Authorization": 'Bearer ' + module.params['cloud_api_key']})
|
||||||
|
|
||||||
api_url = 'https://' + module.params['stack_slug'] + '.grafana.net/api/datasources/' + str(get_id_url.json()['id'])
|
api_url = 'https://' + module.params['stack_slug'] + '.grafana.net/api/datasources/' + str(get_id_url.json()['id'])
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user