Skip to content
Merged
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
2 changes: 1 addition & 1 deletion e
Submodule e updated from b26748 to 2bbd22
2 changes: 1 addition & 1 deletion integrations/event-handler/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ func (c *StartCmdConfig) Validate() error {
func (c *StartCmdConfig) Dump(ctx context.Context, log *slog.Logger) {
// Log configuration variables
log.DebugContext(ctx, "Initializing plugin",
"name", "teleport-event-handler",
"name", pluginName,
"version", slog.GroupValue(
slog.String("teleport", Version),
slog.String("teleport_git", Gitref),
Expand Down
2 changes: 1 addition & 1 deletion integrations/event-handler/configure_cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func RunConfigureCmd(cfg *ConfigureCmdConfig) error {

// Run runs the generator
func (c *ConfigureCmd) Run() error {
fmt.Printf("Teleport event handler %v %v\n\n", Version, Gitref)
fmt.Printf("%v %v %v\n\n", pluginName, Version, Gitref)

c.step = 1

Expand Down
2 changes: 1 addition & 1 deletion integrations/event-handler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var cli CLI

const (
// pluginName is the plugin name
pluginName = "Teleport event handler"
pluginName = "teleport-event-handler"

// pluginDescription is the plugin description
pluginDescription = "Forwards Teleport AuditLog to external sources"
Expand Down
Loading