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
Axoniq Platform superpowers your Axon Framework application with advanced monitoring and enabling easy access to actions
6
6
within the framework.
@@ -16,40 +16,100 @@ For actual configuration, please consult the setup instructions that will be pro
16
16
17
17
### application properties
18
18
19
-
*`axoniq.console.credentials` - this need to be set, otherwise the auto configuration won't do anything. The correct
20
-
value can be retrieved via the AxonIQ console UI.
19
+
All properties use the `axoniq.platform` prefix.
20
+
21
+
*`axoniq.platform.credentials` - this needs to be set, otherwise the auto configuration won't do anything. The correct
22
+
value can be retrieved via the AxonIQ Console UI.
23
+
*`axoniq.platform.application-name` - the display name of the application in the UI. Defaults to the Spring Boot
24
+
application name.
25
+
*`axoniq.platform.host` / `axoniq.platform.port` - the host and port to connect to. Defaults to
26
+
`framework.console.axoniq.io:7000`.
27
+
*`axoniq.platform.secure` - whether the connection uses SSL/TLS. Defaults to `true`.
28
+
*`axoniq.platform.dlq-mode` - controls how much Dead Letter Queue data is exposed to the Console.
29
+
One of `NONE` (default), `MASKED`, `LIMITED`, `FULL`. See the [Data sent to AxonIQ](#data-sent-to-axoniq) section.
30
+
*`axoniq.platform.dlq-diagnostics-whitelist` - when `dlq-mode=LIMITED`, the list of diagnostic keys that are included.
31
+
*`axoniq.platform.domain-event-access-mode` - controls how much domain event data is exposed to the Console.
32
+
One of `NONE` (default), `PREVIEW_PAYLOAD_ONLY`, `LOAD_DOMAIN_STATE_ONLY`, `FULL`.
33
+
*`axoniq.platform.max-concurrent-management-tasks` - bounds the number of user-initiated operations (e.g. DLQ
34
+
processing) that run concurrently. Defaults to `5`.
35
+
*`axoniq.platform.initial-delay` - initial delay in milliseconds before the client tries to connect. Defaults to `0`.
21
36
22
37
## Data sent to AxonIQ
23
38
24
-
Axoniq Platform is an [AxonIQ](https://axoniq.io) SaaS product. Your application will periodically, or upon request, send
25
-
information to the servers of AxonIQ. Please check our [Privacy Policy](https://www.axoniq.io/privacy-policy) and [Data Processing Addendum](https://lp.axoniq.io/axoniq-data-processing-addendum) for the
26
-
measures we implemented to protect your data.
39
+
Axoniq Platform is an [Axoniq](https://axoniq.io) SaaS product. Your application will periodically, or upon request, send
40
+
information to the servers of AxonIQ. Please check our [Privacy Policy](https://www.axoniq.io/legal/privacy-policy) and
41
+
[Data Processing Addendum](https://lp.axoniq.io/axoniq-data-processing-addendum) for the measures we implemented to
42
+
protect your data.
43
+
44
+
Reporting intervals are controlled by the server and can be paused remotely. The following categories of data are sent:
45
+
46
+
### Periodic telemetry
47
+
48
+
-**Event processor status** - name, token store identifier, processor mode, running and error state, segment count and
1. Run `mvn versions:set -DnewVersion=1.x.x` to update the version in the pom files
49
111
2. Commit and push the change
50
-
3. Close the milestone on GitHub
51
-
4. Wait for the release to be created on Github and publish it
52
-
5. A Github action will automatically release this to Maven Central
53
-
6. Run `mvn versions:set -DnewVersion=1.x.x-SNAPSHOT`
54
-
7. Commit and push the new development version
55
-
8. Wait for the version to become available [here](https://repo1.maven.org/maven2/io/axoniq/console/console-framework-client-parent/). Can take minutes, can take hours.
112
+
3. Wait for the release to be on Maven central and publish it
113
+
4. Create a Release at the current commit
114
+
5. Run `mvn versions:set -DnewVersion=1.x.x-SNAPSHOT`
0 commit comments