Skip to content

Commit

Permalink
style(MLOps): Use proper code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
austin-schaefer committed Feb 4, 2022
1 parent 34b5d23 commit 2622dde
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/content/docs/mlops/bring-your-own/mlops-byo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@ Follow these steps to stream your data and view it on the New Relic platform:

* **Query your data:** Use the [data explorer](/docs/query-your-data/explore-query-data/browse-data/introduction-data-explorer/) to view the metrics and events data you sent, or use the following queries on the [query builder](/docs/query-your-data/explore-query-data/query-builder/introduction-query-builder/):

`SELECT * FROM InferenceData WHERE model_name=[model_name] SINCE 1 day ago`
`SELECT * FROM Metric WHERE model_name=[model_name] SINCE 1 day ago`
```
SELECT * FROM InferenceData WHERE model_name=[model_name] SINCE 1 day ago
```

```
SELECT * FROM Metric WHERE model_name=[model_name] SINCE 1 day ago
```

* **Create your own dashboard:** Build your own [dashboard](/docs/query-your-data/explore-query-data/dashboards/introduction-dashboards/) to visualize the metrics you sent, or view the distributions of your features and predictions. See an example dashboard below.

Expand Down

0 comments on commit 2622dde

Please sign in to comment.