Skip to content

Commit c84ca10

Browse files
committed
Use otel-collector as default hostname
1 parent 81b6df9 commit c84ca10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/frontend/components/TraceGenerationForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const DEFAULT_CUSTOM_ATTRIBUTES: Omit<CustomAttribute, 'id'>[] = [
2424

2525
export function TraceGenerationForm({ onError, onSuccess }: TraceGenerationFormProps) {
2626
const [formData, setFormData] = useState<Omit<TraceGenerationRequest, 'customAttributes'>>({
27-
targetHostname: 'localhost',
27+
targetHostname: 'otel-collector',
2828
targetPort: 55678,
2929
duration: 1000,
3030
callCount: 50,
@@ -127,7 +127,7 @@ export function TraceGenerationForm({ onError, onSuccess }: TraceGenerationFormP
127127
pattern="[a-zA-Z0-9\.\-]+"
128128
required
129129
className="material-input w-full"
130-
placeholder="localhost"
130+
placeholder="otel-collector"
131131
/>
132132
</div>
133133

0 commit comments

Comments
 (0)