| 741 | } |
| 742 | |
| 743 | static PyObject* get_perf_schema(BaseMgrModule *self, PyObject *args) |
| 744 | { |
| 745 | char *type_str = nullptr; |
| 746 | char *svc_id = nullptr; |
| 747 | if (!PyArg_ParseTuple(args, "ss:get_perf_schema", &type_str, &svc_id)) { |
| 748 | return nullptr; |
| 749 | } |
| 750 | |
| 751 | return self->py_modules->get_perf_schema_python(type_str, svc_id); |
| 752 | } |
| 753 | |
| 754 | static PyObject* |
| 755 | ceph_get_rocksdb_version(BaseMgrModule *self) |
nothing calls this directly
no test coverage detected