显示 Kibana 中所有可用的路线
Show all available routes in Kibana
我也是 Kibana 和 Elasticsearch 的新手,想使用一些 API 来研究它们之间的联系。但是在测试的时候出现了一些错误。
例如:当我 运行 /api/saved_objects/_find?type=index-pattern
它起作用时,
但有些 APIs 没有。它响应 "not found" 而不像文档,例如 GET api/saved_objects/index-pattern/my-pattern
。 return
{
"statusCode": 404,
"error": "Not Found",
"message": "Not Found"
}
所以我的问题是如何显示 Kiabana 应用程序的所有可用路线,例如 Rails 和 rake routes
P/s: 目前想自定义Kibana应用的core-plugin,但是很难找到相关的文档或文章。官方文档中的信息对我来说还不够。如果您知道任何资源,请与我分享。谢谢。
您可能遗漏了 URL 中的某些内容。如果你的索引模式在 Kibana 索引中的 ID 是 index-pattern:my-pattern
那么你可以这样获取它:
api/saved_objects/index-pattern/my-pattern
^
|
you need to remove the prefix here
我也是 Kibana 和 Elasticsearch 的新手,想使用一些 API 来研究它们之间的联系。但是在测试的时候出现了一些错误。
例如:当我 运行 /api/saved_objects/_find?type=index-pattern
它起作用时,
但有些 APIs 没有。它响应 "not found" 而不像文档,例如 GET api/saved_objects/index-pattern/my-pattern
。 return
{
"statusCode": 404,
"error": "Not Found",
"message": "Not Found"
}
所以我的问题是如何显示 Kiabana 应用程序的所有可用路线,例如 Rails 和 rake routes
P/s: 目前想自定义Kibana应用的core-plugin,但是很难找到相关的文档或文章。官方文档中的信息对我来说还不够。如果您知道任何资源,请与我分享。谢谢。
您可能遗漏了 URL 中的某些内容。如果你的索引模式在 Kibana 索引中的 ID 是 index-pattern:my-pattern
那么你可以这样获取它:
api/saved_objects/index-pattern/my-pattern
^
|
you need to remove the prefix here