Skip to content

Commit

Permalink
Merge pull request #36 from vyzigold/add_telemetry_services
Browse files Browse the repository at this point in the history
Add aodh, logging and metric-storage services
  • Loading branch information
openshift-merge-bot[bot] authored Jan 10, 2024
2 parents cd0a486 + 35c9f2a commit c882a2f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions collection-scripts/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ declare -a OSP_SERVICES=(
"barbican"
"dataplane"
"ceilometer"
"metric-storage"
"aodh"
"logging"
)
export OSP_SERVICES

Expand Down
7 changes: 4 additions & 3 deletions collection-scripts/gather_crs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ fi
# Resource list
crs=()

# explictly adding rabbit in the grep because it's not part of the openstack
# umbrella and we rely on the upstream rabbitmq-cluster-operator
for i in $(/usr/bin/oc get crd | grep -E "(openstack|rabbitmq)\.(org|com)" | awk '{print $1}')
# Explictly adding rabbit in the grep because its CRD is named with a different domain.
# Also adding monitoring.rhobs, because telemetry uses observability-operator
# to deploy a `MonitoringStack` for storing and scraping metrics.
for i in $(/usr/bin/oc get crd | grep -E "(openstack|rabbitmq|monitoring)\.(org|com|rhobs)" | awk '{print $1}')
do
crs+=("$i")
done
Expand Down

0 comments on commit c882a2f

Please sign in to comment.