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
6 changes: 3 additions & 3 deletions app/03app_node/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@

typedef enum {
PAYLOAD_TYPE_APPLICATION = 1,
PAYLOAD_TYPE_METRICS_REQUEST = 128,
PAYLOAD_TYPE_METRICS_RESPONSE = 129,
PAYLOAD_TYPE_METRICS_LOAD = 130,
PAYLOAD_TYPE_METRICS_REQUEST = 0x90,
PAYLOAD_TYPE_METRICS_RESPONSE = 0x91,
PAYLOAD_TYPE_METRICS_LOAD = 0x92,
} default_payload_type_t;

typedef struct __attribute__((packed)) {
Expand Down
2 changes: 1 addition & 1 deletion mari/models.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ typedef struct __attribute__((packed)) {
// -------- types used for metrics collection --------

typedef enum {
MARI_PAYLOAD_TYPE_METRICS_PROBE = 140,
MARI_PAYLOAD_TYPE_METRICS_PROBE = 0x9C,
} mr_metrics_payload_type_t;

typedef struct __attribute__((packed)) {
Expand Down