You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Adam B (JIRA)" <ji...@apache.org> on 2016/03/03 10:31:18 UTC

[jira] [Created] (MESOS-4850) Add authentication to agent http endpoints

Adam B created MESOS-4850:
-----------------------------

             Summary: Add authentication to agent http endpoints
                 Key: MESOS-4850
                 URL: https://issues.apache.org/jira/browse/MESOS-4850
             Project: Mesos
          Issue Type: Task
          Components: security, slave
            Reporter: Adam B


See http://mesos.apache.org/documentation/latest/endpoints/
Or search for `route(` in the source code:
{code}
$ grep -rn "route(" src/ |grep -v master |grep -v tests |grep -v json
src/version/version.cpp:75:  route("/", VERSION_HELP(), &VersionProcess::version);
src/files/files.cpp:150:  route("/browse",
src/files/files.cpp:153:  route("/read",
src/files/files.cpp:156:  route("/download",
src/files/files.cpp:159:  route("/debug",
src/slave/slave.cpp:580:  route("/api/v1/executor",
src/slave/slave.cpp:595:  route("/state",
src/slave/slave.cpp:601:  route("/flags",
src/slave/slave.cpp:607:  route("/health",
src/slave/monitor.cpp:100:    route("/statistics",
$ grep -rn "route(" 3rdparty/ |grep -v tests |grep -v README |grep -v examples |grep -v help |grep -v "process..pp"
3rdparty/libprocess/include/process/profiler.hpp:34:    route("/start", START_HELP(), &Profiler::start);
3rdparty/libprocess/include/process/profiler.hpp:35:    route("/stop", STOP_HELP(), &Profiler::stop);
3rdparty/libprocess/include/process/system.hpp:70:    route("/stats.json", statsHelp(), &System::stats);
3rdparty/libprocess/include/process/logging.hpp:44:    route("/toggle", TOGGLE_HELP(), &This::toggle);
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)