-
Notifications
You must be signed in to change notification settings - Fork 158
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
Tanzu Tile implementation and documentation #2726
Conversation
|
72cb883
to
dfbc5e2
Compare
This change implements the required code for creating the Tanzu Tile. The Tanzu Tile is a way to deploy the collector to get metrics from the Tanzu environment. In the tile directory, run the command ./make-latest-tile to generate the Tanzu tile. Refer to DEVELOPMENT.md to know how to properly use the created tile.
New action tests tile creation to make sure changes to the BOSH releaes and Tanzu tile don't break making the tile. Also, fix BOSH release test link to homebrew.
There is no need to download and have the Smart Agent as a dependency for the bosh release and tanzu tile, so this removes it.
- Add makefile for BOSH deployment effort - Add more links for BOSH development info - Clear up confusion with READMEs
I got in contact with Josh Johnson, a product designer for Splunk o11y, and he provided the Splunk logo that is broadly used in o11y.
- Should be splunk-otel-collector rather than splunk-opentelemetry-collector
c5a86e4
to
1150615
Compare
- Add OpenTelemetry to Splunk Collector references - Make shallow clone in setup script - Set homebrew action to specific commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should add our license where applicable (scripts, Makefile, etc):
# Copyright Splunk Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
I've added the license header to a the scripts and makefiles that I thought were relevant, but please let me know if I missed any. I'm not sure exactly which files require the header. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with the suggested changes.
When the variable name is alone it's interpreted as a command, rather than setting the variable.
This change implements the required code for creating the Tanzu Tile. The Tanzu Tile is a way to deploy the collector to get metrics from the Tanzu environment. In the tile directory, run the command
deployments/cloudfoundry/tile/make-latest-tile
to generate the Tanzu tile. Refer todeployments/cloudfoundry/tile/DEVELOPMENT.md
to know how to properly use the created tile.