github-actions[bot]
56a5c63994
bump: version 0.34.1 → 0.34.2
2025-11-13 21:11:36 +00:00
github-actions[bot]
dd12c957f6
bump: version 0.34.0 → 0.34.1
2025-11-13 21:10:16 +00:00
github-actions[bot]
2f138e7539
bump: version 0.33.1 → 0.34.0
2025-11-13 16:15:29 +00:00
github-actions[bot]
bd76902932
bump: version 0.33.0 → 0.33.1
2025-11-13 12:10:42 +00:00
github-actions[bot]
15951c38fa
bump: version 0.32.1 → 0.33.0
2025-11-13 10:58:05 +00:00
Chris Coutinho and Claude
4ea5ed72d4
feat: Add Grafana dashboard and vector sync metric instrumentation
...
Implement comprehensive observability for vector database synchronization
with Grafana dashboard and Prometheus metrics.
## Part 1: Grafana Dashboard
Created all-in-one operations dashboard with 7 rows and 34 panels:
### Dashboard Structure:
- **Overview Row**: Request rate, error rate, P95 latency, active requests
- **HTTP Metrics (RED)**: Request/error rates by endpoint, latency percentiles
- **MCP Tools**: Call volume, error rates, execution duration by tool
- **Nextcloud API**: API calls/latency by app, retry patterns
- **OAuth & Authentication**: Token validations, exchanges, cache hit rate
- **Dependencies & Health**: Status for Nextcloud/Qdrant/Keycloak/Unstructured
- **Vector Sync**: Processing throughput, queue depth, Qdrant operations
### Helm Chart Integration:
- Added dashboard-configmap.yaml template for automatic provisioning
- Configured Grafana sidecar auto-discovery (label: grafana_dashboard="1")
- Added dashboards configuration section in values.yaml (opt-in)
- Updated Chart.yaml with dashboard annotations
- Enhanced NOTES.txt with dashboard deployment instructions
- Comprehensive documentation in dashboards/README.md
Dashboard supports dynamic filtering via variables:
- datasource: Prometheus data source selection
- namespace: Filter by Kubernetes namespace
- pod: Multi-select pod filtering
- interval: Query interval (1m/5m/10m/30m/1h)
## Part 2: Vector Sync Metric Instrumentation
Implemented metric recording throughout vector sync pipeline:
### metrics.py:
Added convenience functions:
- record_vector_sync_scan() - Track documents per scan
- record_vector_sync_processing() - Track processing duration/status
- record_qdrant_operation() - Track database operations
- update_vector_sync_queue_size() - Track queue depth
### scanner.py:
- Record number of documents found in each scan
- Enables monitoring of scan throughput
### processor.py:
- Record processing duration for each document
- Track success/failure status with timing
- Record Qdrant upsert/delete operations
- Handle all code paths (success, deletion, error)
### semantic.py:
- Wrap Qdrant query_points with try/except
- Record search operation success/failure
## Metrics Exposed:
- mcp_vector_sync_documents_scanned_total
- mcp_vector_sync_documents_processed_total{status}
- mcp_vector_sync_processing_duration_seconds (histogram)
- mcp_vector_sync_queue_size (gauge)
- mcp_qdrant_operations_total{operation,status}
This enables monitoring of:
- Scan and processing throughput
- Processing latency (P50/P95/P99)
- Error rates for processing and Qdrant operations
- Queue depth trends
- Complete observability of vector sync pipeline
## Testing:
Verified locally that metrics are recorded correctly:
- 36 documents scanned
- 3 documents processed (avg 7.5s each)
- 3 successful Qdrant upsert operations
- Search operations tracked
## Deployment:
Enable dashboard provisioning in Helm values:
```yaml
dashboards:
enabled: true
grafanaFolder: "Nextcloud MCP"
```
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-13 11:49:20 +01:00
github-actions[bot]
747d297008
bump: version 0.32.0 → 0.32.1
2025-11-12 02:16:57 +00:00
github-actions[bot]
49a9dd43c6
bump: version 0.31.1 → 0.32.0
2025-11-11 23:54:43 +00:00
github-actions[bot]
ce666934f2
bump: version 0.31.0 → 0.31.1
2025-11-10 22:21:48 +00:00
github-actions[bot]
f44bf3e8f2
bump: version 0.30.0 → 0.31.0
2025-11-10 07:02:49 +00:00
github-actions[bot]
126b5a7626
bump: version 0.29.2 → 0.30.0
2025-11-10 02:50:11 +00:00
github-actions[bot]
a0576aa9a2
bump: version 0.29.1 → 0.29.2
2025-11-09 18:28:34 +00:00
renovate-bot-cbcoutinho[bot] and GitHub
de4f1032aa
chore(deps): update helm release qdrant to v1
2025-11-09 17:08:13 +00:00
renovate-bot-cbcoutinho[bot] and GitHub
3147180ccd
chore(deps): update helm release ollama to v1.34.0
2025-11-09 11:08:18 +00:00
github-actions[bot]
7772b1ac2e
bump: version 0.29.0 → 0.29.1
2025-11-09 08:54:26 +00:00
github-actions[bot]
af96378cb6
bump: version 0.28.0 → 0.29.0
2025-11-09 08:29:53 +00:00
github-actions[bot]
ae81f0334e
bump: version 0.27.3 → 0.28.0
2025-11-09 08:04:06 +00:00
github-actions[bot]
8f0f989c6d
bump: version 0.27.2 → 0.27.3
2025-11-09 06:52:31 +00:00
github-actions[bot]
137dc80075
bump: version 0.27.1 → 0.27.2
2025-11-09 06:45:44 +00:00
Chris Coutinho and Claude
725ac65e6a
fix(helm): update Qdrant dependency condition to match new mode structure
...
The Qdrant subchart was being included by default even in memory/persistent
modes. Changed the dependency condition from `qdrant.enabled` to
`qdrant.networkMode.deploySubchart` to align with the three-mode structure.
Now the Qdrant subchart is ONLY deployed when:
- qdrant.mode: "network"
- qdrant.networkMode.deploySubchart: true
Verified all three modes:
- Memory mode (:memory:): No subchart, QDRANT_LOCATION=:memory:
- Persistent mode (path): No subchart, QDRANT_LOCATION=/app/data/qdrant, PVC created
- Network mode (subchart): Qdrant subchart deployed, QDRANT_URL=http://...:6333
- Network mode (external): No subchart, QDRANT_URL=<external-url>
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-09 07:45:06 +01:00
github-actions[bot]
f51edff25d
bump: version 0.27.0 → 0.27.1
2025-11-09 06:22:00 +00:00
github-actions[bot]
538bbc375e
bump: version 0.26.1 → 0.27.0
2025-11-09 06:15:27 +00:00
Chris Coutinho and Claude
e32c8f4aec
feat: add optional vector database and semantic search to helm chart
...
Add support for deploying Qdrant vector database and Ollama embedding
service as optional helm chart dependencies. Enables semantic search
capabilities for Nextcloud content with flexible deployment options.
Chart Dependencies:
- Add Qdrant v0.9.0 from qdrant/qdrant-helm (conditional)
- Add Ollama v1.33.0 from otwld/ollama-helm (conditional)
- Both dependencies only deploy when enabled
Configuration (values.yaml):
- vectorSync: Background sync settings (interval, workers, queue size)
- qdrant: Subchart config with persistence, resources, clustering
- ollama: Subchart config with model pull, persistence, resources
- Support for external Ollama via ollama.url (no subchart deployment)
- openai: Alternative embedding provider (OpenAI or compatible API)
Environment Variables (deployment.yaml):
- VECTOR_SYNC_* variables when vectorSync.enabled
- QDRANT_URL, QDRANT_COLLECTION when qdrant.enabled
- OLLAMA_BASE_URL, OLLAMA_EMBEDDING_MODEL when ollama enabled or URL set
- OPENAI_API_KEY when openai.enabled
Documentation:
- README: New "Vector Search & Semantic Capabilities" section
- README: Example 5 showing three deployment patterns
- NOTES.txt: Conditional guidance when vector features enabled
- Secret template for OpenAI API key management
All features disabled by default for backward compatibility.
Tested with helm template and helm lint.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-09 00:03:51 +01:00
github-actions[bot]
4ceaf45ffd
bump: version 0.26.0 → 0.26.1
2025-11-08 03:59:28 +00:00
github-actions[bot]
218f0bd366
bump: version 0.25.0 → 0.26.0
2025-11-08 03:48:50 +00:00
github-actions[bot]
77e491beea
bump: version 0.24.1 → 0.25.0
2025-11-05 23:02:25 +00:00
github-actions[bot]
7052c19de0
bump: version 0.24.0 → 0.24.1
2025-11-04 12:28:13 +00:00
github-actions[bot]
f587a4e31f
bump: version 0.23.0 → 0.24.0
2025-11-04 10:27:39 +00:00
github-actions[bot]
02a2c4a16f
bump: version 0.22.7 → 0.23.0
2025-11-03 01:48:39 +00:00
github-actions[bot]
5259658458
bump: version 0.22.6 → 0.22.7
2025-10-29 11:18:41 +00:00
github-actions[bot]
e1aca04aff
bump: version 0.22.5 → 0.22.6
2025-10-29 10:57:44 +00:00
github-actions[bot]
e647c87dd8
bump: version 0.22.4 → 0.22.5
2025-10-29 10:54:54 +00:00
github-actions[bot]
202058bdc8
bump: version 0.22.3 → 0.22.4
2025-10-29 10:44:11 +00:00
Chris Coutinho
c312911538
fix(helm): Update helm version with release
2025-10-29 11:43:30 +01:00
Chris Coutinho
e602684743
fix(helm): Update helm version with release
2025-10-29 11:43:02 +01:00
github-actions[bot]
8221046d8a
bump: version 0.22.2 → 0.22.3
2025-10-29 10:35:58 +00:00
Chris Coutinho
3e45b6ca25
fix(helm): Update helm version with release
2025-10-29 11:34:58 +01:00
Chris Coutinho
670188f9e4
fix(helm): Update helm version with release
2025-10-29 11:29:59 +01:00
Chris Coutinho
b11c3ddfb6
build: Rename /helm -> /charts
2025-10-29 10:30:48 +01:00