generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2536 from digma-ai/report-endpoints
Report endpoints
- Loading branch information
Showing
9 changed files
with
321 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...n/kotlin/org/digma/intellij/plugin/ui/dashboard/reports/model/SetEndpointIssuesMessage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.digma.intellij.plugin.ui.dashboard.reports.model | ||
|
||
import com.fasterxml.jackson.annotation.JsonRawValue | ||
import org.digma.intellij.plugin.ui.jcef.JCEFGlobalConstants | ||
|
||
data class SetEndpointIssuesMessage(@JsonRawValue val payload: String) { | ||
val type = JCEFGlobalConstants.REQUEST_MESSAGE_TYPE | ||
val action = "DASHBOARD/SET_ENDPOINTS_ISSUES" | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/kotlin/org/digma/intellij/plugin/ui/dashboard/reports/model/SetEndpointsMessage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.digma.intellij.plugin.ui.dashboard.reports.model | ||
|
||
import com.fasterxml.jackson.annotation.JsonRawValue | ||
import org.digma.intellij.plugin.ui.jcef.JCEFGlobalConstants | ||
|
||
data class SetEndpointsMessage(@JsonRawValue val payload: String) { | ||
val type = JCEFGlobalConstants.REQUEST_MESSAGE_TYPE | ||
val action = "DASHBOARD/SET_SERVICE_ENDPOINTS" | ||
} |
9 changes: 9 additions & 0 deletions
9
...ain/kotlin/org/digma/intellij/plugin/ui/dashboard/reports/model/SetEnvironmentsMessage.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.digma.intellij.plugin.ui.dashboard.reports.model | ||
|
||
import com.fasterxml.jackson.annotation.JsonRawValue | ||
import org.digma.intellij.plugin.ui.jcef.JCEFGlobalConstants | ||
|
||
data class SetEnvironmentsMessage(@JsonRawValue val payload: String) { | ||
val type = JCEFGlobalConstants.REQUEST_MESSAGE_TYPE | ||
val action = "DASHBOARD/SET_SERVICE_ENVIRONMENTS" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.