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
4 changes: 4 additions & 0 deletions cre/capabilities/blockchain/evm/v1alpha/client.proto
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,10 @@ service Client {
key: "gnosis_chain-mainnet"
value: 465200170687744372
},
{
key: "gnosis_chain-testnet-chiado"
value: 8871595565390010547
},
{
key: "hyperliquid-mainnet"
value: 2442541497099098535
Expand Down
4 changes: 4 additions & 0 deletions cre/go/installer/pkg/embedded_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions workflows/go/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ package workflows
//go:generate protoc --proto_path=../ --go_out=./ --go_opt=module=github.com/smartcontractkit/chainlink-protos/workflows/go ../workflows/v2/capability_execution_started.proto
//go:generate protoc --proto_path=../ --go_out=./ --go_opt=module=github.com/smartcontractkit/chainlink-protos/workflows/go ../workflows/v2/capability_execution_finished.proto
//go:generate protoc --proto_path=../ --go_out=./ --go_opt=module=github.com/smartcontractkit/chainlink-protos/workflows/go ../workflows/v2/workflow_user_log.proto
//go:generate protoc --proto_path=../ --go_out=./ --go_opt=module=github.com/smartcontractkit/chainlink-protos/workflows/go ../workflows/v2/workflow_user_metric.proto
//go:generate protoc --proto_path=../ --go_out=./ --go_opt=module=github.com/smartcontractkit/chainlink-protos/workflows/go ../workflows/v2/xxx_no_send.proto

// sources/v1 - workflow metadata source service
Expand Down
253 changes: 253 additions & 0 deletions workflows/go/v2/workflow_user_metric.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions workflows/workflows/v2/workflow_user_metric.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
syntax = "proto3";

package workflows.v2;

import "workflows/v2/cre_info.proto";
import "workflows/v2/workflow_key.proto";

option go_package = "github.com/smartcontractkit/chainlink-protos/workflows/go/v2";

enum UserMetricType {
USER_METRIC_TYPE_UNSPECIFIED = 0;
USER_METRIC_TYPE_COUNTER = 1;
USER_METRIC_TYPE_GAUGE = 2;
}

message WorkflowUserMetric {
CreInfo creInfo = 1;
WorkflowKey workflow = 2;
string workflowExecutionID = 3;
string timestamp = 4;

string name = 5;
double value = 6;
UserMetricType type = 7;
map<string, string> labels = 8;
}
Loading