You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following structures are used in multiple fields:
365
425
366
426
```
@@ -387,6 +447,7 @@ The following structures are used in multiple fields:
387
447
```
388
448
389
449
Response:
450
+
390
451
```
391
452
{
392
453
"id": <int>,
@@ -433,9 +494,9 @@ The `ipVersion` value specifies whether the corresponding check will be
433
494
performed using IPv4 or IPv6. The "Any" value indicates that IPv6 should
434
495
be used, falling back to IPv4 if that's not available.
435
496
436
-
The `basicMetricsOnly` value specifies which set of metrics probes will collect. This is set to `true` by default in the UI which results in less active series or can be set to `false` for the advanced set. We maintain a [full list of metrics](https://github.com/grafana/synthetic-monitoring-agent/tree/main/internal/scraper/testdata) collected for each.
497
+
The `basicMetricsOnly` value specifies which set of metrics probes will collect. This is set to `true` by default in the UI which results in less active series or can be set to `false` for the advanced set. We maintain a [full list of metrics](https://github.com/grafana/synthetic-monitoring-agent/tree/main/internal/scraper/testdata) collected for each.
437
498
438
-
The `alertSensitivity` value defaults to `none` if there are no alerts or can be set to `low`, `medium`, or `high` to correspond to the check [alert levels](https://grafana.com/docs/grafana-cloud/synthetic-monitoring/synthetic-monitoring-alerting/).
499
+
The `alertSensitivity` value defaults to `none` if there are no alerts or can be set to `low`, `medium`, or `high` to correspond to the check [alert levels](https://grafana.com/docs/grafana-cloud/synthetic-monitoring/synthetic-monitoring-alerting/).
439
500
440
501
The maximum number of labels that can be specified per check is 5. These
441
502
are applied, along with the probe-specific labels, to the outgoing
@@ -470,6 +531,7 @@ Authorization required: yes
470
531
Content-type: application/json; charset=utf-8
471
532
472
533
Body:
534
+
473
535
```
474
536
{
475
537
"id": <int>,
@@ -480,7 +542,7 @@ Body:
480
542
"timeout": <int>,
481
543
"enabled": <boolean>,
482
544
"alertSensitivity": <string>,
483
-
"basicMetricsOnly": <boolean>,
545
+
"basicMetricsOnly": <boolean>,
484
546
"probes": [
485
547
<int>,
486
548
...
@@ -497,6 +559,7 @@ Body:
497
559
```
498
560
499
561
Response:
562
+
500
563
```
501
564
{
502
565
"id": <int>,
@@ -507,7 +570,7 @@ Response:
507
570
"timeout": <int>,
508
571
"enabled": <boolean>,
509
572
"alertSensitivity": <string>,
510
-
"basicMetricsOnly": <boolean>,
573
+
"basicMetricsOnly": <boolean>,
511
574
"probes": [
512
575
<int>,
513
576
...
@@ -538,6 +601,7 @@ Method: DELETE
538
601
Authorization required: yes
539
602
540
603
Response:
604
+
541
605
```
542
606
{
543
607
"msg": "check deleted",
@@ -556,6 +620,7 @@ Method: GET
556
620
Authorization required: yes
557
621
558
622
Response:
623
+
559
624
```
560
625
[
561
626
<check>,
@@ -574,6 +639,7 @@ Method: GET
574
639
Authorization required: yes
575
640
576
641
Response:
642
+
577
643
```
578
644
{
579
645
"id": <int>,
@@ -584,7 +650,7 @@ Response:
584
650
"timeout": <int>,
585
651
"enabled": <boolean>,
586
652
"alertSensitivity": <string>,
587
-
"basicMetricsOnly": <boolean>,
653
+
"basicMetricsOnly": <boolean>,
588
654
"probes": [
589
655
<int>,
590
656
...
@@ -604,7 +670,7 @@ Response:
604
670
605
671
Description:
606
672
607
-
Get a specific check, that matches the `id` supplied in the URL parameter.
673
+
Get a specific check, that matches the `id` supplied in the URL parameter.
608
674
609
675
### /api/v1/check/query?job=:job:&target=:target:
610
676
@@ -613,6 +679,7 @@ Method: GET
613
679
Authorization required: yes
614
680
615
681
Response:
682
+
616
683
```
617
684
{
618
685
"id": <int>,
@@ -623,7 +690,7 @@ Response:
623
690
"timeout": <int>,
624
691
"enabled": <boolean>,
625
692
"alertSensitivity": <string>,
626
-
"basicMetricsOnly": <boolean>,
693
+
"basicMetricsOnly": <boolean>,
627
694
"probes": [
628
695
<int>,
629
696
...
@@ -643,7 +710,7 @@ Response:
643
710
644
711
Description:
645
712
646
-
Get a specific check, that matches the `job` and `target` supplied in the query parameters.
713
+
Get a specific check, that matches the `job` and `target` supplied in the query parameters.
0 commit comments