Bug 1558764 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

This will require some changes in different places:
1. Raptor studio:

Update raptor studio record plugin to save the current date in the json file it creates at record time.
This is added in pull:
https://github.com/mozilla/raptor-studio/pull/16 
See:
https://github.com/mozilla/raptor-studio/pull/16/files#diff-61ec0cd7c664286456ae66ff26aa7e9b

the format of the json should be:
{
  "record_date": "",
  "protocol": {
    "detectportal.firefox.com": "HTTP/1.1"}
}

2. In Raptor before starting the proxy check if the Json file is available and output the date the recording was made in the logs.

This will pave the way for accessing other information about the recordings
This will require some changes in different places:
1. Raptor studio:

Update raptor studio record plugin to save the current date in the json file it creates at record time.
This is added in pull:
https://github.com/mozilla/raptor-studio/pull/16 
See:
https://github.com/mozilla/raptor-studio/pull/16/files#diff-61ec0cd7c664286456ae66ff26aa7e9b

the format of the json should be:
{
  "record_date": "",
  "protocol": {
    "detectportal.firefox.com": "HTTP/1.1"}
}

2. Update Alternate server replay to read the new json format
3. In Raptor before starting the proxy check if the Json file is available and output the date the recording was made in the logs.

This will pave the way for accessing other information about the recordings
This will require some changes in different places:
1. Raptor studio:

Update raptor studio record plugin to save the current date in the json file it creates at record time.
This is added in pull:
https://github.com/mozilla/raptor-studio/pull/16 
See:
https://github.com/mozilla/raptor-studio/pull/16/files#diff-61ec0cd7c664286456ae66ff26aa7e9b

the format of the json should be:
```
{
  "record_date": "",
  "protocol": {
    "detectportal.firefox.com": "HTTP/1.1"
    }
}
```
2. Update Alternate server replay to read the new json format
3. In Raptor before starting the proxy check if the Json file is available and output the date the recording was made in the logs.

This will pave the way for accessing other information about the recordings

Back to Bug 1558764 Comment 1