IBM Cloud Platform中监视和记录Watson服务的最佳方法或服务是什么?
我希望提取诸如每个请求的响应时间之类的信息。
预先感谢
答案 0 :(得分:1)
您可以通过调用REST API来检索Watson Assistant聊天记录。它包含每个输入的请求和响应时间戳。您可能必须在应用程序中记录Watson API调用,以考虑网络延迟时间来衡量整体应用程序响应时间。
curl -u "apikey:{apikey}" "https://gateway.watsonplatform.net/assistant/api/v1/workspaces/{workspace_id}/logs?version=2017-09-13"
{
"logs": [
{
"request": {
"input": {
"text": "Good morning"
}
},
"response": {
"intents": [
{
"intent": "hello",
"confidence": 1
}
],
.
.
.
"workspace_id": "{workspace_id}",
"request_timestamp": "2017-09-13T16:39:56.284Z",
"response_timestamp": "2017-09-13T16:39:58.828Z",
.
.
}