diff --git a/profiles/aggregators/greatwall.go b/profiles/aggregators/greatwall.go new file mode 100644 index 0000000000..54b713b3a4 --- /dev/null +++ b/profiles/aggregators/greatwall.go @@ -0,0 +1,16 @@ +package aggregators + +import ( + "github.com/odigos-io/odigos/common" + "github.com/odigos-io/odigos/profiles/profile" +) + +var GreatwallProfile = profile.Profile{ + ProfileName: common.ProfileName("greatwall"), + MinimumTier: common.OnPremOdigosTier, + ShortDescription: "Bundle profile that includes " + + "java-ebpf-instrumentations", + Dependencies: []common.ProfileName{ + "java-ebpf-instrumentations", + }, +} diff --git a/profiles/allprofiles.go b/profiles/allprofiles.go index 721ef5a7d6..193615248d 100644 --- a/profiles/allprofiles.go +++ b/profiles/allprofiles.go @@ -13,6 +13,7 @@ import ( var AllProfiles = []profile.Profile{ aggregators.KratosProfile, + aggregators.GreatwallProfile, attributes.CategoryAttributesProfile, attributes.CodeAttributesProfile,