const response = await fetch('https://cloud-api.calyptia.com/v2/validate_fluentbit_config', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"rawConfig": "pipeline:\n inputs:\n - name: dummy\n outputs:\n - name: stdout\n match: \"*\""
}),
});
const data = await response.json();