Authorizations
API key authentication
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/extensions/v1/deployed';
let options = {method: 'GET', headers: {Authorization: 'Bearer <API_KEY>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
{
"deployedExtensions": [
{
"applications": [
"<string>"
],
"id": "<string>",
"itemIds": [
"<string>"
],
"subsystems": [
"<string>"
],
"summary": {
"deployedItemCounts": {
"actions": 123,
"alerts": 123,
"customDashboards": 123,
"enrichments": 123,
"eventsToMetrics": 123,
"grafanaDashboards": 123,
"kibanaDashboards": 123,
"metricsRuleGroup": 123,
"parsingRules": 123,
"savedViews": 123
}
},
"version": "<string>"
}
]
}
No description available
const fetch = require('node-fetch');
let url = 'https://api.coralogix.com/mgmt/openapi/integrations/extensions/v1/deployed';
let options = {method: 'GET', headers: {Authorization: 'Bearer <API_KEY>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
{
"deployedExtensions": [
{
"applications": [
"<string>"
],
"id": "<string>",
"itemIds": [
"<string>"
],
"subsystems": [
"<string>"
],
"summary": {
"deployedItemCounts": {
"actions": 123,
"alerts": 123,
"customDashboards": 123,
"enrichments": 123,
"eventsToMetrics": 123,
"grafanaDashboards": 123,
"kibanaDashboards": 123,
"metricsRuleGroup": 123,
"parsingRules": 123,
"savedViews": 123
}
},
"version": "<string>"
}
]
}
API key authentication
Show child attributes
Was this page helpful?