Skip to content
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

Generic telemetry #1321

Merged
merged 20 commits into from
Sep 20, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update src/Runner.Worker/ActionCommandManager.cs
Co-authored-by: Thomas Boop <52323235+thboop@users.noreply.github.com>
  • Loading branch information
fhammerl and thboop authored Sep 16, 2021
commit 77bcf564002e4285642ecb129f749a4bc9c629c5
2 changes: 1 addition & 1 deletion src/Runner.Worker/ActionCommandManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public bool TryProcessCommand(IExecutionContext context, string input, Container
{
var telemetry = new JobTelemetry
{
Message = $"Invoked ::stopCommand:: with the token between the brackets: [{actionCommand.Data}]",
Message = $"Invoked ::stopCommand:: with token: [{actionCommand.Data}]",
Type = JobTelemetryType.ActionCommand
};
context.Root.JobTelemetry.Add(telemetry);
Expand Down