既存のスタックをそのまま使いながら、NEXORAで一元管理。あなたのチームが毎日使うツールを、すべてつなぎます。
ワンクリックで接続。ビルトインコネクタはエンジニア不要、セットアップは数分で完了します。
ビルトインコネクタにないシステムも、REST API・Webhook・公式SDKで柔軟に接続できます。開発者向けドキュメントも整備されており、数時間で本番稼働できます。
# データポイントを送信する curl -X POST https://api.nexora.io/v1/ingest \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d { "source": "my_custom_app", "metric": "active_users", "value": 1284, "timestamp": "2025-06-04T09:00:00Z" } # レスポンス { "status": "ok", "id": "dp_01jw3x9kp4q8tz", "ingested": true }
# Webhook エンドポイント登録 curl -X POST https://api.nexora.io/v1/webhooks \ -H "Authorization: Bearer YOUR_API_KEY" \ -d { "url": "https://your-app.com/nexora/hook", "events": [ "alert.triggered", "report.ready", "anomaly.detected" ] } # NEXORAからのイベントペイロード例 { "event": "alert.triggered", "rule": "MRR低下検知", "value": 2840000, "ts": "2025-06-04T09:12:00Z" }
from nexora import NexoraClient # クライアント初期化 client = NexoraClient( api_key="YOUR_API_KEY" ) # データポイントを送信 client.ingest( source="my_app", metrics={ "active_users": 1284, "revenue_jpy": 4200000, "churn_rate": 0.024 } ) # ダッシュボードクエリ result = client.query( dashboard_id="dash_01jw3", date_range="last_30d" ) print(result.to_dataframe())