Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion blueprint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ inputs:
description: Openstack image name or id to use for the new server
flavor:
description: Openstack flavor name or id to use for the new server
diamond_reporting_interval:
description: interval in seconds for reporting metrics by diamond agent
type: integer
default: 10

node_templates:
virtual_ip:
Expand Down Expand Up @@ -54,7 +58,7 @@ node_templates:
implementation: diamond.diamond_agent.tasks.install
inputs:
diamond_config:
interval: 1
interval: { get_input: diamond_reporting_interval }
start: diamond.diamond_agent.tasks.start
stop: diamond.diamond_agent.tasks.stop
uninstall: diamond.diamond_agent.tasks.uninstall
Expand Down
6 changes: 5 additions & 1 deletion ec2-blueprint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ inputs:
instance_type:
description: AWS EC2 instance type to use for the server
default: m3.medium
diamond_reporting_interval:
description: interval in seconds for reporting metrics by diamond agent
type: integer
default: 10

node_templates:
elastic_ip:
Expand Down Expand Up @@ -60,7 +64,7 @@ node_templates:
implementation: diamond.diamond_agent.tasks.install
inputs:
diamond_config:
interval: 1
interval: { get_input: diamond_reporting_interval }
start: diamond.diamond_agent.tasks.start
stop: diamond.diamond_agent.tasks.stop
uninstall: diamond.diamond_agent.tasks.uninstall
Expand Down
6 changes: 5 additions & 1 deletion singlehost-blueprint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ inputs:
description: >
The HTTP web server port.
default: 8080
diamond_reporting_interval:
description: interval in seconds for reporting metrics by diamond agent
type: integer
default: 10

node_templates:
vm:
Expand All @@ -43,7 +47,7 @@ node_templates:
implementation: diamond.diamond_agent.tasks.install
inputs:
diamond_config:
interval: 1
interval: { get_input: diamond_reporting_interval }
start: diamond.diamond_agent.tasks.start
stop: diamond.diamond_agent.tasks.stop
uninstall: diamond.diamond_agent.tasks.uninstall
Expand Down