首页 > 解决方案 > 将日志从 Javascript 发送到 ElasticSearch

问题描述

是否有任何 Javascript api 允许我直接通过 axios post 或通过 Node JS 向 Elastic Search 发送帖子请求?这是将日志发送到 Elastic Search。

标签: javascriptelasticsearch

解决方案


您可以使用发送 POST 请求fetch

  const response = await fetch(url, {
    method: 'POST', // *GET, POST, PUT, DELETE, etc.
    headers: {
      'Content-Type': 'application/json'
    },
    body: JSON.stringify(data) // body data type must match "Content-Type" header
  });

推荐阅读