---
title: "Upcoming Change to uri Field in Client Log Exports"
description: "We're updating the uri and path fields in Client Log to include workspace and repository prefixes. If you parse this field in automated workflows, review your processes to ensure they continue to work correctly after the change."
canonical_url: "https://cloudsmith.com/changelog/change-to-uri-field-in-client-log-exports"
last_updated: "2025-08-15T15:36:27.226Z"
---
# Upcoming Change to uri Field in Client Log Exports

As part of upcoming improvements to our logging pipeline, we’ve made adjustments to our underlying data processing. These changes include the `path` and `uri` fields in the web application and the `uri` field in Client Logs exports.

These fields will now be prefixed with the name of the workspace and the repository.

For example:

```json
{
  "_key": "a6e2889185f4",
  "_type": "code",
  "code": "/format/package_name/filename",
  "filename": null,
  "language": null,
  "markDefs": null
}
```

Will change to:

```json
{
  "_key": "19ed050125be",
  "_type": "code",
  "code": "/workspace/repository/format/package_name/filename",
  "filename": null,
  "language": null,
  "markDefs": null
}
```

If you are using custom domains configured at the workspace level, only the repository name will be prefixed: 

```json
{
  "_key": "7764386ce422",
  "_type": "code",
  "code": "/repository/format/package_name/filename",
  "filename": null,
  "language": null,
  "markDefs": null
}
```

For repository custom domains, the path will remain unchanged:

```json
{
  "_key": "c56d454693cc",
  "_type": "code",
  "code": "/format/package_name/filename",
  "filename": null,
  "language": null,
  "markDefs": null
}
```

### Important information regarding these changes

If you currently parse the `uri` field in any automated process, please review your workflows to ensure they will continue working as expected. Note that the exact structure of the URI may change depending on the HTTP request type.

If you have any concerns or questions, [contact us](/company/contact-us) for help.
