-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial support for auto-instrumentation (#464)
* Initial support for auto-instrumentation Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * fix Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Fix bundle Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Add docs Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * make a nonsense change Signed-off-by: Pavol Loffay <p.loffay@gmail.com> * Add link Signed-off-by: Pavol Loffay <p.loffay@gmail.com>
- Loading branch information
1 parent
c3f411c
commit dd248a3
Showing
27 changed files
with
1,812 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// 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. | ||
|
||
// Package v1alpha1 contains API Schema definitions for the core v1alpha1 API group. | ||
// +kubebuilder:object:generate=true | ||
// +groupName=opentelemetry.io | ||
package v1alpha1 | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"sigs.k8s.io/controller-runtime/pkg/scheme" | ||
) | ||
|
||
var ( | ||
// GroupVersion is group version used to register these objects. | ||
GroupVersion = schema.GroupVersion{Group: "opentelemetry.io", Version: "v1alpha1"} | ||
|
||
// SchemeBuilder is used to add go types to the GroupVersionKind scheme. | ||
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} | ||
|
||
// AddToScheme adds the types in this group-version to the given scheme. | ||
AddToScheme = SchemeBuilder.AddToScheme | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// 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. | ||
|
||
package v1alpha1 | ||
|
||
import metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
|
||
// InstrumentationSpec defines the desired state of OpenTelemetry SDK and instrumentation. | ||
type InstrumentationSpec struct { | ||
// Exporter defines exporter configuration. | ||
// +optional | ||
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true | ||
Exporter `json:"exporter,omitempty"` | ||
|
||
// Java defines configuration for java auto-instrumentation. | ||
// +optional | ||
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true | ||
Java JavaSpec `json:"java,omitempty"` | ||
} | ||
|
||
// JavaSpec defines Java SDK and instrumentation configuration. | ||
type JavaSpec struct { | ||
// Image is a container image with javaagent JAR. | ||
// +optional | ||
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true | ||
Image string `json:"image,omitempty"` | ||
} | ||
|
||
// Exporter defines OTLP exporter configuration. | ||
type Exporter struct { | ||
// Endpoint is address of the collector with OTLP endpoint. | ||
// +optional | ||
// +operator-sdk:gen-csv:customresourcedefinitions.specDescriptors=true | ||
Endpoint string `json:"endpoint,omitempty"` | ||
} | ||
|
||
// InstrumentationStatus defines status of the instrumentation. | ||
type InstrumentationStatus struct { | ||
} | ||
|
||
// +kubebuilder:object:root=true | ||
// +kubebuilder:resource:shortName=otelinst;otelinsts | ||
// +kubebuilder:subresource:status | ||
// +kubebuilder:printcolumn:name="Age",type="date",JSONPath=".metadata.creationTimestamp" | ||
// +operator-sdk:csv:customresourcedefinitions:displayName="OpenTelemetry Instrumentation" | ||
|
||
// Instrumentation is the spec for OpenTelemetry instrumentation. | ||
// nolint: maligned | ||
type Instrumentation struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ObjectMeta `json:"metadata,omitempty"` | ||
|
||
Spec InstrumentationSpec `json:"spec,omitempty"` | ||
Status InstrumentationStatus `json:"status,omitempty"` | ||
} | ||
|
||
// +kubebuilder:object:root=true | ||
|
||
// InstrumentationList contains a list of Instrumentation. | ||
type InstrumentationList struct { | ||
metav1.TypeMeta `json:",inline"` | ||
metav1.ListMeta `json:"metadata,omitempty"` | ||
Items []Instrumentation `json:"items"` | ||
} | ||
|
||
func init() { | ||
SchemeBuilder.Register(&Instrumentation{}, &InstrumentationList{}) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.