POST api/Logging/LogUIAssetLoadDuration

Logs the duration of asset loading in the user interface.

Request Information

URI Parameters

None.

Body Parameters

An AssetLoadTimeLogEntry containing information about the asset loading duration.

AssetLoadTimeLogEntry
NameDescriptionTypeAdditional information
EntryDt

date

None.

UserId

string

None.

AssetId

globally unique identifier

None.

PageDisplayName

string

None.

Duration

integer

None.

DashboardLoadDuration

integer

None.

AssetPageCount

integer

None.

Origin

string

None.

Location

string

None.

BrowserType

string

None.

PageLoadDuration

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "EntryDt": "2024-11-21T06:28:58.8897823+00:00",
  "UserId": "sample string 2",
  "AssetId": "5d0d1373-eef8-4afc-b686-9237054aef6c",
  "PageDisplayName": "sample string 4",
  "Duration": 5,
  "DashboardLoadDuration": 6,
  "AssetPageCount": 7,
  "Origin": "sample string 8",
  "Location": "sample string 9",
  "BrowserType": "sample string 10",
  "PageLoadDuration": 11
}

application/xml, text/xml

Sample:
<AssetLoadTimeLogEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KT.BGip.Visualisation.RPMI.Data.Log">
  <AssetId>5d0d1373-eef8-4afc-b686-9237054aef6c</AssetId>
  <AssetPageCount>7</AssetPageCount>
  <BrowserType>sample string 10</BrowserType>
  <DashboardLoadDuration>6</DashboardLoadDuration>
  <Duration>5</Duration>
  <EntryDt>2024-11-21T06:28:58.8897823+00:00</EntryDt>
  <Location>sample string 9</Location>
  <Origin>sample string 8</Origin>
  <PageDisplayName>sample string 4</PageDisplayName>
  <PageLoadDuration>11</PageLoadDuration>
  <UserId>sample string 2</UserId>
</AssetLoadTimeLogEntry>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Returns an IHttpActionResult representing the result of the log operation.

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.