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

chore(experiment): Proposal to change/standardize monitoring data model #147

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
516 changes: 516 additions & 0 deletions spinnaker-monitoring-daemon/experimental/README.md

Large diffs are not rendered by default.

1,727 changes: 1,727 additions & 0 deletions spinnaker-monitoring-daemon/experimental/metric_filters/default.yml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
prometheus:
# By default, for historical reasons, spinnaker uses ':' as a hierarchical
# separator in prometheus metric names. This is non-0standard for prometheus
# and, in fact, unadvised.
#
# Setting this option to True will use standard notation ('_') instead of ':'.
# Note that this is incompmatible with the published dashboards however is
# required for the experimental dashboards.
use_standard_notation: True

datadog:
# This is false by default for historical compatability.
# If/when new dashboards are written for datadog, have them based on this
# being true.
# Historically datadog metrics were written without types, meaning they were
# gauges. By setting this to true, meter type information will be reported so
# spectator counters will become datadog counters.
# use_types: true

spectator:
# Do not decorate metric names with a service prefix.
# This is true by default for historic compatability, however
# is no longer needed/desired given the spin_* tags.
decorate_metric_name: false

# Do not alias service names to their base service names.
# When true this would turn "clouddriver-readonly" to "clouddriver"
# When false this leaves "clouddriver-readonly" as is.
# This is true by default for historic compatability, however
# is no longer needed/desired given the spin_* tags.
use_base_service_name_only: false

# Adds spin_service and spin_variant tags for each metric
# This also changes the defaults of
# decorate_metric_name and use_base_service_name_only to "false"
inject_service_tag: true
Loading