blob: 8a0a340b4a0ba618b0e438ca828679bcb3ecb65b [file] [log] [blame]
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to You under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
local core = require("apisix.core")
local exporter = require("apisix.plugins.prometheus.exporter")
local plugin_name = "prometheus"
local schema = {
type = "object",
additionalProperties = false,
}
local _M = {
version = 0.2,
priority = 500,
name = plugin_name,
log = exporter.log,
schema = schema,
}
function _M.check_schema(conf)
local ok, err = core.schema.check(schema, conf)
if not ok then
return false, err
end
return true
end
function _M.api()
return {
{
methods = {"GET"},
uri = "/apisix/prometheus/metrics",
handler = exporter.collect
}
}
end
-- only for test
-- function _M.access()
-- ngx.say(exporter.metric_data())
-- end
return _M