@elastic/synthetics
Version:
Elastic synthetic monitoring agent
99 lines • 3.91 kB
JavaScript
;
/**
* MIT License
*
* Copyright (c) 2020-present, Elastic NV
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.renderLocations = exports.groupLocations = exports.formatLocations = exports.getLocations = exports.PRIVATE_KEYWORD = void 0;
const request_1 = require("../push/request");
const helpers_1 = require("../helpers");
const utils_1 = require("../push/utils");
exports.PRIVATE_KEYWORD = '(private)';
async function getLocations(options) {
const resp = await (0, request_1.sendReqAndHandleError)({
url: (0, utils_1.generateURL)(options, 'location'),
method: 'GET',
auth: options.auth,
});
return resp.locations;
}
exports.getLocations = getLocations;
function formatLocations(locations) {
const publicLocations = [];
const privateLocations = [];
for (const location of locations) {
let name = location.label;
if (location.isServiceManaged) {
[, name] = name.includes('-') ? name.split('-') : [, name];
name = name.toLowerCase().trim().split(' ').join('_');
publicLocations.push(name);
}
else {
privateLocations.push(name);
}
}
return {
publicLocations,
privateLocations,
allLocations: publicLocations.concat(privateLocations.map(loc => `${loc} ${exports.PRIVATE_KEYWORD}`)),
};
}
exports.formatLocations = formatLocations;
function groupLocations(locations) {
const grouped = { locations: [], privateLocations: [] };
for (const loc of locations) {
if (loc.includes(exports.PRIVATE_KEYWORD)) {
grouped.privateLocations.push(loc.replace(exports.PRIVATE_KEYWORD, '').trim());
}
else {
grouped.locations.push(loc);
}
}
return grouped;
}
exports.groupLocations = groupLocations;
function renderLocations({ publicLocations, privateLocations = [], }) {
let outer = '';
if (publicLocations.length) {
outer = 'Public locations: \n';
let inner = '';
for (const location of publicLocations) {
inner += `* ${location}\n`;
}
outer += (0, helpers_1.indent)(inner);
}
if (privateLocations.length > 0) {
outer += '\nPrivate locations: \n';
let privateInner = '';
for (const location of privateLocations) {
privateInner += `* ${location}\n`;
}
outer += (0, helpers_1.indent)(privateInner);
}
outer += `\nSet default location for monitors via
- Synthetics config file 'monitors.locations' | 'monitors.privateLocations' field
- Monitor API 'monitor.use({ locations: ["japan"], privateLocations: ["custom-location"] }')`;
(0, helpers_1.write)(outer);
}
exports.renderLocations = renderLocations;
//# sourceMappingURL=index.js.map