monocle-apptrace 0.5.1__tar.gz → 0.5.1b1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of monocle-apptrace might be problematic. Click here for more details.

Files changed (156) hide show
  1. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/PKG-INFO +27 -2
  2. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/README.md +20 -0
  3. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/pyproject.toml +18 -3
  4. monocle_apptrace-0.5.1b1/src/monocle_apptrace/mcp_server.py +94 -0
  5. monocle_apptrace-0.5.1/CHANGELOG.md +0 -189
  6. monocle_apptrace-0.5.1/CODEOWNERS.md +0 -10
  7. monocle_apptrace-0.5.1/CODE_OF_CONDUCT.md +0 -3
  8. monocle_apptrace-0.5.1/CONTRIBUTING.md +0 -28
  9. monocle_apptrace-0.5.1/COPYRIGHT.template +0 -2
  10. monocle_apptrace-0.5.1/MAINTAINER.md +0 -10
  11. monocle_apptrace-0.5.1/Monocle_User_Guide.md +0 -193
  12. monocle_apptrace-0.5.1/Monocle_committer_guide.md +0 -56
  13. monocle_apptrace-0.5.1/Monocle_contributor_guide.md +0 -1
  14. monocle_apptrace-0.5.1/SECURITY.md +0 -9
  15. monocle_apptrace-0.5.1/tox.ini +0 -33
  16. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/.gitignore +0 -0
  17. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/LICENSE +0 -0
  18. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/NOTICE +0 -0
  19. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/README.md +0 -0
  20. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/__init__.py +0 -0
  21. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/__main__.py +0 -0
  22. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/aws/s3_exporter.py +0 -0
  23. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/aws/s3_exporter_opendal.py +0 -0
  24. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/azure/blob_exporter.py +0 -0
  25. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/azure/blob_exporter_opendal.py +0 -0
  26. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/base_exporter.py +0 -0
  27. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/exporter_processor.py +0 -0
  28. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/file_exporter.py +0 -0
  29. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/monocle_exporters.py +0 -0
  30. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/exporters/okahu/okahu_exporter.py +0 -0
  31. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/__init__.py +0 -0
  32. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/__init__.py +0 -0
  33. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/constants.py +0 -0
  34. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/instrumentor.py +0 -0
  35. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/method_wrappers.py +0 -0
  36. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/scope_wrapper.py +0 -0
  37. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/span_handler.py +0 -0
  38. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/tracing.md +0 -0
  39. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/utils.py +0 -0
  40. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/wrapper.py +0 -0
  41. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/common/wrapper_method.py +0 -0
  42. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/__init__.py +0 -0
  43. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/a2a/__init__.py +0 -0
  44. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/a2a/_helper.py +0 -0
  45. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/a2a/entities/__init__.py +0 -0
  46. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/a2a/entities/inference.py +0 -0
  47. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/a2a/methods.py +0 -0
  48. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/adk/__init__.py +0 -0
  49. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/adk/_helper.py +0 -0
  50. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/adk/entities/agent.py +0 -0
  51. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/adk/entities/tool.py +0 -0
  52. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/adk/methods.py +0 -0
  53. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/agents/__init__.py +0 -0
  54. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/agents/_helper.py +0 -0
  55. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/agents/agents_processor.py +0 -0
  56. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/agents/entities/__init__.py +0 -0
  57. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/agents/entities/inference.py +0 -0
  58. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/agents/methods.py +0 -0
  59. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/aiohttp/__init__.py +0 -0
  60. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/aiohttp/_helper.py +0 -0
  61. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/aiohttp/entities/http.py +0 -0
  62. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/aiohttp/methods.py +0 -0
  63. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/anthropic/__init__.py +0 -0
  64. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/anthropic/_helper.py +0 -0
  65. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/anthropic/entities/__init__.py +0 -0
  66. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/anthropic/entities/inference.py +0 -0
  67. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/anthropic/methods.py +0 -0
  68. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azfunc/_helper.py +0 -0
  69. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azfunc/entities/http.py +0 -0
  70. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azfunc/methods.py +0 -0
  71. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azfunc/wrapper.py +0 -0
  72. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azureaiinference/__init__.py +0 -0
  73. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azureaiinference/_helper.py +0 -0
  74. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azureaiinference/entities/inference.py +0 -0
  75. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/azureaiinference/methods.py +0 -0
  76. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/botocore/__init__.py +0 -0
  77. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/botocore/_helper.py +0 -0
  78. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/botocore/entities/__init__.py +0 -0
  79. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/botocore/entities/inference.py +0 -0
  80. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/botocore/handlers/botocore_span_handler.py +0 -0
  81. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/botocore/methods.py +0 -0
  82. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/fastapi/__init__.py +0 -0
  83. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/fastapi/_helper.py +0 -0
  84. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/fastapi/entities/__init__.py +0 -0
  85. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/fastapi/entities/http.py +0 -0
  86. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/fastapi/methods.py +0 -0
  87. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/finish_types.py +0 -0
  88. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/flask/__init__.py +0 -0
  89. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/flask/_helper.py +0 -0
  90. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/flask/entities/http.py +0 -0
  91. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/flask/methods.py +0 -0
  92. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/gemini/__init__.py +0 -0
  93. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/gemini/_helper.py +0 -0
  94. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/gemini/entities/__init__.py +0 -0
  95. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/gemini/entities/inference.py +0 -0
  96. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/gemini/entities/retrieval.py +0 -0
  97. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/gemini/methods.py +0 -0
  98. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/haystack/__init__.py +0 -0
  99. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/haystack/_helper.py +0 -0
  100. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/haystack/entities/__init__.py +0 -0
  101. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/haystack/entities/inference.py +0 -0
  102. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/haystack/entities/retrieval.py +0 -0
  103. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/haystack/methods.py +0 -0
  104. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/lambdafunc/_helper.py +0 -0
  105. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/lambdafunc/entities/http.py +0 -0
  106. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/lambdafunc/methods.py +0 -0
  107. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/lambdafunc/wrapper.py +0 -0
  108. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langchain/__init__.py +0 -0
  109. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langchain/_helper.py +0 -0
  110. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langchain/entities/__init__.py +0 -0
  111. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langchain/entities/inference.py +0 -0
  112. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langchain/entities/retrieval.py +0 -0
  113. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langchain/methods.py +0 -0
  114. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langgraph/__init__.py +0 -0
  115. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langgraph/_helper.py +0 -0
  116. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langgraph/entities/__init__.py +0 -0
  117. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langgraph/entities/inference.py +0 -0
  118. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langgraph/langgraph_processor.py +0 -0
  119. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/langgraph/methods.py +0 -0
  120. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/litellm/__init__.py +0 -0
  121. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/litellm/_helper.py +0 -0
  122. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/litellm/entities/__init__.py +0 -0
  123. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/litellm/entities/inference.py +0 -0
  124. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/litellm/methods.py +0 -0
  125. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/__init__.py +0 -0
  126. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/_helper.py +0 -0
  127. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/entities/__init__.py +0 -0
  128. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/entities/agent.py +0 -0
  129. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/entities/inference.py +0 -0
  130. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/entities/retrieval.py +0 -0
  131. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/llamaindex_processor.py +0 -0
  132. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/llamaindex/methods.py +0 -0
  133. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/mcp/__init__.py +0 -0
  134. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/mcp/_helper.py +0 -0
  135. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/mcp/entities/__init__.py +0 -0
  136. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/mcp/entities/inference.py +0 -0
  137. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/mcp/mcp_processor.py +0 -0
  138. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/mcp/methods.py +0 -0
  139. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/openai/__init__.py +0 -0
  140. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/openai/_helper.py +0 -0
  141. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/openai/entities/__init__.py +0 -0
  142. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/openai/entities/inference.py +0 -0
  143. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/openai/entities/retrieval.py +0 -0
  144. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/openai/methods.py +0 -0
  145. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/requests/__init__.py +0 -0
  146. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/requests/_helper.py +0 -0
  147. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/requests/entities/http.py +0 -0
  148. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/requests/methods.py +0 -0
  149. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/__init__.py +0 -0
  150. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/_helper.py +0 -0
  151. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/entities/__init__.py +0 -0
  152. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/__init__.py +0 -0
  153. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/actionplanner_output_processor.py +0 -0
  154. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/entities/inference/teamsai_output_processor.py +0 -0
  155. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/methods.py +0 -0
  156. {monocle_apptrace-0.5.1 → monocle_apptrace-0.5.1b1}/src/monocle_apptrace/instrumentation/metamodel/teamsai/sample.json +0 -0
@@ -1,18 +1,23 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: monocle_apptrace
3
- Version: 0.5.1
3
+ Version: 0.5.1b1
4
4
  Summary: package with monocle genAI tracing
5
5
  Project-URL: Homepage, https://github.com/monocle2ai/monocle
6
6
  Project-URL: Issues, https://github.com/monocle2ai/monocle/issues
7
+ Author-email: "Okahu Inc." <okahu-pypi@okahu.ai>
8
+ License: Apache-2.0
7
9
  License-File: LICENSE
8
10
  License-File: NOTICE
9
- Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: License :: OSI Approved :: Apache Software License
10
12
  Classifier: Operating System :: OS Independent
11
13
  Classifier: Programming Language :: Python :: 3
12
14
  Requires-Python: >=3.8
15
+ Requires-Dist: click==8.2.1
16
+ Requires-Dist: mcp>=1.13.1
13
17
  Requires-Dist: opentelemetry-api>=1.21.0
14
18
  Requires-Dist: opentelemetry-instrumentation
15
19
  Requires-Dist: opentelemetry-sdk>=1.21.0
20
+ Requires-Dist: pydantic>=2.11.7
16
21
  Requires-Dist: requests
17
22
  Requires-Dist: wrapt>=1.14.0
18
23
  Provides-Extra: aws
@@ -132,6 +137,26 @@ Benefits:
132
137
  See [Monocle user guide](Monocle_User_Guide.md) for more details.
133
138
 
134
139
 
140
+ ## Use Monocle MCP
141
+
142
+ First install monocle-apptrace: pip install monocle-apptrace
143
+
144
+ Open bash and run the following command to run the monocle mcp server with stdio:
145
+ monocle_apptrace
146
+
147
+ If you are using VS Code you can add following entry to your .vscode/mcp.json
148
+
149
+ ```json
150
+ "monocle-mcp-server": {
151
+ "type": "stdio",
152
+ "command": "uvx",
153
+ "args": [
154
+ "monocle_apptrace"
155
+ ],
156
+ "env": {}
157
+ }
158
+ ```
159
+
135
160
  ## Roadmap
136
161
 
137
162
  Goal of Monocle is to support tracing for apps written in *any language* with *any LLM orchestration or agentic framework* and built using models, vectors, agents or other components served up by *any cloud or model inference provider*.
@@ -55,6 +55,26 @@ Benefits:
55
55
  See [Monocle user guide](Monocle_User_Guide.md) for more details.
56
56
 
57
57
 
58
+ ## Use Monocle MCP
59
+
60
+ First install monocle-apptrace: pip install monocle-apptrace
61
+
62
+ Open bash and run the following command to run the monocle mcp server with stdio:
63
+ monocle_apptrace
64
+
65
+ If you are using VS Code you can add following entry to your .vscode/mcp.json
66
+
67
+ ```json
68
+ "monocle-mcp-server": {
69
+ "type": "stdio",
70
+ "command": "uvx",
71
+ "args": [
72
+ "monocle_apptrace"
73
+ ],
74
+ "env": {}
75
+ }
76
+ ```
77
+
58
78
  ## Roadmap
59
79
 
60
80
  Goal of Monocle is to support tracing for apps written in *any language* with *any LLM orchestration or agentic framework* and built using models, vectors, agents or other components served up by *any cloud or model inference provider*.
@@ -4,14 +4,17 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "monocle_apptrace"
7
- version = "0.5.1"
8
- authors = []
7
+ version = "0.5.1b1"
8
+ authors = [
9
+ { name="Okahu Inc.", email="okahu-pypi@okahu.ai" },
10
+ ]
9
11
  description = "package with monocle genAI tracing"
10
12
  readme = "README.md"
11
13
  requires-python = ">=3.8"
14
+ license = {text = "Apache-2.0"}
12
15
  classifiers = [
13
16
  "Programming Language :: Python :: 3",
14
- "License :: OSI Approved :: MIT License",
17
+ "License :: OSI Approved :: Apache Software License",
15
18
  "Operating System :: OS Independent",
16
19
  ]
17
20
  dependencies = [
@@ -20,6 +23,9 @@ dependencies = [
20
23
  'opentelemetry-api>=1.21.0',
21
24
  'opentelemetry-sdk>=1.21.0',
22
25
  'opentelemetry-instrumentation',
26
+ 'mcp>=1.13.1',
27
+ 'pydantic>=2.11.7',
28
+ 'click==8.2.1'
23
29
  ]
24
30
 
25
31
  [tool.pytest.ini_options]
@@ -113,6 +119,12 @@ packages = ["src/monocle_apptrace"]
113
119
 
114
120
  [tool.hatch.build.targets.sdist]
115
121
  ignore-vcs = true
122
+ include = [
123
+ "pyproject.toml",
124
+ "README.md",
125
+ "LICENSE",
126
+ "src/**",
127
+ ]
116
128
 
117
129
  [tool.hatch.build]
118
130
  exclude = [
@@ -136,3 +148,6 @@ disable = [
136
148
  "R0913", # (too-many-arguments)
137
149
  "W0105", # (pointless-string-statement)
138
150
  ]
151
+
152
+ [project.scripts]
153
+ monocle_apptrace = "monocle_apptrace.mcp_server:main"
@@ -0,0 +1,94 @@
1
+ import logging
2
+ import click
3
+ from mcp.server.fastmcp import FastMCP
4
+
5
+ logger = logging.getLogger(__name__)
6
+
7
+ app = FastMCP(
8
+ "monocle-mcp",
9
+ )
10
+ code_snippets = {
11
+ "python": "from monocle_apptrace import setup_monocle_telemetry"
12
+ "setup_monocle_telemetry(workflow_name='my_workflow')\n",
13
+ "typescript": "import { trace } from 'monocle';\n\ntrace();\n",
14
+ }
15
+ setup_instructions = {
16
+ "python": "pip install monocle_apptrace package and add monocle_apptrace at the end of the requirement.txt for future. This code snippet provided below should be just below other imports in your application code.",
17
+ "typescript": "Install monocle package and add the trace function call at the top of your application. This code snippet provided below should be just below other imports in your application code.",
18
+ }
19
+
20
+ description = {
21
+ "python": "This will automatically trace your Python application, capturing telemetry data for your genAI operations.",
22
+ "typescript": "This will automatically trace your TypeScript application, capturing telemetry data for your genAI operations.",
23
+ }
24
+
25
+
26
+ # Use the existing dictionaries to get language-specific information
27
+ # code_snippet = code_snippets.get(app_language, code_snippets['python'])
28
+ # instructions = setup_instructions.get(app_language, setup_instructions['python'])
29
+ # desc = description.get(app_language, description['python'])
30
+ enable_monocle_prompt = """Do following changes to the project:
31
+ 1. run command 'pip install monocle_apptrace'
32
+ 2. Add following line to requirements.txt in current directory 'monocle_apptrace' if it's not there already
33
+ 3. Add following lines just below other imports in the file if it's not there already:
34
+ from monocle_apptrace import setup_monocle_telemetry
35
+ setup_monocle_telemetry(workflow_name=<module-name>, monocle_exporters_list='file'))
36
+ """
37
+
38
+ monocle_trace_prompt: str = """
39
+ You are a helpful assistant to analyze given Monocle trace data. Review the trace data and provide a summary of whether the execution was successful or if there were any errors. Your job is to analyze the trace data and provide a summary. Be very concise in reporting. Check for errors or problem situations. First provide a headline that indicates status of the trace and if there are problems. If there are problems, then provide a brief summary of the problems. If there are problems, then provide a brief summary of the root causes.
40
+ Use the trace details provided below to understand the data.
41
+
42
+ Monocle trace has recorded the traced the execution of a genAI application. Each step of the genAI operation is captured as span. The trace file is a JSON structure that is an array of span JSON elements. There's a root span that represents the overall execution context.
43
+ The important span JSON elements are as follows:
44
+ - context.trace_id is the unique id common for alls spans.
45
+ - context.span_id is the unique id for each span.
46
+ - parent_id indicates the parent span of that span. The span that has no parent is the root span.
47
+ - status.status_code indicate the status of span. It can be OK or ERROR or UNSET. If the span status is ERROR, then it generally propogated to it's parent and all the way to the root span. This means the entire trace is in error. However, sometimes the parent span will handle the error (eg. if parent name indicagtes 'retry') and the trace will be successful, even though an individual span has error.
48
+ - attributes captures various attributes involved in that span's operation
49
+ - attribute."span.type" indicates the type of operation
50
+ - When the span.type is "workflow", that span captures the summary of the entire application
51
+ - entity.[NUMBER] are the different entties involved in the operation, for example large language model, agent, tool etc
52
+ - entity.type indicates the type of that entity
53
+ - events is an array that captures the details of the operation such as input, output and metadata
54
+ - events array element with name=data.input captures the input provided to the operation
55
+ - events array element with name=data.output captures the output generated by the operation
56
+ - events array element with name=metaata captures the metadata of the operation
57
+ - total_tokens is the count of tokens
58
+ - completion_tokens is the count of ouput tokens
59
+ - prompt_tokens is the count of input tokens
60
+ - finish_type indicates how the operation finished, for example stop sequence or max tokens etc. If the finish_type is not success and indicates problems such as max tokens, then the operation is not successful. Check the status of it's parent span and check if it's due to the finish type of this child span. In that case callout the root cause as the child span error for the parent span error.
61
+ """
62
+
63
+ @app.prompt(name="enable_tracing")
64
+ def enable_monocle_tracing_prompt(app_language: str = "python") -> str:
65
+ """Trace agentic code"""
66
+ return enable_monocle_prompt.format(app_language=app_language)
67
+
68
+
69
+ @app.prompt(name="analyze")
70
+ def analyze_monocle_tracing_prompt() -> str:
71
+ """Identify root cause from trace"""
72
+ return monocle_trace_prompt
73
+
74
+
75
+ @click.command()
76
+ @click.option(
77
+ "--log-level",
78
+ default="info",
79
+ help="Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)",
80
+ )
81
+ def main(log_level: str) -> int:
82
+ # Configure logging
83
+ logging.basicConfig(
84
+ level=getattr(logging, log_level.upper()),
85
+ format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
86
+ )
87
+
88
+ # Run the FastMCP server using stdio transport
89
+ app.run(transport="stdio")
90
+ return 0
91
+
92
+
93
+ if __name__ == "__main__":
94
+ main() # type: ignore
@@ -1,189 +0,0 @@
1
- ## Version 0.5.1 (2025-08-25)
2
-
3
- - Support injecting synthetic spans and use that for adding delegation span in Google ADK ([#257](https://github.com/monocle2ai/monocle/pull/257))
4
- - Added monocle subtypes ([#256](https://github.com/monocle2ai/monocle/pull/256))
5
- - OpenAI agents request span ([#255](https://github.com/monocle2ai/monocle/pull/255))
6
- - Set scopes for agent request and invocation plus minor fixes ([#253](https://github.com/monocle2ai/monocle/pull/253))
7
-
8
- ## Version 0.5.0 (2025-08-05)
9
-
10
- - Fix missing inference span in google ADK ([#249](https://github.com/monocle2ai/monocle/pull/249))
11
- - Added openai agents instrumentation ([#248](https://github.com/monocle2ai/monocle/pull/248))
12
- - Google Agent development kit meta mode ([#247](https://github.com/monocle2ai/monocle/pull/247))
13
- - Add Support for LiteLLM OpenAI and AzureOpenAI ([#246](https://github.com/monocle2ai/monocle/pull/246))
14
- - Added inference subtype for langgrap, openai and anthropic ([#245](https://github.com/monocle2ai/monocle/pull/245))
15
- - Add support for teams finish type, move finish types to metadata section ([#240](https://github.com/monocle2ai/monocle/pull/240))
16
- - Fix integration tests ([#239](https://github.com/monocle2ai/monocle/pull/239))
17
- - Add function_name attribute for Azure function ([#238](https://github.com/monocle2ai/monocle/pull/238))
18
- - Added MCP and A2A ([#237](https://github.com/monocle2ai/monocle/pull/237))
19
- - Add Metamodel for Lambda Func ([#236](https://github.com/monocle2ai/monocle/pull/236))
20
- - Allow llm SDKs as workflow types ([#234](https://github.com/monocle2ai/monocle/pull/234))
21
- - Add Sample Span for VertexAI ([#233](https://github.com/monocle2ai/monocle/pull/233))
22
- - Add Haystack Gemini sample ([#232](https://github.com/monocle2ai/monocle/pull/232))
23
- - Add Llama Index Gemini sample ([#231](https://github.com/monocle2ai/monocle/pull/231))
24
- - Add workflow span name to all spans ([#230](https://github.com/monocle2ai/monocle/pull/230))
25
- - Add Langchain Gemini sample ([#229](https://github.com/monocle2ai/monocle/pull/229))
26
- - Add Embeddings Span in Gemini Metamodel ([#228](https://github.com/monocle2ai/monocle/pull/228))
27
- - Agent metamodel updates for LangGraph ([#227](https://github.com/monocle2ai/monocle/pull/227))
28
- - Add fastapi metamodel with fastapi tracid propogation testcase ([#226](https://github.com/monocle2ai/monocle/pull/226))
29
-
30
- ## Version 0.4.2 (2025-06-26)
31
-
32
- - Add gemini instrumentation ([#220](https://github.com/monocle2ai/monocle/pull/220))
33
-
34
- ## Version 0.4.1 (2025-06-17)
35
-
36
- - Add exception status code for Boto3 ([#211](https://github.com/monocle2ai/monocle/pull/211))
37
- - Add exception status code for anthropic and openai ([#210](https://github.com/monocle2ai/monocle/pull/210))
38
- - Add prompt template info in teamsAI ([#209](https://github.com/monocle2ai/monocle/pull/209))
39
- - TeamsAI : added system prompt ([#208](https://github.com/monocle2ai/monocle/pull/208))
40
- - Add prompt template info in ActionPlanner for teamsAI ([#207](https://github.com/monocle2ai/monocle/pull/207))
41
- - Add teams channel id as scope in MS teams instrumentations ([#206](https://github.com/monocle2ai/monocle/pull/206))
42
- - Azure function wrapper to generate http span ([#205](https://github.com/monocle2ai/monocle/pull/205))
43
- - Azure ai inference sdk ([#204](https://github.com/monocle2ai/monocle/pull/204))
44
-
45
- ## Version 0.4.0 (2025-06-02)
46
-
47
- - Update teams scopes ([#200](https://github.com/monocle2ai/monocle/pull/200))
48
- - Record input and errors for inference.modelapi in case of error ([#193](https://github.com/monocle2ai/monocle/pull/193))
49
- - Removed special handling for streaming in wrapper ([#192](https://github.com/monocle2ai/monocle/pull/192))
50
-
51
-
52
- - Add Span error handling ([#186](https://github.com/monocle2ai/monocle/pull/186))
53
- - Add teams ai enhancements ([#184](https://github.com/monocle2ai/monocle/pull/184))
54
-
55
-
56
- - Added conversation id in scope for teams ai bot ([#180](https://github.com/monocle2ai/monocle/pull/180))
57
- - Update inference entity type of TeamsAI SDK ([#178](https://github.com/monocle2ai/monocle/pull/178))
58
- - Added stream and async for openai ([#177](https://github.com/monocle2ai/monocle/pull/177))
59
- - Update inference span of TeamsAI ([#176](https://github.com/monocle2ai/monocle/pull/176))
60
- - Remove Preset span name and Bugfix for Event ([#175](https://github.com/monocle2ai/monocle/pull/175))
61
- - Add haystack anthropic sample ([#174](https://github.com/monocle2ai/monocle/pull/174))
62
- - aiohttp auto instrumentation ([#173](https://github.com/monocle2ai/monocle/pull/173))
63
- - Add source path to spans and fix json syntax in file exporter ([#172](https://github.com/monocle2ai/monocle/pull/172))
64
- - Added changes for openai streaming ([#171](https://github.com/monocle2ai/monocle/pull/171))
65
- - Add llama index anthropic sample ([#170](https://github.com/monocle2ai/monocle/pull/170))
66
-
67
- ## Version 0.3.1 (2024-04-18)
68
-
69
- - Add MetaModel for Anthropic SDK ([#159](https://github.com/monocle2ai/monocle/pull/159))
70
- - Add openAI response for openAI and AzureOpenAI ([#158](https://github.com/monocle2ai/monocle/pull/158))
71
- - Update retrieval span for Boto Client ([#157](https://github.com/monocle2ai/monocle/pull/157))
72
- - Resolve token threshold error ([#156](https://github.com/monocle2ai/monocle/pull/156))
73
- - Update Inference Span ([#155](https://github.com/monocle2ai/monocle/pull/155))
74
- - Refactor workflow and spans ([#160](https://github.com/monocle2ai/monocle/pull/160))
75
- - Support monocle exporter list as parameter to `setup_monocle_telemetry()` ([#161](https://github.com/monocle2ai/monocle/pull/161))
76
- - Add langchain anthropic sample ([#165](https://github.com/monocle2ai/monocle/pull/165))
77
-
78
- ## Version 0.3.0 (2024-03-18)
79
-
80
- - Fixed issue with passing context in async case ([#150](https://github.com/monocle2ai/monocle/pull/150))
81
- - Added lambda processor ([#148](https://github.com/monocle2ai/monocle/pull/148))
82
- - Setup package level init scripts to make the monocle import simpler ([#147](https://github.com/monocle2ai/monocle/pull/147))
83
- - Boto attributes and test cleanup ([#146](https://github.com/monocle2ai/monocle/pull/146))
84
- - Openai workflow ([#142](https://github.com/monocle2ai/monocle/pull/142))
85
- - Add input/output for openai embedding ([#141](https://github.com/monocle2ai/monocle/pull/141))
86
- - Async method and scope fix ([#140](https://github.com/monocle2ai/monocle/pull/140))
87
- - Bug fix for helper langchain and langgraph ([#137](https://github.com/monocle2ai/monocle/pull/137))
88
- - Package main script to run any app with monocle instrumentation ([#132](https://github.com/monocle2ai/monocle/pull/132))
89
- - Add openai api metamodel ([#131](https://github.com/monocle2ai/monocle/pull/131))
90
- - Support notion of scopes to group traces/snaps into logical constructs ([#130](https://github.com/monocle2ai/monocle/pull/130))
91
- - Add Llamaindex ReAct agent ([#127](https://github.com/monocle2ai/monocle/pull/127))
92
- - Langhcain input fix and s3 exporter prefix support ([#126](https://github.com/monocle2ai/monocle/pull/126))
93
- - Use standard AWS credential envs ([#123](https://github.com/monocle2ai/monocle/pull/123))
94
- - Check additional attributes for Azure OpenAI model and consolidate common method in utils ([#122](https://github.com/monocle2ai/monocle/pull/122))
95
- - Bug fix for accessor ([#121](https://github.com/monocle2ai/monocle/pull/121))
96
- - Bug fix for empty response ([#120](https://github.com/monocle2ai/monocle/pull/120))
97
- - Bug fix for inference endpoint ([#119](https://github.com/monocle2ai/monocle/pull/119))
98
- - Opendal exporter for S3 and Blob ([#117](https://github.com/monocle2ai/monocle/pull/117))
99
- - Handle specific ModuleNotFoundError exceptions gracefully ([#115](https://github.com/monocle2ai/monocle/pull/115))
100
- - Adding support for console and memory exporter to list of monocle exporters ([#113](https://github.com/monocle2ai/monocle/pull/113))
101
- - Add trace id propogation for constant trace id and from request ([#111](https://github.com/monocle2ai/monocle/pull/111))
102
- - Restructure of monoocle code for easy extensibility ([#109](https://github.com/monocle2ai/monocle/pull/109))
103
- - S3 update filename prefix ([#98](https://github.com/monocle2ai/monocle/pull/98))
104
- - Update inference span for botocore sagemaker ([#93](https://github.com/monocle2ai/monocle/pull/93))
105
- - Capturing inference output and token metadata for bedrock ([#82](https://github.com/monocle2ai/monocle/pull/82))
106
- - Add dev dependency for Mistral AI integration ([#81](https://github.com/monocle2ai/monocle/pull/81))
107
- - Add VectorStore deployment URL capture support ([#80](https://github.com/monocle2ai/monocle/pull/80))
108
- - Clean up cloud exporter implementation ([#79](https://github.com/monocle2ai/monocle/pull/79))
109
- - Capture inference span input/output events attributes ([#77](https://github.com/monocle2ai/monocle/pull/77))
110
- - Add release automation workflows ([#76](https://github.com/monocle2ai/monocle/pull/76))
111
- - Fix gaps in Monocle SDK implementation ([#72](https://github.com/monocle2ai/monocle/pull/72))
112
- - Add kwargs and return value handling in Accessor ([#71](https://github.com/monocle2ai/monocle/pull/71))
113
- - Update workflow name formatting ([#69](https://github.com/monocle2ai/monocle/pull/69))
114
- - Implement Haystack metamodel support ([#68](https://github.com/monocle2ai/monocle/pull/68))
115
-
116
- ## Version 0.2.0 (2024-12-05)
117
-
118
- ## 0.2.0 (Oct 22, 2024)
119
-
120
- - Ndjson format for S3 and Blob exporters ([#61](https://github.com/monocle2ai/monocle/pull/61))
121
- - Set monocle exporter from env setting ([#60](https://github.com/monocle2ai/monocle/pull/60))
122
- - Update workflow name and type with new format ([#59](https://github.com/monocle2ai/monocle/pull/59))
123
- - Updated async and custom output processor testcase for metamodel([#58](https://github.com/monocle2ai/monocle/pull/58))
124
- - Build okahu exporter and added test cases for okahu exporte ([#56](https://github.com/monocle2ai/monocle/pull/56))
125
- - Handle exception in span wrappers([#52](https://github.com/monocle2ai/monocle/pull/52))
126
- - Metamodel entity changes ([#51](https://github.com/monocle2ai/monocle/pull/51)), ([#54](https://github.com/monocle2ai/monocle/pull/54))
127
- - Error handling for llm_endpoint and tags ([#50](https://github.com/monocle2ai/monocle/pull/50))
128
- - Context_output for vector store retriever ([#48](https://github.com/monocle2ai/monocle/pull/48))
129
- - Direct exporter - AWS S3 ([#42](https://github.com/monocle2ai/monocle/pull/42))
130
- - Direct Exporter - Blob store ([#41](https://github.com/monocle2ai/monocle/pull/41))
131
- - Initial metamodel definition ([#39](https://github.com/monocle2ai/monocle/pull/39))
132
- - Improvement in vectorstore traces ([#38](https://github.com/monocle2ai/monocle/pull/38))
133
- - Update key for session context field in attributes ([#34](https://github.com/monocle2ai/monocle/pull/34))
134
-
135
-
136
- ## 0.1.0 (Aug 27, 2024)
137
-
138
- - Fixed LlamaIndex tracing bugs ([#32](https://github.com/monocle2ai/monocle/pull/32))
139
- - Added support to add AWS cloud infra attributes ([#29](https://github.com/monocle2ai/monocle/pull/29))
140
- - Added support to add Azure cloud infra attributes ([#23](https://github.com/monocle2ai/monocle/pull/23))
141
- - Added support for adding provider name in LLM span in traces ([#22](https://github.com/monocle2ai/monocle/pull/22))
142
- - Added a default file span exporter ([#21](https://github.com/monocle2ai/monocle/pull/21))
143
- - Moved input and output context and prompts from attributes to events ([#15](https://github.com/monocle2ai/monocle/pull/15))
144
-
145
-
146
-
147
-
148
-
149
-
150
- ## 0.0.1 (Jul 17, 2024)
151
-
152
- - First monocle release
153
-
154
- - Add support for teams finish type, move finish types to metadata section ([#240](https://github.com/monocle2ai/monocle/pull/240))
155
- - Fix integration tests ([#239](https://github.com/monocle2ai/monocle/pull/239))
156
- - Add function_name attribute for Azure function ([#238](https://github.com/monocle2ai/monocle/pull/238))
157
- - Added MCP and A2A ([#237](https://github.com/monocle2ai/monocle/pull/237))
158
- - Add Metamodel for Lambda Func ([#236](https://github.com/monocle2ai/monocle/pull/236))
159
- - Allow llm SDKs as workflow types ([#234](https://github.com/monocle2ai/monocle/pull/234))
160
- - Add Sample Span for VertexAI ([#233](https://github.com/monocle2ai/monocle/pull/233))
161
- - Add Haystack Gemini sample ([#232](https://github.com/monocle2ai/monocle/pull/232))
162
- - Add Llama Index Gemini sample ([#231](https://github.com/monocle2ai/monocle/pull/231))
163
- - Add workflow span name to all spans ([#230](https://github.com/monocle2ai/monocle/pull/230))
164
- - Add Langchain Gemini sample ([#229](https://github.com/monocle2ai/monocle/pull/229))
165
- - Add Embeddings Span in Gemini Metamodel ([#228](https://github.com/monocle2ai/monocle/pull/228))
166
- - Agent metamodel updates for LangGraph ([#227](https://github.com/monocle2ai/monocle/pull/227))
167
- - Add fastapi metamodel with fastapi tracid propogation testcase ([#226](https://github.com/monocle2ai/monocle/pull/226))
168
-
169
-
170
- - Fix missing inference span in google ADK ([#249](https://github.com/monocle2ai/monocle/pull/249))
171
- - Added openai agents instrumentation ([#248](https://github.com/monocle2ai/monocle/pull/248))
172
- - Google Agent development kit meta mode ([#247](https://github.com/monocle2ai/monocle/pull/247))
173
- - Add Support for LiteLLM OpenAI and AzureOpenAI ([#246](https://github.com/monocle2ai/monocle/pull/246))
174
- - Added inference subtype for langgrap, openai and anthropic ([#245](https://github.com/monocle2ai/monocle/pull/245))
175
- - Add support for teams finish type, move finish types to metadata section ([#240](https://github.com/monocle2ai/monocle/pull/240))
176
- - Fix integration tests ([#239](https://github.com/monocle2ai/monocle/pull/239))
177
- - Add function_name attribute for Azure function ([#238](https://github.com/monocle2ai/monocle/pull/238))
178
- - Added MCP and A2A ([#237](https://github.com/monocle2ai/monocle/pull/237))
179
- - Add Metamodel for Lambda Func ([#236](https://github.com/monocle2ai/monocle/pull/236))
180
- - Allow llm SDKs as workflow types ([#234](https://github.com/monocle2ai/monocle/pull/234))
181
- - Add Sample Span for VertexAI ([#233](https://github.com/monocle2ai/monocle/pull/233))
182
- - Add Haystack Gemini sample ([#232](https://github.com/monocle2ai/monocle/pull/232))
183
- - Add Llama Index Gemini sample ([#231](https://github.com/monocle2ai/monocle/pull/231))
184
- - Add workflow span name to all spans ([#230](https://github.com/monocle2ai/monocle/pull/230))
185
- - Add Langchain Gemini sample ([#229](https://github.com/monocle2ai/monocle/pull/229))
186
- - Add Embeddings Span in Gemini Metamodel ([#228](https://github.com/monocle2ai/monocle/pull/228))
187
- - Agent metamodel updates for LangGraph ([#227](https://github.com/monocle2ai/monocle/pull/227))
188
- - Add fastapi metamodel with fastapi tracid propogation testcase ([#226](https://github.com/monocle2ai/monocle/pull/226))
189
-
@@ -1,10 +0,0 @@
1
- #MAINTAINERS
2
- Following is the current list of maintainers on this project
3
-
4
- The maintainers are listed in alphabetical order.
5
-
6
- - [@prasad-okahu] (https://github.com/prasad-okahu) (Prasad Mujumdar)
7
- - [@oi-raanne] (https://github.com/oi-raanne) (Ravi Anne)
8
- - [@akshay-okahu](https://github.com/akshay-okahu) (Akshay Yadav)
9
- - [@anshul7665] (https://github.com/anshul7665) (Anshul Sharma)
10
- - [@kshitiz-okahu] (https://github.com/kshitiz-okahu) (Kshitiz Vijayvargiya)
@@ -1,3 +0,0 @@
1
- # Monocle Code of Conduct
2
-
3
- In the interest of fostering an open and welcoming environment, we as contributors and maintainers agree to abide by the Code of Conduct available at https://lfprojects.org/policies/code-of-conduct/
@@ -1,28 +0,0 @@
1
- # Contributing to Monocle
2
- Contributions to Monocle are welcome from everyone. The following are a set of guidelines for contributing to Monocle. Following these guidelines makes contributing to this project easy and transparent. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request. Please refer to our code of conduct when making contributions.
3
-
4
- ## How can you contribute?
5
- ### Contributing code
6
- If you encounter a bug, you can
7
- - (Recommended) File an issue about the bug.
8
- - Provide clear and concrete ways/scripts to reproduce the bug.
9
- - Provide possible solutions for the bug.
10
- - Pull a request to fix the bug.
11
-
12
- If you're interested in existing issues, you can
13
- - (Recommended) Provide answers for issue labeled question.
14
- - Provide help for issues labeled bug, improvement, and enhancement by
15
- -- (Recommended) Ask questions, reproduce the issue, or provide solutions.
16
- -- Pull a request to fix the issue.
17
-
18
- If you require a new feature or major enhancement, you can
19
- - (Recommended) File an issue about the feature/enhancement with reasons.
20
- - Pull a request to implement the feature.
21
-
22
- If you are a reviewer/approver of Monocle, you can
23
- - Participate in PR review process.
24
- - Instruct newcomers in the community to complete the PR process.
25
-
26
- If you want to become a contributor of Monocle, submit your pull requests. All contributions to this project must be accompanied by acknowledgment of, and agreement to, the [Developer Certificate of Origin](https://github.com/apps/dco). All submissions will be reviewed as quickly as possible.
27
-
28
-
@@ -1,2 +0,0 @@
1
- Copyright Contributors to the Monocle project.
2
- SPDX-License-Identifier: Apache-2.0
@@ -1,10 +0,0 @@
1
- #MAINTAINERS
2
- Following is the current list of maintainers on this project
3
-
4
- The maintainers are listed in alphabetical order.
5
-
6
- - [@prasad-okahu] (https://github.com/prasad-okahu) (Prasad Mujumdar)
7
- - [@oi-raanne] (https://github.com/oi-raanne) (Ravi Anne)
8
- - [@akshay-okahu](https://github.com/akshay-okahu) (Akshay Yadav)
9
- - [@anshul7665] (https://github.com/anshul7665) (Anshul Sharma)
10
- - [@kshitiz-okahu] (https://github.com/kshitiz-okahu) (Kshitiz Vijayvargiya)