Skip to content

Commit 9f83ac6

Browse files
authored
Merge pull request #19 from sematext/develop
Develop
2 parents 5a9d242 + 3587120 commit 9f83ac6

File tree

76 files changed

+4653
-1001
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+4653
-1001
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,18 @@
2121

2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
24+
25+
# build files
26+
**/target
27+
target
28+
.gradle
29+
build
30+
.project
31+
.vscode
32+
.settings
33+
.classpath
34+
bin
35+
36+
37+
# exclude jar for gradle wrapper
38+
!gradle/wrapper/*.jar
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Tue Jun 30 03:55:03 NZST 2020
2-
gradle.version=4.4.1
1+
#Tue Oct 20 01:23:54 NZDT 2020
2+
gradle.version=6.3
-18.3 KB
Binary file not shown.

README.md

+62-41
Large diffs are not rendered by default.

docs/AlertNotificationRequest.md

+6-9
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,9 @@
22
# AlertNotificationRequest
33

44
## Properties
5-
Name | Type | Description | Notes
6-
------------ | ------------- | ------------- | -------------
7-
**defaultInterval** | **Long** | | [optional]
8-
**end** | **String** | End time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional]
9-
**interval** | **String** | | [optional]
10-
**start** | **String** | Start time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional]
11-
12-
13-
5+
| Name | Type | Description | Notes |
6+
| ------------------- | ---------- | --------------------------------------------------------------------------------------------------------------- | ---------- |
7+
| **defaultInterval** | **Long** | | [optional] |
8+
| **end** | **String** | End time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional] |
9+
| **interval** | **String** | | [optional] |
10+
| **start** | **String** | Start time of interval. Can be expressed as timestamp in milliseconds or UTC date in yyyy-MM-dd HH:mm:ss format | [optional] |

docs/AlertNotificationsApi.md

+11-12
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
All URIs are relative to *https://localhost*
44

5-
Method | HTTP request | Description
6-
------------- | ------------- | -------------
7-
[**getAlertNotificationsForAppUsingPOST1**](AlertNotificationsApi.md#getAlertNotificationsForAppUsingPOST1) | **POST** /users-web/api/v3/apps/{appId}/notifications/alerts | Get alert notifications for an app
8-
[**getAlertNotificationsForUserUsingPOST**](AlertNotificationsApi.md#getAlertNotificationsForUserUsingPOST) | **POST** /users-web/api/v3/notifications/alerts | Get alert notifications for a user
5+
| Method | HTTP request | Description |
6+
| ----------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------ | ---------------------------------- |
7+
| [**getAlertNotificationsForAppUsingPOST1**](AlertNotificationsApi.md#getAlertNotificationsForAppUsingPOST1) | **POST** /users-web/api/v3/apps/{appId}/notifications/alerts | Get alert notifications for an app |
8+
| [**getAlertNotificationsForUserUsingPOST**](AlertNotificationsApi.md#getAlertNotificationsForUserUsingPOST) | **POST** /users-web/api/v3/notifications/alerts | Get alert notifications for a user |
99

1010

1111
<a name="getAlertNotificationsForAppUsingPOST1"></a>
@@ -47,10 +47,10 @@ try {
4747

4848
### Parameters
4949

50-
Name | Type | Description | Notes
51-
------------- | ------------- | ------------- | -------------
52-
**appId** | **Long**| appId |
53-
**timeInterval** | [**AlertNotificationRequest**](AlertNotificationRequest.md)| Time Interval |
50+
| Name | Type | Description | Notes |
51+
| ---------------- | ----------------------------------------------------------- | ------------- | ----- |
52+
| **appId** | **Long** | appId |
53+
| **timeInterval** | [**AlertNotificationRequest**](AlertNotificationRequest.md) | Time Interval |
5454

5555
### Return type
5656

@@ -103,9 +103,9 @@ try {
103103

104104
### Parameters
105105

106-
Name | Type | Description | Notes
107-
------------- | ------------- | ------------- | -------------
108-
**timeInterval** | [**AlertNotificationRequest**](AlertNotificationRequest.md)| Time Interval |
106+
| Name | Type | Description | Notes |
107+
| ---------------- | ----------------------------------------------------------- | ------------- | ----- |
108+
| **timeInterval** | [**AlertNotificationRequest**](AlertNotificationRequest.md) | Time Interval |
109109

110110
### Return type
111111

@@ -119,4 +119,3 @@ Name | Type | Description | Notes
119119

120120
- **Content-Type**: application/json
121121
- **Accept**: application/json
122-

docs/AlertRule.md

+58-61
Original file line numberDiff line numberDiff line change
@@ -2,68 +2,65 @@
22
# AlertRule
33

44
## Properties
5-
Name | Type | Description | Notes
6-
------------ | ------------- | ------------- | -------------
7-
**accountEmail** | **String** | | [optional]
8-
**allowedAppTypes** | **List&lt;Long&gt;** | | [optional]
9-
**analyzingTime** | **String** | | [optional]
10-
**appDisplayState** | **String** | | [optional]
11-
**appId** | **Long** | | [optional]
12-
**appName** | **String** | | [optional]
13-
**appState** | **String** | | [optional]
14-
**appToken** | **String** | | [optional]
15-
**appType** | **String** | | [optional]
16-
**backToNormalNeeded** | **Boolean** | | [optional]
17-
**chartKey** | **String** | | [optional]
18-
**color** | **String** | | [optional]
19-
**creatorEmail** | **String** | | [optional]
20-
**defaultAggType** | **String** | | [optional]
21-
**description** | **String** | | [optional]
22-
**disallowedAppTypes** | **List&lt;Long&gt;** | | [optional]
23-
**enabled** | **Boolean** | | [optional]
24-
**estimateOperation** | [**EstimateOperationEnum**](#EstimateOperationEnum) | | [optional]
25-
**estimateValue** | **Double** | | [optional]
26-
**filterValues** | **String** | | [optional]
27-
**filterValuesObj** | [**List&lt;FilterValue&gt;**](FilterValue.md) | | [optional]
28-
**ignoreRegularEventsEnabled** | **Boolean** | | [optional]
29-
**integrations** | **String** | | [optional]
30-
**lastDataReceivedDate** | **Long** | | [optional]
31-
**lastSent** | **Long** | | [optional]
32-
**lastTriggered** | **Long** | | [optional]
33-
**metadata** | **Object** | | [optional]
34-
**metricKey** | **String** | | [optional]
35-
**metricLabel** | **String** | | [optional]
36-
**minDelayBetweenNotificationsInMinutes** | **String** | | [optional]
37-
**name** | **String** | | [optional]
38-
**notificationEmails** | **List&lt;String&gt;** | | [optional]
39-
**notificationIntegrations** | [**List&lt;NotificationIntegration&gt;**](NotificationIntegration.md) | | [optional]
40-
**notificationsEnabled** | **Boolean** | | [optional]
41-
**query** | **String** | | [optional]
42-
**reportName** | **String** | | [optional]
43-
**ruleKey** | **Long** | | [optional]
44-
**ruleType** | **String** | | [optional]
45-
**runbook** | **String** | | [optional]
46-
**savedQueryId** | **Long** | | [optional]
47-
**schedule** | [**List&lt;AlertRuleScheduleWeekdayDto&gt;**](AlertRuleScheduleWeekdayDto.md) | | [optional]
48-
**sematextService** | **String** | | [optional]
49-
**sendToEmail** | **String** | | [optional]
50-
**timezone** | **String** | | [optional]
51-
**useOnlyAlertRuleIntegrations** | **Boolean** | | [optional]
52-
**userPermissions** | [**UserPermissions**](UserPermissions.md) | | [optional]
53-
**valueColumnName** | **String** | | [optional]
54-
**valueName** | **String** | | [optional]
5+
| Name | Type | Description | Notes |
6+
| ----------------------------------------- | ----------------------------------------------------------------------------- | ----------- | ---------- |
7+
| **accountEmail** | **String** | | [optional] |
8+
| **allowedAppTypes** | **List&lt;Long&gt;** | | [optional] |
9+
| **analyzingTime** | **String** | | [optional] |
10+
| **appDisplayState** | **String** | | [optional] |
11+
| **appId** | **Long** | | [optional] |
12+
| **appName** | **String** | | [optional] |
13+
| **appState** | **String** | | [optional] |
14+
| **appToken** | **String** | | [optional] |
15+
| **appType** | **String** | | [optional] |
16+
| **backToNormalNeeded** | **Boolean** | | [optional] |
17+
| **chartKey** | **String** | | [optional] |
18+
| **color** | **String** | | [optional] |
19+
| **creatorEmail** | **String** | | [optional] |
20+
| **defaultAggType** | **String** | | [optional] |
21+
| **description** | **String** | | [optional] |
22+
| **disallowedAppTypes** | **List&lt;Long&gt;** | | [optional] |
23+
| **enabled** | **Boolean** | | [optional] |
24+
| **estimateOperation** | [**EstimateOperationEnum**](#EstimateOperationEnum) | | [optional] |
25+
| **estimateValue** | **Double** | | [optional] |
26+
| **filterValues** | **String** | | [optional] |
27+
| **filterValuesObj** | [**List&lt;FilterValue&gt;**](FilterValue.md) | | [optional] |
28+
| **ignoreRegularEventsEnabled** | **Boolean** | | [optional] |
29+
| **integrations** | **String** | | [optional] |
30+
| **lastDataReceivedDate** | **Long** | | [optional] |
31+
| **lastSent** | **Long** | | [optional] |
32+
| **lastTriggered** | **Long** | | [optional] |
33+
| **metadata** | **Object** | | [optional] |
34+
| **metricKey** | **String** | | [optional] |
35+
| **metricLabel** | **String** | | [optional] |
36+
| **minDelayBetweenNotificationsInMinutes** | **String** | | [optional] |
37+
| **name** | **String** | | [optional] |
38+
| **notificationEmails** | **List&lt;String&gt;** | | [optional] |
39+
| **notificationIntegrations** | [**List&lt;NotificationIntegration&gt;**](NotificationIntegration.md) | | [optional] |
40+
| **notificationsEnabled** | **Boolean** | | [optional] |
41+
| **query** | **String** | | [optional] |
42+
| **reportName** | **String** | | [optional] |
43+
| **ruleKey** | **Long** | | [optional] |
44+
| **ruleType** | **String** | | [optional] |
45+
| **runbook** | **String** | | [optional] |
46+
| **savedQueryId** | **Long** | | [optional] |
47+
| **schedule** | [**List&lt;AlertRuleScheduleWeekdayDto&gt;**](AlertRuleScheduleWeekdayDto.md) | | [optional] |
48+
| **sematextService** | **String** | | [optional] |
49+
| **sendToEmail** | **String** | | [optional] |
50+
| **timezone** | **String** | | [optional] |
51+
| **useOnlyAlertRuleIntegrations** | **Boolean** | | [optional] |
52+
| **userPermissions** | [**UserPermissions**](UserPermissions.md) | | [optional] |
53+
| **valueColumnName** | **String** | | [optional] |
54+
| **valueName** | **String** | | [optional] |
5555

5656

5757
<a name="EstimateOperationEnum"></a>
5858
## Enum: EstimateOperationEnum
59-
Name | Value
60-
---- | -----
61-
LESS | &quot;LESS&quot;
62-
MORE | &quot;MORE&quot;
63-
EQUAL | &quot;EQUAL&quot;
64-
UN_EQUAL | &quot;UN_EQUAL&quot;
65-
LESS_OR_EQUAL | &quot;LESS_OR_EQUAL&quot;
66-
MORE_OR_EQUAL | &quot;MORE_OR_EQUAL&quot;
67-
68-
69-
59+
| Name | Value |
60+
| ------------- | ------------------------- |
61+
| LESS | &quot;LESS&quot; |
62+
| MORE | &quot;MORE&quot; |
63+
| EQUAL | &quot;EQUAL&quot; |
64+
| UN_EQUAL | &quot;UN_EQUAL&quot; |
65+
| LESS_OR_EQUAL | &quot;LESS_OR_EQUAL&quot; |
66+
| MORE_OR_EQUAL | &quot;MORE_OR_EQUAL&quot; |

docs/AlertRuleScheduleTimeRangeDto.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
# AlertRuleScheduleTimeRangeDto
33

44
## Properties
5-
Name | Type | Description | Notes
6-
------------ | ------------- | ------------- | -------------
7-
**end** | **String** | | [optional]
8-
**start** | **String** | | [optional]
9-
10-
11-
5+
| Name | Type | Description | Notes |
6+
| --------- | ---------- | ----------- | ---------- |
7+
| **end** | **String** | | [optional] |
8+
| **start** | **String** | | [optional] |

docs/AlertRuleScheduleWeekdayDto.md

+7-10
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22
# AlertRuleScheduleWeekdayDto
33

44
## Properties
5-
Name | Type | Description | Notes
6-
------------ | ------------- | ------------- | -------------
7-
**day** | **String** | | [optional]
8-
**index** | **Integer** | | [optional]
9-
**intervals** | [**List&lt;AlertRuleScheduleTimeRangeDto&gt;**](AlertRuleScheduleTimeRangeDto.md) | | [optional]
10-
**label** | **String** | | [optional]
11-
**type** | **String** | | [optional]
12-
13-
14-
5+
| Name | Type | Description | Notes |
6+
| ------------- | --------------------------------------------------------------------------------- | ----------- | ---------- |
7+
| **day** | **String** | | [optional] |
8+
| **index** | **Integer** | | [optional] |
9+
| **intervals** | [**List&lt;AlertRuleScheduleTimeRangeDto&gt;**](AlertRuleScheduleTimeRangeDto.md) | | [optional] |
10+
| **label** | **String** | | [optional] |
11+
| **type** | **String** | | [optional] |

0 commit comments

Comments
 (0)