Skip to content

Commit

Permalink
[Model Monitoring] Fix application metric KV saving with orjson
Browse files Browse the repository at this point in the history
  • Loading branch information
jond01 committed Aug 26, 2024
1 parent 5cd5f9b commit f6009eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
]

_METRIC_FIELDS: list[str] = [
mm_schemas.WriterEvent.APPLICATION_NAME,
mm_schemas.MetricData.METRIC_NAME,
mm_schemas.MetricData.METRIC_VALUE,
mm_schemas.WriterEvent.START_INFER_TIME,
mm_schemas.WriterEvent.END_INFER_TIME,
mm_schemas.WriterEvent.APPLICATION_NAME.value,
mm_schemas.MetricData.METRIC_NAME.value,
mm_schemas.MetricData.METRIC_VALUE.value,
mm_schemas.WriterEvent.START_INFER_TIME.value,
mm_schemas.WriterEvent.END_INFER_TIME.value,
]


Expand Down

0 comments on commit f6009eb

Please sign in to comment.