Changes between Version 6 and Version 7 of OperationalMonitoring/ExternalCheckStore


Ignore:
Timestamp:
04/24/14 14:02:30 (10 years ago)
Author:
rirwin@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OperationalMonitoring/ExternalCheckStore

    v6 v7  
    5757== Example time-series data calls ==
    5858
    59 Example call:
     59=== Aggregate is_available Check ===
     60
     61Here is an example call to the external check datastore for checking if the different aggregates are available:
    6062{{{
    6163https://externalcheckdatastore.gpolab.bbn.com/data/?q={"filters":{"eventType": ["ops_monitoring:is_available"],"ts":{"gte":1391192225475202,"lt":1391192225480000},"obj":{"type":"aggregate","id":["gpo-ig","utah-ig","rci-eg"]}}}}
     
    116118]
    117119}}}
     120
     121=== Dataplane Connectivity Check ===
     122
     123Here is an example call to the external check datastore for checking dataplane ping times in a monitoring experiment:
     124
     125{{{
     126https://externalcheckdatastore.gpolab.bbn.com/data/?q={"filters":{"eventType": ["ops_monitoring:ping_rtt_ms"],"ts":{"gte":1391192225475202,"lt":1391192225480000},"obj":{"type":"experiment","id":["missouri-ig_to_gpo-ig","utah-ig_to_gpo-ig","missouri-ig_to_utah-ig"]}}}}
     127}}}
     128
     129{{{
     130[
     131 {
     132   "$schema": "http://www.gpolab.bbn.com/monitoring/schema/20140131/data#",
     133    "id": "ping_rtt_ms:missouri-ig_to_gpo-ig",
     134    "subject": "https://datastore.externalchecks.geni.net/info/experiment/missouri-ig_to_gpo-ig",
     135    "eventType": "ops_monitoring:ping_rtt_ms",
     136    "description": "RTT for ping between aggregates in the dataplane",
     137    "units": "milliseconds",
     138    "tsdata": [
     139      { "ts": 1391198716651283, "v": 50.6 },
     140      { "ts": 1391198776651284, "v": 52.1 },
     141      { "ts": 1391198836651284, "v": 40.6 },
     142      { "ts": 1391198896651284, "v": 154.8 },
     143      { "ts": 1391198956651284, "v": 120.9 },
     144      { "ts": 1391199016651285, "v": 120.0 }
     145    ]
     146 }
     147,
     148 {
     149   "$schema": "http://www.gpolab.bbn.com/monitoring/schema/20140131/data#",
     150    "id": "ping_rtt_ms:utah-ig_to_gpo-ig",
     151    "subject": "https://datastore.externalchecks.geni.net/info/experiment/utah-ig_to_gpo-ig",
     152    "eventType": "ops_monitoring:ping_rtt_ms",
     153    "description": "RTT for ping between aggregates in the dataplane",
     154    "units": "milliseconds",
     155    "tsdata": [
     156      { "ts": 1391198716651283, "v": 50.6 },
     157      { "ts": 1391198776651284, "v": 52.1 },
     158      { "ts": 1391198836651284, "v": 40.6 },
     159      { "ts": 1391198896651284, "v": 154.8 },
     160      { "ts": 1391198956651284, "v": 120.9 },
     161      { "ts": 1391199016651285, "v": 120.0 }
     162    ]
     163 }
     164,
     165{
     166   "$schema": "http://www.gpolab.bbn.com/monitoring/schema/20140131/data#",
     167    "id": "ping_rtt_ms:missouri-ig_to_utah-ig",
     168    "subject": "https://datastore.externalchecks.geni.net/info/experiment/missouri-ig_to_utah-ig",
     169    "eventType": "ops_monitoring:ping_rtt_ms",
     170    "description": "RTT for ping between aggregates in the dataplane",
     171    "units": "milliseconds",
     172    "tsdata": [
     173      { "ts": 1391198716651283, "v": 50.6 },
     174      { "ts": 1391198776651284, "v": 52.1 },
     175      { "ts": 1391198836651284, "v": 40.6 },
     176      { "ts": 1391198896651284, "v": 154.8 },
     177      { "ts": 1391198956651284, "v": 120.9 },
     178      { "ts": 1391199016651285, "v": 120.0 }
     179    ]
     180 }
     181]
     182}}}
     183