-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add beholder logging for custom compute (#15122)
* Adds beholder logging * Bumps `common` * Bumps `common` * Bumps `common` * Improves var naming * make `gomodtidy` * Repurposes monitoring keys * Fixes CI * Bumps CCIP * Bumps common * Address review comments * Reverts unsupported approach
- Loading branch information
1 parent
00d9661
commit a455950
Showing
7 changed files
with
99 additions
and
70 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,3 @@ | ||
package compute | ||
|
||
const timestampKey = "computeTimestamp" |
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,15 @@ | ||
package platform | ||
|
||
// Observability keys | ||
const ( | ||
KeyCapabilityID = "capabilityID" | ||
KeyTriggerID = "triggerID" | ||
KeyWorkflowID = "workflowID" | ||
KeyWorkflowExecutionID = "workflowExecutionID" | ||
KeyWorkflowName = "workflowName" | ||
KeyWorkflowOwner = "workflowOwner" | ||
KeyStepID = "stepID" | ||
KeyStepRef = "stepRef" | ||
) | ||
|
||
var OrderedLabelKeys = []string{KeyStepRef, KeyStepID, KeyTriggerID, KeyCapabilityID, KeyWorkflowExecutionID, KeyWorkflowID} |
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
Oops, something went wrong.