jagan-parthiban opened a new issue, #7544: URL: https://github.com/apache/trafficcontrol/issues/7544
## Parent Issue: https://github.com/apache/trafficcontrol/issues/5911 Breaking down the parent issue https://github.com/apache/trafficcontrol/issues/5911 in smaller issues to raise separate, reviewable PRs for each of the services. ## Traffic Control components affected: - Traffic Ops - Documentation ## Current behavior: Stats_Summary Using Deprecated TimeNoMod & TimeLayout ``` curl --request GET \ --url https://localhost:8443/api/4.1/stats_summary { "response": [ { "statDate": "2023-03-09", "summaryTime": "2023-03-09 00:59:12+05", "cdnName": "cdn101", "deliveryServiceName": "all", "statName": "daily_maxgbps", "statValue": 101 } ] } ``` ## Expected behavior: Stats_Summary to Use RFC3339 Format ``` curl --request GET \ --url https://localhost:8443/api/5.0/stats_summary { "response": [ { "statDate": "2023-03-09", "summaryTime": "2023-03-09T00:59:12+05:30", "cdnName": "cdn101", "deliveryServiceName": "all", "statName": "daily_maxgbps", "statValue": 101 } ] } ``` ## Steps to reproduce: Make the above api call to 4.1 version -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
