All Systems Operational
Support (help.livestream.com)
?
Operational
Store (store.livestream.com)
?
Operational
Livestream Hardware Encoders
Operational
Livestream Producer
Operational
Livestream Studio Software
Operational
Livestream Mobile App
Operational
Livestream Broadcaster
Operational
Platform Simulcast Feature
Operational
Facebook Live
Operational
YouTube Live
Operational
RTMP
Operational
Livestream for News
Operational
Support Systems
?
Operational
90 days ago
100.0
% uptime
Today
Operational
Degraded Performance
Partial Outage
Major Outage
Maintenance
' +
'
OK' +
'';
var dummy = document.createElement('div');
dummy.innerHTML = headerHTML;
return dummy.children[0];
};
var addGDPRHeader = function () {
var parent = document.body;
var header = createHeaderElement();
if (!parent.hasChildNodes) {
parent.appendChild(header);
} else {
var srcElement = parent.children[0];
srcElement.parentNode.insertBefore(header, srcElement);
}
document.body.classList.add('gdpr');
handleUserAccept();
};
var checkAndShowCookiePolicyHeader = function () {
if (__cookieConsent === null && isEU(countryCode) && !getCookie('__cu_id')) {
addGDPRHeader();
}
};
function triggerEvent (eventName) {
var event = window.document.createEvent('Event');
event.initEvent(eventName, true, true);
window.dispatchEvent(event);
}
var onGDPRInitialized = function (consent) {
__cookieConsent = consent;
if (consent === false) {
return;
}
triggerEvent('loadTracking');
if (window._waitingForCountry) {
checkAndShowCookiePolicyHeader();
}
};
var init = function () {
if (getCookie('cookie_consent') === 'true') {
return onGDPRInitialized(true);
}
getCountryCode();
};
var checkHeader = function () {
if (countryCode !== undefined) {
return checkAndShowCookiePolicyHeader();
}
// Wait for the country to be initialized.
window._waitingForCountry = true;
};
init();
return {
checkHeader: checkHeader
};
})();