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

minor doc updates from OSPRH-7722, OSP-32244, OSP-32175 #541

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ data:
verifyHostname: false
sslProfile: sslProfile
saslUsername: guest@default-interconnect
saslPassword: pass:<password_from_stf>
saslPassword: <password_from_stf>

MetricsQdrSSLProfiles:
- name: sslProfile
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ parameter_defaults:
verifyHostname: false
sslProfile: sslProfile
saslUsername: guest@default-interconnect
saslPassword: pass:<password_from_stf>
saslPassword: <password_from_stf>

MetricsQdrSSLProfiles:
- name: sslProfile
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ data:
CollectdConnectionType: amqp1
CollectdAmqpInterval: 30
CollectdDefaultPollingInterval: 30
CollectdExtraPlugins:
- vmem
# to collect information about the virtual memory subsystem of the kernel
# CollectdExtraPlugins:
# - vmem

# set standard prefixes for where metrics are published to QDR
MetricsQdrAddresses:
Expand All @@ -74,13 +75,16 @@ data:
# note: this may need an adjustment if there are many metrics to be sent.
collectd::plugin::amqp1::send_queue_limit: 5000

# receive extra information about virtual memory
collectd::plugin::vmem::verbose: true
# receive extra information about virtual memory, can enable vmem plugin

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vmem plugin must be enabled instead of can enable vmem plugin

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated to: "to receive extra information about virtual memory, you must enable vmem plugin in CollectdExtraPlugins"

# collectd::plugin::vmem::verbose: true

# provide name and uuid in addition to hostname for better correlation
# to ceilometer data
collectd::plugin::virt::hostname_format: "name uuid hostname"

# to capture all extra_stats metrics, comment out below config
collectd::plugin::virt::extra_stats: cpu_util vcpu disk

# provide the human-friendly name of the virtual instance
collectd::plugin:ConfigMap :virt::plugin_instance_format: metadata

Expand All @@ -90,6 +94,9 @@ data:
local:
host: "%{hiera('fqdn_canonical')}"
port: 11211

# report root filesystem storage metrics
collectd::plugin::df::ignoreselected: false
----

[role="_additional-resources"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ parameter_defaults:
CollectdConnectionType: amqp1
CollectdAmqpInterval: 30
CollectdDefaultPollingInterval: 30
CollectdExtraPlugins:
- vmem

# to collect information about the virtual memory subsystem of the kernel
# CollectdExtraPlugins:
# - vmem

# set standard prefixes for where metrics are published to QDR
MetricsQdrAddresses:
- prefix: 'collectd'
Expand All @@ -55,8 +56,8 @@ parameter_defaults:
# note: Adjust the value of the `send_queue_limit` to handle your required volume of metrics.
collectd::plugin::amqp1::send_queue_limit: 5000

# receive extra information about virtual memory
collectd::plugin::vmem::verbose: true
# receive extra information about virtual memory, can enable vmem plugin
# collectd::plugin::vmem::verbose: true

# set memcached collectd plugin to report its metrics by hostname
# rather than host IP, ensuring metrics in the dashboard remain uniform
Expand All @@ -65,6 +66,9 @@ parameter_defaults:
host: "%{hiera('fqdn_canonical')}"
port: 11211

# report root filesystem storage metrics
collectd::plugin::df::ignoreselected: false

# align defaults across OSP versions
collectd::plugin::cpu::reportbycpu: true
collectd::plugin::cpu::reportbystate: true
Expand Down Expand Up @@ -105,8 +109,9 @@ parameter_defaults:
CollectdConnectionType: amqp1
CollectdAmqpInterval: 30
CollectdDefaultPollingInterval: 30
CollectdExtraPlugins:
- vmem
# to collect information about the virtual memory subsystem of the kernel
# CollectdExtraPlugins:
# - vmem

# set standard prefixes for where metrics are published to QDR
MetricsQdrAddresses:
Expand All @@ -125,13 +130,16 @@ parameter_defaults:
# note: this may need an adjustment if there are many metrics to be sent.
collectd::plugin::amqp1::send_queue_limit: 5000

# receive extra information about virtual memory
collectd::plugin::vmem::verbose: true
# receive extra information about virtual memory, can enable vmem plugin
# collectd::plugin::vmem::verbose: true

# provide name and uuid in addition to hostname for better correlation
# to ceilometer data
collectd::plugin::virt::hostname_format: "name uuid hostname"

# to capture all extra_stats metrics, comment out below config
collectd::plugin::virt::extra_stats: cpu_util vcpu disk

# provide the human-friendly name of the virtual instance
collectd::plugin::virt::plugin_instance_format: metadata

Expand All @@ -141,5 +149,9 @@ parameter_defaults:
local:
host: "%{hiera('fqdn_canonical')}"
port: 11211

# report root filesystem storage metrics
collectd::plugin::df::ignoreselected: false

----
endif::include_when_16[]
Loading