Skip to content

Commit

Permalink
refactor: update intelligence module change run.mone to org.apache (a…
Browse files Browse the repository at this point in the history
…pache#466)

Co-authored-by: EricDing <[email protected]>
  • Loading branch information
psxjoy and sadadw1 authored Sep 13, 2024
1 parent 37a7ddd commit ea5385a
Show file tree
Hide file tree
Showing 19 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion ozhera-intelligence/ozhera-intelligence-domain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>ozhera-intelligence</artifactId>
<version>1.0.0</version>
</parent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.domain.rootanalysis;
package org.apache.ozhera.intelligence.domain.rootanalysis;

import lombok.Builder;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.domain.rootanalysis;
package org.apache.ozhera.intelligence.domain.rootanalysis;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.domain.rootanalysis;
package org.apache.ozhera.intelligence.domain.rootanalysis;

import lombok.Builder;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.domain.rootanalysis;
package org.apache.ozhera.intelligence.domain.rootanalysis;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.domain.rootanalysis;
package org.apache.ozhera.intelligence.domain.rootanalysis;

import lombok.Builder;
import lombok.Data;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.domain.rootanalysis;
package org.apache.ozhera.intelligence.domain.rootanalysis;

import lombok.Data;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.domain.rootanalysis;
package org.apache.ozhera.intelligence.domain.rootanalysis;

import lombok.Builder;
import lombok.Data;
Expand Down
6 changes: 3 additions & 3 deletions ozhera-intelligence/ozhera-intelligence-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>ozhera-intelligence</artifactId>
<version>1.0.0</version>
</parent>
Expand All @@ -19,7 +19,7 @@

<dependencies>
<dependency>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>ozhera-intelligence-service</artifactId>
<version>${ozhera.intelligence.version}</version>
</dependency>
Expand Down Expand Up @@ -60,7 +60,7 @@
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.7.15</version>
<configuration>
<mainClass>com.xiaomi.hera.trace.etl.bootstrap.TraceEtlBootstrap</mainClass>
<mainClass>org.apache.ozhera.trace.etl.bootstrap.TraceEtlBootstrap</mainClass>
</configuration>
<executions>
<execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.bootstrap;
package org.apache.ozhera.intelligence.bootstrap;

import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.controller;
package org.apache.ozhera.intelligence.controller;

import com.xiaomi.youpin.infra.rpc.Result;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import run.mone.hera.intelligence.domain.rootanalysis.TraceQueryParam;
import run.mone.hera.intelligence.service.RootAnalysisService;
import org.apache.ozhera.intelligence.domain.rootanalysis.TraceQueryParam;
import org.apache.ozhera.intelligence.service.RootAnalysisService;

@RestController
@RequestMapping("/analysis")
Expand Down
6 changes: 3 additions & 3 deletions ozhera-intelligence/ozhera-intelligence-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>ozhera-intelligence</artifactId>
<version>1.0.0</version>
</parent>
Expand All @@ -19,7 +19,7 @@

<dependencies>
<dependency>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>ozhera-intelligence-domain</artifactId>
<version>${ozhera.intelligence.version}</version>
</dependency>
Expand Down Expand Up @@ -56,7 +56,7 @@

<!-- trace domain -->
<dependency>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>trace-etl-domain</artifactId>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.service;
package org.apache.ozhera.intelligence.service;

import org.springframework.stereotype.Service;
import run.mone.hera.intelligence.domain.rootanalysis.LogParam;
import org.apache.ozhera.intelligence.domain.rootanalysis.LogParam;

@Service
public class LogService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.service;
package org.apache.ozhera.intelligence.service;

import org.springframework.stereotype.Service;
import run.mone.hera.intelligence.domain.rootanalysis.MetricsQueryParam;
import org.apache.ozhera.intelligence.domain.rootanalysis.MetricsQueryParam;

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.service;
package org.apache.ozhera.intelligence.service;

import org.springframework.stereotype.Service;
import run.mone.hera.intelligence.domain.rootanalysis.LogPromptResult;
import run.mone.hera.intelligence.domain.rootanalysis.MetricsPromptResult;
import run.mone.hera.intelligence.domain.rootanalysis.TracePromptResult;
import org.apache.ozhera.intelligence.domain.rootanalysis.LogPromptResult;
import org.apache.ozhera.intelligence.domain.rootanalysis.MetricsPromptResult;
import org.apache.ozhera.intelligence.domain.rootanalysis.TracePromptResult;

@Service
public class PromptService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.service;
package org.apache.ozhera.intelligence.service;

public class RootAnalysisConst {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.service;
package org.apache.ozhera.intelligence.service;

import com.xiaomi.youpin.infra.rpc.Result;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import run.mone.hera.intelligence.domain.rootanalysis.MarkDownParam;
import run.mone.hera.intelligence.domain.rootanalysis.TraceQueryParam;
import org.apache.ozhera.intelligence.domain.rootanalysis.MarkDownParam;
import org.apache.ozhera.intelligence.domain.rootanalysis.TraceQueryParam;

@Service
public class RootAnalysisService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package run.mone.hera.intelligence.service;
package org.apache.ozhera.intelligence.service;

import org.springframework.stereotype.Service;
import run.mone.hera.intelligence.domain.rootanalysis.TraceQueryParam;
import org.apache.ozhera.intelligence.domain.rootanalysis.TraceQueryParam;

@Service
public class TraceService {
Expand Down
6 changes: 3 additions & 3 deletions ozhera-intelligence/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>ozhera</artifactId>
<version>1.4.0-jdk21-SNAPSHOT</version>
<version>2.0.0-SNAPSHOT</version>
</parent>

<artifactId>ozhera-intelligence</artifactId>
Expand Down Expand Up @@ -48,7 +48,7 @@
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>run.mone</groupId>
<groupId>org.apache.ozhera</groupId>
<artifactId>trace-etl-domain</artifactId>
<version>${trace.etl.domain.version}</version>
</dependency>
Expand Down

0 comments on commit ea5385a

Please sign in to comment.